A Tally SDK to manage yor forms
Project description
Get Started
First of all, make sure you have TALLY_API_KEY in your ENV variables and load it.
from src.core.client import TallyClient
from dotenv import load_dotenv
load_dotenv()
tallyc = TallyClient()
Next you can query Tally according to their docs.
User
# Get current user informations
tallyc.users.get()
Forms
form_id = 'XYZ'
sub_id = 'ABC'
# List all forms
tallyc.forms.list()
# retrieve specific form
tallyc.forms.retrieve(form_id)
# List all form's questions
tallyc.forms.form_questions(form_id)
# List all form's submissions
tallyc.forms.list_submissions(form_id)
# retrieve specific form's sumbmission
tallyc.forms.retrieve_submission(form_id, sub_id)
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
tally_sdk-0.0.1.tar.gz
(5.7 kB
view details)
File details
Details for the file tally_sdk-0.0.1.tar.gz.
File metadata
- Download URL: tally_sdk-0.0.1.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0973888fb18b256f84215375cb58cb2d4fa80ceb8afab1419d657f0413e7dc9a
|
|
| MD5 |
d0385dee4167b330a32121170befef5a
|
|
| BLAKE2b-256 |
dcdbd6160bf0e867300b7e74bdb8997b757b4c52b88bb82047f5dff42962b25c
|