Google Forms wrapper for Python
Project description
GForms
A python wrapper for public Google Forms.
This package does not implement form editing / sharing / other actions with user-owned forms
Installation
python3 -m pip install gforms
Features
- Form parsing
- All form settings are parsed
- Multi-page forms are supported
- Elements with input validation are supported
- Form filling
- Fill the entire form using a single callback function (see example)
- Fill individual elements
- Validate the form before submission
- Form submission
- Faster submission for multi-page forms (history emulation)
Limitations
- Forms with required sign-in cannot be submitted
- Forms with file upload cannot be parsed (sign-in is required for loading the form)
- A CAPTCHA needs to be solved in order to send an e-mail with a response copy (when this option is enabled). CAPTCHA handling should be implemented separately
- Form style is not parsed
Example
See example.py for more details.
from gforms import Form
from gforms.elements import Short, Value
def callback(element, page_index, element_index):
# fill an element based on its position
if page_index == 0 and element_index == 1:
return 'Yes'
# fill an element based on its type and name
if isinstance(element, Short) and element.name == 'Your opinion:':
return input(element.name)
# fill choice elements with random values, skip optional elements if fill_optional is not used
return Value.DEFAULT
url = 'https://docs.google.com/forms/d/e/.../viewform'
form = Form()
form.load(url)
print(form.to_str(indent=2)) # a text representation, may be useful for CLI applications
form.fill(callback)
form.submit()
# Faster submission for multi-page forms (use only one POST request)
# (in theory, you may get banned, but now the actual number of requests isn't checked)
form.submit(emulate_history=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gforms-1.2.4.tar.gz
(30.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
gforms-1.2.4-py3-none-any.whl
(32.9 kB
view details)
File details
Details for the file gforms-1.2.4.tar.gz.
File metadata
- Download URL: gforms-1.2.4.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa69457e2c9175f105ee48756d78e1326e043eaea3840e180972ef1e2bde2932
|
|
| MD5 |
5d5634ce016b72917ac4e08489d54eec
|
|
| BLAKE2b-256 |
cda2d3ce22bad3fb80f9e88c0a28725c77c2ff104a1686f877870f24d983ee61
|
File details
Details for the file gforms-1.2.4-py3-none-any.whl.
File metadata
- Download URL: gforms-1.2.4-py3-none-any.whl
- Upload date:
- Size: 32.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
923e9992658acc7a7980f15594548b7775dc47b2a655d5d5d5ce56a8f979a0f6
|
|
| MD5 |
43ad1c5bfd109f7c021464f24f92c58b
|
|
| BLAKE2b-256 |
6a8baefa182b97fbcfddb0052215a93c0d287f2cbea0636972f0ac850c9e58ab
|