Skip to main content

PyTally SDK

Unofficial Python SDK for the Tally.so API.

PyPI version Python Versions License Docs


Overview

PyTally SDK is a lightweight, fully typed Python client for the Tally.so API. It provides a clean, Pythonic interface for authenticating, querying, and managing Tally resources -- without worrying about HTTP requests or pagination.

Implemented Resources

  • Users
  • Organizations
  • Forms
  • Workspaces
  • Webhooks
  • MCP

Installation

pip

pip install pytally-sdk

uv (recommended)

uv add pytally-sdk

Requirements: Python ≥ 3.11 httpx (auto-installed)


Quick Start

from tally import Tally

client = Tally(api_key="tly_your_api_key_here")

user = client.users.me()
print(f"Hello, {user.full_name} ({user.email})")

With Context Manager

from tally import Tally

with Tally(api_key="tly_your_api_key_here") as client:
    for form in client.forms:
        print(f"{form.name} ({form.id})")

Webhooks — Example Usage

List Webhooks

from tally import Tally

client = Tally(api_key="tly_your_api_key_here")

# Get all webhooks
for webhook in client.webhooks:
    print(f"{webhook.url} → enabled={webhook.is_enabled}")

Create a Webhook

from tally import Tally

client = Tally(api_key="tly_your_api_key_here")

webhook = client.webhooks.create(
    url="https://your-app.com/webhooks/tally",
    event_types=["FORM_RESPONSE"],
)

print(f"Webhook created: {webhook.id}")

For complete API usage, visit the 📘 Webhooks Reference.


Error Handling

from tally import Tally, UnauthorizedError, NotFoundError

client = Tally(api_key="tly_invalid")

try:
    client.users.me()
except UnauthorizedError:
    print("Invalid API key.")
except NotFoundError:
    print("Resource not found.")

See Error Handling → docs.


Documentation

👉 Full documentation and API reference available at: https://pytally-sdk.fa.dev.br


Development

Wanna help improve the SDK?

git clone https://github.com/felipeadeildo/pytally.git
cd pytally
uv sync
uv run mkdocs serve  # preview docs locally
pre-commit install   # install pre-commit hooks

🔗 Links


⚖️ License

Licensed under the Apache License 2.0.

Disclaimer This is an unofficial SDK and is not affiliated with or endorsed by Tally. “Tally” and the Tally logo are trademarks of Tally B.V.

Release files for pytally-sdk 0.1.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pytally-sdk 0.1.9
File Size Uploaded
pytally_sdk-0.1.9.tar.gz 22.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for pytally-sdk 0.1.9
File Interpreter ABI Platform
pytally_sdk-0.1.9-py3-none-any.whl Python 3 none any Details

Total release size: 52.0 kB

Release files / pytally_sdk-0.1.9.tar.gz

Download URL pytally_sdk-0.1.9.tar.gz
Size 22.4 kB
Tags Source
SHA-256 checksum
How to use checksums
f286874640672a70dcca55c5487d436b16a8e511d3566aa9094ebeef22b179da
BLAKE2b-256 checksum
How to use checksums
8f4e573522a43c1ee30ae2ecea5d8ed0b60948aa0d095c4e7567755fd4ca2a3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pytally_sdk-0.1.9-py3-none-any.whl

Download URL pytally_sdk-0.1.9-py3-none-any.whl
Size 29.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
8d3738595d9f93fb5cdc91d7d3bc3e671c89f99f0b851dce60b936a4f15e9f06
BLAKE2b-256 checksum
How to use checksums
5d75c31a66d6b58062e918d70a437778058870501ee0757150bf7a28e0f02027
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

0.1.9 This release

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page