Skip to main content

A lightweight Python SDK for the Fulcrum Pro API, built with `httpx2`.

Project description

FulcrumPro

A lightweight Python SDK for the Fulcrum Pro API, built on httpx.

Installation

pip install fulcrumpro

Or with uv:

uv add fulcrumpro

Requirements

  • Python 3.14+

Quick Start

from fulcrumpro import FulcrumPro

client = FulcrumPro(api_token="your-api-token")

job = client.jobs.get("6a0e5cad7c2e97225f8def9c")
print(job["name"])

Use as a context manager to ensure the underlying HTTP connection is closed:

with FulcrumPro(api_token="your-api-token") as client:
    job = client.jobs.get("6a0e5cad7c2e97225f8def9c")

Authentication

All requests are authenticated with a Bearer token. Pass your API token when constructing the client:

client = FulcrumPro(api_token="your-api-token")

Resources

Jobs

# Get a job by ID
job = client.jobs.get("6a0e5cad7c2e97225f8def9c")

Error Handling

All non-2xx responses raise a FulcrumProError:

from fulcrumpro import FulcrumPro, FulcrumProError

client = FulcrumPro(api_token="your-api-token")

try:
    job = client.jobs.get("nonexistent-id")
except FulcrumProError as e:
    print(e.status_code)  # e.g. 404
    print(str(e))         # "FulcrumPro API error 404: not found"

Version History

See CHANGELOG.md.

Docs

Full API documentation can be found on GitHub Pages

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

fulcrumpro-0.11.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fulcrumpro-0.11.0-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file fulcrumpro-0.11.0.tar.gz.

File metadata

  • Download URL: fulcrumpro-0.11.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fulcrumpro-0.11.0.tar.gz
Algorithm Hash digest
SHA256 7c678e8c207b1ce088545ad8b2bf187104c337df63742844a16e1d195c4bd55b
MD5 d2cfe88b3d0a2293d2190e5aad9a7a4d
BLAKE2b-256 a1a892e0db2be8bb43220c517f3f1a85aaa55554f6e42f58e6adb4947ab6d3d2

See more details on using hashes here.

File details

Details for the file fulcrumpro-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: fulcrumpro-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fulcrumpro-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d7859432814034b096069982bde172fa0c77cb1b74bf57fea80defceb04e862b
MD5 41a28f4d997080deac0f27c4dcccbeb1
BLAKE2b-256 848b2a57a19c812b7aebc4e0443383962c68dfa76994f32f911b44f0a57c5add

See more details on using hashes here.

Supported by

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