Skip to main content

A simple Formsite API python script, used to get results or to download files from your formsite forms.

Project description

Formsite Utility

CLI tool + module for formsite automation.

Overview

This program performs an export of a specified formsite form with parameters A faster alternative to a manual export from the formsite website. It uses the formsite API v2 to perform exports of results. You can specify parametrs in commandline to filter these results. Allow advanced features like link extraction and even download of files to a specified directory.

Installation

You can install the module with

pip install formsite-util

or download it manually from releases.

The required packages are:

aiofiles
aiohttp
datetime
openpyxl
pandas
python_dateutil
pytz
regex
requests
tqdm

Usage

Required arguments:

python formsite_utility.py -u USERNAME -t TOKEN -s SERVER -d DIRECTORY -f FORM
python3 formsite_utility.py -u USERNAME -t TOKEN -s SERVER -d DIRECTORY -f FORM 

Optional arguments:

[-h] [--afterref AFTERREF] [--beforeref BEFOREREF] [--afterdate AFTERDATE] [--beforedate BEFOREDATE] [--resultslabels RESULTSLABELS] [-r] [-o [OUTPUT_FILE]] [-x [EXTRACT_LINKS]] [-X LINKS_REGEX] [-D [DOWNLOAD_LINKS]] [--sort {asc,desc}] [-l] [-g] [-V] [-H] [--no_items]

CLI Examples:

NOTE: QUOTES AROUND ARGUMENTS ARE OPTIONAL

Login arguments:

Login arguments are required for nearly all operations.

On Windows in powershell or cmd, run:

python formsite_utility.py -u 'USERNAME' -t 'TOKEN' -s 'SERVER' -d 'DIRECTORY'

On Unix:

python3 formsite_utility.py -u 'USERNAME' -t 'TOKEN' -s 'SERVER' -d 'DIRECTORY'

Username: Username of the account used to create your API token

Token: Your Formsite API token. You can get it in [todo]

Server: Your Formsite server. A part of the url. https://fsX.forms… <- the 'fsX' part. For example 'fs22'.

Directory: Can be found under [Share > Links > Directory] It is the highlighted part of the url: https://fsXX.formsite.com/gnosdH/hfjfdyjyf

Results parameters:

Results parameters are used to set filters upon the results you are retreiving from a specific form. All but the --form argument are optional.

Form: Can be found under [Share > Links > Directory] It is the highlighted part of the url: https://fsXX.formsite.com/gnosdH/hfjfdyjyf

After and before Reference #

You can provide arguments --afterref *int* and --beforeref *int* to specify an interval of which reference numbers to get from your export. It is the same as setting a filter based on reference number when doing an export from the formsite website.

On Windows in powershell or cmd, run:

python .\formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' --afterref 14856178 ---beforeref 15063325 -o

On Unix:

python3 formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server'  --afterref 14856178 ---beforeref 15063325 -o

This will retrieve all results in between reference numbers 14856178 and 15063325. You can also specify only afterref or only beforeref by itself, which would give you its respective results. You can also omit this argument entierly, which would give you all results currently present in the form.

After and before Date

You can provide arguments --afterdate *date* and --beforedate *date* to specify an interval of which dates to get from your export. It is the same as setting a filter based on date number when doing an export from the formsite website.

Valid input formats for date are ISO 8601, yyyy-mm-dd or yyyy-mm-dd HH:MM:SS

ISO 8601 example
yyyy-mm-ddTHH:MM:SSZ  
2021-01-20T12:00:00Z is 20th Januray, 2021 at noon

On Windows in powershell or cmd:

python formsite_utility.py -u username -t token -f form_id -d directory -s server --afterdate '2021-01-01T00:00:00Z' ---beforedate '2021-02-01T00:00:00Z' -o

On Unix:

python3 formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' --afterdate '2021-01-01' ---beforedate '2021-02-01' -o

This will retrieve all results in for the month of January. You can also specify only afterdate or only beforedate by itself, which would give you its respective results. You can also omit this argument entierly, which would give you all results currently present in the form.

Timezone:

The dates provided are in your local timezone. This can become a problem if your organizations' formsite account is set to a particular timezone you are not in, especially when deleting results/attachments using date filters.

