This is a simple web app built using the python library Streamlit to explore and download JotForm forms using the JotForm API. If you have an enterprise plan with a custom domain, you can click on the API URL dropdown, select "custom", and enter your own custom jotform API URL. This app enhances the current JotForm maximum form limit of 1000 by automatically correcting the offset and increasing the limit to 4000. This number can be increased to whichever maximum number is needed by changing '4000' to a higher number in the code.
The app displays the form data in a table based on the selected criteria. If any forms match the criteria, a "Download CSV file" button will appear, allowing you to download a CSV file containing the form data.
Click Here To View This App Online!
- Enter your JotForm API key in the text box in the sidebar.
- Select the API URL, limit, order by and status filter options in the sidebar.
- Click on the "Submit" button.
- The app will display a table of your JotForm forms based on your selected criteria.
- If there are any forms that match your criteria, a "Download CSV file" button will appear. Click on the button to download a CSV file containing the form data.
- Python 3.7 or higher
- JotForm API key
- Streamlit
- Clone the repository:
git clone https://github.com/Kaludii/JotForm-API-Form-Explorer.git
- Change directory:
cd jotform-api-explorer
- Install streamlit if not already installed:
pip install streamlit requests
- Install the required packages:
pip install -r requirements.txt
- Run the app:
streamlit run app.py