[Tutor] bottle: request.form.get()

Peter Otten __peter__ at web.de
Thu Jun 22 03:54:15 EDT 2017


adil gourinda wrote:

>    I was looking for the "request.form.get()" method in "Python Library"
>    but I didn't find it, I looked also in "Requests 2.18.1 Documentation"
>    but nothing found.

>    Please where I can find the documentation about "request.form" methods
>    because it is used to retrieve data from <input> tag.

Did you mean request.forms.get()? The bottle tutorial shows how you can use 
that at

https://bottlepy.org/docs/dev/tutorial.html#html-form-handling

and the get() method is described here:

https://bottlepy.org/docs/dev/api.html#bottle.MultiDict.get



More information about the Tutor mailing list