Convert photo of a form to web based froms or editable pdf forms.
- Free software: MIT license
- Documentation: https://re-paper.readthedocs.io.
To install repaper, run this command in your terminal:
$ pip install repaper
This is the preferred method to install repaper, as it will always install the most recent stable release.
To use repaper in a project:
from repaper import repaper
To generate a google form from the a form image:
from repaper import repaper re_paper = repaper('../samples/test.jpg') form_id = re_paper.make_google_from('../secrets/credentials.json') print(f'''Form created with form id: {form_id["formId"]} and is accessible at: \n https://docs.google.com/forms/d/{form_id['formId']}/viewform \n edit and publish the form to make it accessible to others''')
Command line usage to generate google form from image:
repaper google-form --img_path ./samples/test.jpg --oauth_json ./secrets/credentials.json
- Bhanu Pallakonda <pvbhanuteja@gmail.com>
- Gaurav Sood <gsood07@gmail.com>
None yet. Why not be the first?
- TODO
Portions of this research were conducted with the advanced computing resources provided by Texas A&M High Performance Research Computing.
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.