Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/s0md3v/zetanize

HTML form parser for humans.
https://github.com/s0md3v/zetanize

mechanize

Last synced: 16 days ago
JSON representation

HTML form parser for humans.

Awesome Lists containing this project

README

        




zetanize


zetanize


HTML Form Parser For Humans








### Introduction
It's very easy to make HTTP requests in python, thanks to urllib and requests. However, there was no way to submit HTML forms on the go, well now there is.

### Documentation
```python
from zetanize import zetanize
forms = zetanize(html)
```

Well that's it! Just feed zetanize a HTML document and it will give you a dict of actionable form data.

Let's parse https://google.com for getting familiar:
```python
from requests import get
from zetanize import zetanize

html = get('https://google.com').text
forms = zetanize(html)
```

Here's the output:

```json
{
"0": {
"action": "/search",
"inputs": [
{
"type": "hidden",
"name": "ie",
"value": "ISO-8859-1"
},
{
"type": "hidden",
"name": "hl",
"value": "en-IN"
},
{
"type": "hidden",
"name": "source",
"value": "hp"
},
{
"type": "hidden",
"name": "biw",
"value": ""
},
{
"type": "hidden",
"name": "bih",
"value": ""
},
{
"type": "",
"name": "q",
"value": ""
},
{
"type": "submit",
"name": "btnG",
"value": "Google Search"
},
{
"type": "submit",
"name": "btnI",
"value": "I"
},
{
"type": "hidden",
"name": "gbv",
"value": "1"
}
],
"method": "get"
}
}
```