I'm a complete newbie to scraping, and I'd like to get some data from here : http://fse.vdkruijssen.eu/ferrylist.php
I'm using Python 2.7 as it is the only language I know something about. I've tried and searched a lot, but there is a simple form to fill before accessing the data that I can't go through... No login required.
This is what I have so far:
import requests
from bs4 import BeautifulSoup
url='http://fse.vdkruijssen.eu/ferrylist.php'
params ={'selectplane':'Cessna 208 Caravan','submit':''}
response=requests.post(url, data=params)
soup = BeautifulSoup(response.text, 'html5lib')
print soup
Any help would be highly appreciated... Thank you !
EDITED & SOLVED : thank you 宏杰李!

BeautifulSoupto search data in HTML.