Former. logo

👋

Welcome to the docs.

This is where you can go to integrate Former into your company's systems.

Use this page to make a basic test application. This basic app will retrieve a form from our servers and allow you to perform arbitrary actions with your form data.

Installation

This should work for 99.9% of Python 3 users. The dependencies are all well-maintained.

pip install former

Click to copy

Form Retrieval

Make sure the form that you are requesting is public, live, and publishable. The user must have a Pro plan enabled.

from former import Forms
forms = Forms('YOUR API KEY HERE')
form = forms.getForm('42')

Click to copy