forge-ops-tracker
Python error reporting client for ForgeOps. Requires Python 3.9+. It captures unhandled and explicitly reported exceptions, builds a backtrace, scrubs likely PII, and delivers events to ForgeOps over HTTP without blocking the request or process that raised them.
Installation
pip install forge-ops-tracker
For Django or Flask integration, install the matching extra:
pip install "forge-ops-tracker[django]"
pip install "forge-ops-tracker[flask]"
For outbound HTTP span capture (see Distributed tracing below), install the requests extra too:
pip install "forge-ops-tracker[requests]"
Configuration
Set a DSN (from a project's settings page in ForgeOps), either via the FORGE_OPS_DSN environment
variable or explicitly:
import forge_ops_tracker
forge_ops_tracker.init(
dsn="https://<api_key>@getforgeops.net/api/v1/events", # or leave unset to read FORGE_OPS_DSN
release="...",
environment="production",
)
Call init() once at startup: Django's settings.py, or right after creating a Flask app. Any
Configuration attribute can be overridden by keyword.
Django
# settings.py
import forge_ops_tracker
forge_ops_tracker.init(dsn="https://<api_key>@getforgeops.net/api/v1/events")
MIDDLEWARE = [
...,
"django.contrib.auth.middleware.AuthenticationMiddleware", # if not already there
"forge_ops_tracker.integrations.django.ForgeOpsTrackerBreadcrumbContextMiddleware",
"forge_ops_tracker.integrations.django.ForgeOpsTrackerTracingMiddleware",
"forge_ops_tracker.integrations.django.ForgeOpsTrackerMiddleware",
"forge_ops_tracker.integrations.django.ForgeOpsTrackerSessionTrackingMiddleware",
"forge_ops_tracker.integrations.django.ForgeOpsTrackerPerformanceTrackingMiddleware",
"forge_ops_tracker.integrations.django.ForgeOpsTrackerUserContextMiddleware",
]
Flask
from flask import Flask
import forge_ops_tracker
from forge_ops_tracker.integrations.flask import init_flask
forge_ops_tracker.init(dsn="https://<api_key>@getforgeops.net/api/v1/events")
app = Flask(__name__)
init_flask(app)
What gets reported automatically, and what doesn't
An exception that crashes a request needs no further wiring at all. The Django middleware's
process_exception hook and Flask's got_request_exception signal both fire for anything that
propagates uncaught out of a view, then let the framework handle it exactly as if this client
weren't installed.
An exception your own code catches and handles is different: neither integration ever sees it, since it never propagates far enough to reach either hook:
try:
charge_card(order)
except CardError as e:
logger.warning("card declined: %s", e)
# ForgeOps never sees this: caught locally, never reaches the
# middleware/signal at all.
There's no application-wide hook that reports an exception while still letting your own except
block handle it: report it explicitly instead, right at the catch site:
except CardError as e:
forge_ops_tracker.capture_exception(e, context={"order_id": order.id})
logger.warning("card declined: %s", e)
Called with no arguments, capture_exception() picks up whichever exception is currently being
handled (same as a bare raise inside an except: block), so it usually reads as just
forge_ops_tracker.capture_exception() from inside the block that already caught it.
Outside a web request (scripts, management commands, workers)
init() also installs a sys.excepthook wrapper by default (Configuration.install_excepthook,
True unless set otherwise), which reports anything that crashes the whole interpreter: a plain
script, a Django management command, a worker's own top-level loop: with no wiring needed, the
same "unhandled needs no wiring" case the Django/Flask integrations cover for web requests. It
still calls whatever sys.excepthook was already installed afterward, so it never changes program
behavior. This does not catch a web request's unhandled exception under a real WSGI server
(Gunicorn/uWSGI catch that themselves per-request, long before it would ever reach the interpreter
level): that's what the Django/Flask integrations are for.
Delivery happens on a background thread with a bounded queue and a short per-request HTTP timeout
(Configuration.timeout, 2s default). Every failure mode: network errors, timeouts, a full queue,
a malformed DSN: is caught and dropped rather than raised, so a broken or unreachable tracker can
never take down the host app. The worker thread starts lazily, on first push, not at import time:
Gunicorn (prefork) and uWSGI commonly fork worker processes after the application has already
loaded, which would leave an eagerly-started thread dead in every forked child; starting fresh on
first push means each forked worker gets its own live thread regardless of when it was forked
relative to import.
Where an error happened
An error reported during a request the Django/Flask integrations are handling (unhandled, or your
own capture_exception() from inside the view) carries three extra fields, set as soon as the
framework has matched the request to a route:
transaction_name: the method and the URL pattern, the same name performance monitoring and traces use:"GET orders/<int:order_id>/"on Django,"GET /orders/<int:order_id>"on Flask.endpoint: the method and the route as declared in your URL patterns,"GET /orders/<int:order_id>/". Never the literal path, so an id or a token in the URL never ends up here.trace_id: the request's W3C trace id, which ForgeOps uses to link this error to errors that other services reported for the same trace (see "Following a request across services" below).
They're left out entirely outside a request (a Celery task, a script), and they're never
PII-scrubbed, like environment and release: they're structured fields, not free text. Django
needs ForgeOpsTrackerMiddleware (or ForgeOpsTrackerTracingMiddleware) in MIDDLEWARE; Flask
needs init_flask(app).
Identifying users
forge_ops_tracker.capture_exception(error, user={"id": user.id, "email": user.email})
Or set_user(id=None, email=None, username=None) to attach it for the rest of the current thread
(a WSGI request, a background worker, a console session) rather than passing it to every
capture_exception() call by hand:
forge_ops_tracker.set_user(id=request.user.id, email=request.user.email)
Thread-local, not global: a WSGI server (Django/Flask's own deployment model) runs one request per
thread, so this is the right isolation boundary; not correct under an ASGI/asyncio deployment,
where several requests can share one OS thread, but this SDK has no async integration today for
that gap to matter yet. id/email/username are all independently optional; call set_user()
with none of them to clear whatever was set, e.g. once a request finishes. Shows up on an issue's
own detail page, and as its own affected-users count alongside the regular event count.
Automatic detection, if you're using either integration above:
- Django:
ForgeOpsTrackerUserContextMiddleware(see the Django snippet above; must be listed afterdjango.contrib.auth.middleware.AuthenticationMiddleware, or whatever else setsrequest.user) readsrequest.userwhen it's present andis_authenticated, and callsset_user()for you:pkforid(present on every model instance, regardless of your ownAUTH_USER_MODEL),emailif the attribute exists, andget_username()(correct even with a customUSERNAME_FIELD) if it does. A no-op for an app with no such middleware installed at all. - Flask:
init_flask()detects Flask-Login if it's installed and configured (a genuinely optional dependency this package never requires):idcomes fromcurrent_user.get_id()(the only thing Flask-Login's ownUserMixinactually guarantees);email/usernameare read as plain optional attributes, since Flask-Login itself guarantees neither, the common convention most apps' ownUsermodel follows regardless. A no-op if Flask-Login isn't installed, isn't configured (noLoginManagerattached to this app), or nobody's logged in.
Both compose with the manual API above rather than replacing it: call set_user() yourself
afterward (e.g. for a custom auth setup neither integration can detect, or to override what was
auto-detected) and it wins for the rest of that request.
Breadcrumbs
A trail of what happened right before an error, on by default, no setup needed beyond the Django/Flask integration above: every SQL query (Django's own ORM automatically; any tracked SQLAlchemy engine too) and request/controller lifecycle is recorded automatically, and shows up alongside the error on an issue's own detail page.
forge_ops_tracker.init(
dsn="...",
track_breadcrumbs=False, # opt out of the automatic sources entirely
max_breadcrumbs=30, # oldest entry dropped once this many have accumulated in one trail
)
Add your own by hand, regardless of whether the automatic sources are on:
forge_ops_tracker.add_breadcrumb("charged card", category="billing", data={"order_id": order.id})
category defaults to "custom", level to "info" ("debug"/"info"/"warning"/"error"
are the four levels the automatic sources themselves use too), and data to {}. Works outside a
request entirely too (a background task, a console session): the trail it adds to is created
lazily on whatever context calls it, the same "works standalone, no specific setup required" shape
set_user() already has, rather than silently doing nothing with no active request/task around it.
Each request or Celery task gets its own fresh, bounded trail (a ring buffer capped at
max_breadcrumbs, oldest entry dropped once full), scoped with a contextvars.ContextVar rather
than the thread-local set_user() above uses: a plain WSGI worker thread behaves identically
either way, but this also stays correctly isolated under a Celery worker's own thread pool (which,
unlike its prefork processes, does reuse one OS thread across many unrelated task runs) and any
future asyncio/ASGI integration, where several requests could otherwise interleave on a single OS
thread as separate asyncio Tasks. Unlike the affected user above, a breadcrumb's message/data
is scrubbed for likely PII: console-style/query/request trail entries are exactly the kind of
free text (a bind parameter showing up in a message, a URL with a token in it) the scrubber exists
to catch, not a deliberately-structured field the way user is.
Celery tasks (with init_celery() from the section above) get their own automatic "job" category
breadcrumb too, recorded at the very start of the task, before its own body even runs: this is
deliberate, not an oversight, since Celery fires task_failure (which is what actually reports a
task's exception) before task_postrun, so a breadcrumb only added once the task finishes would
never make it into that same task's own failure report.
in_app backtrace frames
Python runs interpreted directly from real .py files on disk, so file-path matching against
Configuration.app_root is a straightforward prefix comparison against those on-disk paths.
Defaults to the current working directory; set it explicitly if that doesn't match your app's
actual layout (a WSGI server started from a different directory than your app's root, for
instance). Standard-library and installed-package (site-packages/dist-packages) frames are
never marked in_app, regardless of app_root.
PII scrubbing
By default, the message, backtrace, and any context/tags you attach are scanned
for likely personal data (email addresses, formatted SSNs/credit cards, known API key/token
formats, and anything under a suspiciously-named key like password, api_key, or ssn)
and redacted before the payload ever leaves this process. ForgeOps itself scrubs again on arrival
regardless, so this is a second, earlier layer, not the only one. The user attached via user=/
set_user() above is a deliberate exception: it's never scrubbed, since redacting it would defeat
the whole point of identifying users in the first place.
To disable it:
forge_ops_tracker.init(dsn="...", scrub_pii=False)
Source context
By default, each in-app backtrace frame (never a standard-library or installed-package frame) is
captured along with the 5 lines of source on either side of the culprit line, read straight off
disk at raise-time, so an issue's detail page can show the actual code that broke, not just a
file:line:method reference. This never applies to a frame outside your configured app_root, and
it fails silently (no context, not an exception) for any file that can't be read for whatever
reason.
This is a real, deliberate exception to "off by default is safer": literal source code is being
transmitted, not just a reference to it, and the real protection here is not this flag. Every
project on ForgeOps has its own setting (on by default, off durably and immediately once an org
owner turns it off, regardless of what any individual app's own capture_source_context is still
set to) that governs whether the server will ever actually store what a client sends. Set this to
False if you'd rather this client never even attempt the disk read in the first place:
forge_ops_tracker.init(dsn="...", capture_source_context=False)
Database errors
When an error comes from a database call (SQLAlchemy's StatementError/DBAPIError, or your own
exception raised from one), the event carries the names of the stored procedure or function and the
tables or views its SQL touched, so the issue tells you where to start looking. This is on by default
and sends identifiers only, never values. A view and a table are written the same way in SQL, so
both show as tables/views; the database's own error message usually settles which it was.
To also send the SQL statement itself, opt in. Every string and number is replaced by ? before it
leaves your process (WHERE email = 'a@b.co' AND id = 42 is sent as WHERE email = ? AND id = ?),
and ForgeOps masks it again on arrival:
forge_ops_tracker.init(dsn="...", capture_sql_statement=True) # default False
# capture_sql_objects=False (default True) stops even the names
Each ForgeOps project also has its own "Capture the SQL behind database errors" setting. Turn it off there and the statement is never stored for that project, whatever this flag says; the names are still kept.
Session tracking (release health)
By default, every request through the Django/Flask integrations is counted as a session: crash-free unless an unhandled exception (or a 5xx response, for Django, where the exception has already been converted to a response by the time this client ever sees the request) actually affects it, giving ForgeOps a crash-free rate per release to show alongside the errors themselves, not just the errors on their own. Counted in-process and flushed as a small periodic aggregate on a background thread (never one network call per request), the same delivery philosophy as everything else in this client: a broken or unreachable tracker never affects the host app either way.
forge_ops_tracker.init(
dsn="...",
track_sessions=False, # opt out entirely
session_flush_interval=30, # seconds; default 60
)
Requires a ForgeOps plan that includes release health; on a plan that doesn't, the periodic flushes are simply rejected server-side and dropped, exactly like any other delivery failure.
Performance monitoring
By default, the Django/Flask integrations also time every request, so a dashboard widget on
ForgeOps can show which parts of your app are actually slow, not just which ones raise. Bucketed
by transaction ("GET /users/<int:id>", the matched URL pattern rather than the literal path, so
a distinct user id doesn't explode into its own separate transaction) and flushed as a small
periodic aggregate per transaction on the same kind of background thread session tracking above
uses.
Each aggregate also carries a small latency histogram (a count per fixed latency bucket: 50, 100, 250, 500, 1000, 2500, 5000 and 10000ms, plus an overflow bucket), so ForgeOps can show an approximate p50/p95/p99 per transaction, not just an average. Percentiles are accurate to the width of whichever bucket a duration falls into; the SDK never stores the individual durations.
forge_ops_tracker.init(
dsn="...",
track_performance=False, # opt out entirely
performance_flush_interval=30, # seconds; default 60
)
Requires a ForgeOps plan that includes performance monitoring; on a plan that doesn't, the periodic flushes are simply rejected server-side and dropped, exactly like any other delivery failure.
Database queries and Celery tasks
The same automatic instrumentation, on the same track_performance flag, also covers:
-
Database queries, for Django automatically (no extra step beyond the middleware above) and for any SQLAlchemy engine (Flask-SQLAlchemy included) with one extra call:
from forge_ops_tracker.integrations.sqlalchemy import track_sqlalchemy_queries db = SQLAlchemy(app) track_sqlalchemy_queries(db.engine)
Bucketed by
"<VERB> <table>"("SELECT auth_user","INSERT INTO orders"), not the raw SQL text: a low-cardinality name in the same spirit as the request transaction name above, and never a literal value even where a query's own parameters aren't already placeholder-bound. -
Celery tasks, via a separate integration (Celery is an optional dependency, same as Django/Flask):
from forge_ops_tracker.integrations.celery import init_celery init_celery()
Bucketed by the task's own registered name (
"myapp.tasks.send_email"). This is also this SDK's only error-reporting integration for Celery: a task that raises is reported the same way an unhandled Django/Flask request exception already is, no separate wiring needed.
Each shows up as its own kind ("controller", "job", "query") on the same performance
dashboard dataset, so "slowest queries" and "slowest tasks" are just a filtered version of the
same widget builder "slowest transactions" already uses.
Distributed tracing
For one slow or errored request, the Django/Flask integrations (via ForgeOpsTrackerTracingMiddleware and
init_flask() respectively, both installed above) capture its full nested call tree: the
controller/view span, plus every database query, outbound HTTP call, and manually-wrapped span
nested under it, so ForgeOps can render a waterfall for that one request.
This is the whole point of the feature, so it's worth being explicit about: a request's own trace
is only ever built, let alone sent, once its own root span's duration crosses a threshold, decided
entirely client-side before a single byte goes over the wire. A normal, fast request costs nothing
extra. A request that errored (an unhandled exception, or any capture_exception() during it) is
the one exception: its trace is always sent, however fast it was, since the spans leading up to an
error are exactly what you want next to it.
forge_ops_tracker.init(
dsn="...",
track_tracing=False, # opt out entirely
trace_capture_threshold_ms=500, # milliseconds; default 1000
)
Database queries nest in automatically, the same way they do for performance monitoring above
(Django's ORM with no extra step; any engine passed to track_sqlalchemy_queries). Outbound HTTP
calls made via requests nest in too, with one extra call:
from forge_ops_tracker.integrations.requests import init_requests
init_requests()
Every span name ("GET api.stripe.com", "SELECT orders") is low-cardinality by design, the
same as every transaction name elsewhere in this SDK: never a raw URL path, query string, or SQL
literal, since any of those can carry a customer's own id or a secret.
There's no way to auto-detect "this is a logically distinct service layer" the way a SQL query or an outbound HTTP call already has a real hook to extend, so wrap your own service-layer code by hand to have it show up as its own span:
with forge_ops_tracker.span("PaymentService.charge"):
charge_card(order)
Also works as a decorator (@forge_ops_tracker.span("PaymentService.charge")), and kind= accepts
"controller", "service" (the default), "database", "http", "job", or "other". A no-op
outside of a request currently being traced (a plain script, a fast request that's already
finished) or with track_tracing off: it just runs the wrapped code and records nothing, never
raising.
Requires a ForgeOps plan that includes distributed tracing; on a plan that doesn't, a captured trace is simply rejected server-side and dropped, exactly like any other delivery failure.
SQL on database spans
Every database span the Django and SQLAlchemy integrations record carries the query's SQL as
db.statement, with every string and number replaced by ?, plus db.system (postgresql,
mysql, sqlite, and so on, from the connection). Bind values are never sent. So a slow request's
waterfall shows which query was slow, not only which table:
SELECT * FROM orders WHERE customer_id = ? AND status = ? ORDER BY created_at DESC
A query you time yourself (a driver this SDK doesn't instrument) can carry its SQL too. Pass
statement= (and optionally db_system=) to a kind="database" span; it's masked the same way:
import sqlite3
import forge_ops_tracker
db = sqlite3.connect("app.db")
sql = "SELECT id, total FROM orders WHERE customer_id = ? AND status = 'paid'"
with forge_ops_tracker.span("Load orders", kind="database", statement=sql, db_system="sqlite"):
rows = db.execute(sql, (42,)).fetchall()
# The span's data: {"db.statement": "SELECT id, total FROM orders WHERE customer_id = ? AND status = ?",
# "db.system": "sqlite"}
Query plans for slow PostgreSQL queries (opt-in)
With explain_slow_queries=True, a slow read on PostgreSQL also gets its query plan, so ForgeOps
can show why it was slow (a sequential scan, a missing index) next to the query:
forge_ops_tracker.init(
dsn="...",
explain_slow_queries=True, # default False
explain_threshold_ms=500, # milliseconds; default 500
)
What it does:
- Only for a query that took at least
explain_threshold_ms, on a PostgreSQL connection (Django'spostgresqlbackend, or a SQLAlchemy engine whose dialect ispostgresql). - Only for a single plain
SELECT: never a write, a statement with a second statement after it, aSELECT ... FOR UPDATE/FOR SHARE, or aWITHquery that modifies data. - Runs
EXPLAIN (FORMAT JSON), neverEXPLAIN ANALYZE, so the query itself is not run again. It runs on a background thread, after your query has finished, on a separate connection (a new one for Django; one checked out of the engine's pool for SQLAlchemy), inside aREAD ONLYtransaction with a 2 secondstatement_timeout, which is always rolled back. Your own connection and transaction are never touched. - At most once per distinct query every 10 minutes, and at most 10 per minute per process.
- Sends the masked statement and the plan with every string in it masked the same way (a plan's
Filterrepeats the query's values). Your bind values are used for theEXPLAINand then dropped; they are never sent. A plan over 64 KB is dropped.
What it doesn't do: it doesn't run for MySQL, SQLite, or any other database, for executemany, or
for SQLAlchemy's async engines. If the EXPLAIN fails for any reason (a timeout, a permission
error, no free connection in the pool), it's logged at debug level and skipped; it never raises
into your app. The database user needs no extra privileges beyond being able to run the query.
Plans are stored only for projects with performance monitoring; otherwise ForgeOps quietly
declines them.
Following a request across services
Traces use the W3C Trace Context standard, so a request can be followed from one service into the next, whichever language or tracing library the other service uses:
- Incoming: a request that arrives with a valid
traceparentheader continues that trace (same trace id), and its root span records the caller's span as its parent. A missing or malformed header just starts a new trace. - Outgoing: every outbound call made through
requestsduring a request (withinit_requests()called) gets atraceparentheader whose parent id is that call's own span, so the next service's spans nest under it. Atraceparentyou set yourself is never replaced, and this client's own deliveries to ForgeOps never get one.
A trace id exists for every request even with track_tracing off, and the header is still sent,
since the trace id is also what links an error here to an error in the service you called. Seeing
the two errors connected in ForgeOps needs both services' projects linked there.
import re
import forge_ops_tracker
import requests
from flask import Flask
from forge_ops_tracker.integrations.flask import init_flask
from forge_ops_tracker.integrations.requests import init_requests
forge_ops_tracker.init(
dsn="https://<api_key>@getforgeops.net/api/v1/events",
propagate_traces=True, # default True; False never sends traceparent
# Default None: every host. A string matches that host and its subdomains on a dot boundary
# ("internal.example" matches "orders.internal.example", not "notinternal.example"); a compiled
# regular expression is searched against the host.
trace_propagation_targets=["internal.example", re.compile(r"^10\.0\.")],
)
init_requests()
app = Flask(__name__)
init_flask(app)
@app.post("/checkout")
def checkout():
# Carries traceparent: 00-<this request's trace id>-<this call's span id>-01
requests.post("https://orders.internal.example/orders", json={"sku": "A1"}, timeout=5)
return {"ok": True}
Known gap: there's no Redis integration yet. Unlike SQLAlchemy or requests, this SDK has no
existing hook of its own to extend for Redis, and neither redis-py's Redis class nor
execute_command is a stable enough surface to wrap without real Redis-specific testing; a Redis
call inside a traced request just won't show up as its own span for now.
Custom metrics and infrastructure monitoring
Two explicit calls (nothing is automatic, so there is no track_* flag): a business event you name
yourself, and a reading from one of your own hosts.
forge_ops_tracker.capture_metric("signup") # value defaults to 1.0: a bare counter
forge_ops_tracker.capture_metric("payment", 49.0) # a real magnitude; it may be negative (a refund)
forge_ops_tracker.capture_infrastructure_metric("cpu", 0.42) # hostname defaults to server_name
forge_ops_tracker.capture_infrastructure_metric("disk", 0.81, hostname="db-1")
forge_ops_tracker.flush_metrics() # optional: send right now
Each capture is buffered and flushed as one batch every metric_flush_interval /
infrastructure_metric_flush_interval seconds (60 by default) on a background thread, and once more
when the process exits normally, which is what a short-lived cron script relies on; call
flush_metrics() yourself if it might exit another way (os._exit, a kill). Every entry is stored
as it was captured (a signup is a row, not a running total), so a count or sum you compute later is
exact. Both are a no-op when the client isn't enabled for the environment.
A failed delivery keeps every entry for the next flush, and an entry captured while a delivery is in flight is kept too (the Ruby gem's own buffer loses it). The buffer holds at most 1000 entries per kind and drops further ones until a flush succeeds, since a plan without the feature rejects every flush and would otherwise grow it for as long as the process lives. A NaN or infinite value is dropped at capture: it is not valid JSON and would make the server reject the whole batch behind it. Requires a ForgeOps plan that includes custom metrics / infrastructure monitoring.
What changed
ForgeOps can show what changed in your system next to the errors and slowdowns that followed it. Two ways in:
Record a change yourself when something changes that no deploy captures, like a feature flag flipped, a config value edited, or a migration run by hand:
import forge_ops_tracker
forge_ops_tracker.record_change(
"feature_flag", # feature_flag, config, migration, dependency, infrastructure, or other
"Enabled new_checkout for 10% of users",
details={"flag": "new_checkout", "rollout_percent": 10},
actor="ops@example.com",
url="https://flags.example.com/new_checkout",
)
kind and title are required; details, environment (defaults to the configured one),
service, actor, url, id (an idempotency key, so sending the same change twice records it
once), and occurred_at (a datetime or ISO 8601 string, defaulting to now) are optional. An
unknown kind is sent as other. It's queued and sent from a background thread, so it never slows
down the caller, never raises, and is a no-op when the client isn't enabled for the environment.
Changes between deploys are detected for you. Once per process, init() starts a background
thread that sends ForgeOps a snapshot of what the process is running: the Python version and every
installed package version (from importlib.metadata). ForgeOps compares it with the previous
boot's and records whatever changed, such as a package upgrade. Startup never waits on it.
forge_ops_tracker.init(
dsn="https://<api_key>@getforgeops.net/api/v1/events",
detect_changes=True, # default; False sends no startup snapshot
track_env_var_names=False, # default; True also sends environment variable names
)
With track_env_var_names on, the snapshot lists the names of your environment variables (never
their values), so an added or removed variable shows up as a change. Names that differ from host to
host, like HOSTNAME, PATH, PORT, LC_*, and Kubernetes service variables, are left out, as
are the SDK's own FORGE_OPS_* settings.
Requires a ForgeOps plan that includes change tracking; on a plan that doesn't, both are rejected server-side and dropped, exactly like any other delivery failure.
Running the tests
cd sdks/python
python3 -m venv .venv
./.venv/bin/pip install -e ".[test]"
./.venv/bin/python -m pytest
./.venv/bin/ruff check src tests
Release files for forge-ops-tracker 0.14.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| forge_ops_tracker-0.14.0.tar.gz | 122.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| forge_ops_tracker-0.14.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 201.5 kB
Release files / forge_ops_tracker-0.14.0.tar.gz
| Download URL | forge_ops_tracker-0.14.0.tar.gz |
|---|---|
| Size | 122.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c78a7a501ec7cc8a64609f39015318323793b5c99c8108b1c1fc34068bcd93f3
|
|
BLAKE2b-256 checksum How to use checksums |
84cfda760d9171d48e338a63ce9846fd7cf18a5c273fc372b3ac310cfe3f81df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.14
|
Release files / forge_ops_tracker-0.14.0-py3-none-any.whl
| Download URL | forge_ops_tracker-0.14.0-py3-none-any.whl |
|---|---|
| Size | 78.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
fa28aeff953315a36fb18b3ffcbb935158858e910d4e8830d25720265658f377
|
|
BLAKE2b-256 checksum How to use checksums |
de4e846d408f3599ac071c7bbe737a7333d1c7f11bd5b2dd5eff9ccbbca6c9a4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.14
|