You can set a manual offset with the -T or --timezone arguments. They take either an offset in the +05:00 | -03:00 format or a timezone databse name such as US/Central. This will shift formsite statistics dates (column Date for example) and your input before/after date argument to your input timezone.

python formsite_utility.py -u username -t token -f form_id -d directory -s server -T 'US/Central' -o

On Unix:

python3 formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' --afterdate '2021-02-01T00:00:00Z' ---beforedate '2021-02-01T06:30:00Z' -o -T 'America/New_York'

Date format:

Invoked with -F format or --date_format format where format is a string of python datetime directives.

Defaults to '%Y-%m-%d %H:%M:%S' which is yyyy-mm-dd HH:MM:SS

You can find the possible format directives here: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior

Sets the date format of all formsite statistics dates such as the Date column. Only applies to CSV output files as excel handles it by itself.

Sorting:

Invoked with --sort [asc|desc]

Sorts rows based on Reference # column.

Results labels and views:

Results labels are the names of columns of items you put on your form. The default option is to use the default question labels you would put on your form, such as "What is your email address?" or "Your email:" or simply "E-mail:" but for actually working with the data, it is easier and clearer to use a feature formsite supports called Results labels, where you can set your own names of these columns for exports.

You can find the ID of your labels under [Form Settings > Integrations > Formsite API]

You can set them with the --resultslabels *id* argument. Defaults to 10 which are typically the first results label you add.

You can also set results view with --resultsview *id* argument. Defaults to 11 which is all items + statistics.

Functional arguments:

Outputing to a file:

You can use the -o flag to output your export to a file. If you don't specify this flag, no results will be outputted. For reasons as to why you wouldn't include this flag, please see File downloads: below.

You can leave the -o flag by itself or you can specify a path, either relative or absolute to a file you want to output to. If you don't include a path, it will default to its current directory, the file will be a csv with the name in the following format:

export_formID_date.csv

If you specify the file extension to be .xlsx the results export will be an excel file. If you don't or you choose a format other than excel, you will get a .csv

On Windows in either powershell or cmd:

python formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' -o .\exports\export_projectName.xlsx

On Unix:

python3 formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' -o ./exports/export_projectName.csv

NOTE: Putting the path in quotes is optional, but REQUIRED if your path contains a space

File downloads:

You can use the -x flag to extract all links that begin with the formsite base url into a text file, such as:

https://fsXX.formsite.com/directory/files/f-XXX-XXX-reference#_filename.ext

The links file defaults to the same directory as the getform.py with the file name links_{formID}_{timestamp}.txt

You can use the -D option to download all links to a directory you specify, just like with the -o argument. The file will be saved with the filename in the link reference#_filename.ext

On Windows in either powershell or cmd:

python .\formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' -x -X '\.png$'

will return a links.txt with links to all png files in export

On Unix:

python3 formsite_utility.py -u 'username' -t 'token' -f 'form_id' -d 'directory' -s 'server' -D './download_03/' -X '\.jpg$'

will create a directory download_03 in the same folder as formsite_utility.py and save all jpg files uploaded to the form

Functional parameters:

Links regex:

You can also specify a regex to filter links. You will only get links that contain a match of a regex you provide with the -X option:

ex: \.json$   - will only return files that end with .json

Max concurrent downloads:

You can specify how many concurrent downloads can take place with the -c x option where x is the number of maximum concurrent downloads.

Defaults to 10.

Other arguments:

Special options:

These options overwrite the core functionality of the program.

-h --help - shows a help message

-l --list_columns - shows you the IDs of each column

-L --list_forms - prints all forms, can be saved as csv

-V --version - displays the current version of the programs and checks for updates

Module Examples:

TODO

Notes

More info can be found at Formsite API v2 help page

https://support.formsite.com/hc/en-us/articles/360000288594-API

You can find API related information of your specific form under:

[Form Settings > Integrations > Formsite API] on the Formstie website

API response error codes table:

code description
401 Authentication info is missing or invalid.
403 Forbidden.
404 Path or object not found.
422 Invalid parameter.
429 Too many requests or too busy.
5xx Unexpected internal error.

License

© 2021 Jakub Strnad

This program is licensed under GPLv3 Please see LICENSE.md for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

formsite-util-1.2.6.1.tar.gz (33.3 kB view hashes)

Uploaded Source

Built Distribution

formsite_util-1.2.6.1-py3-none-any.whl (29.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page