{"id":37083648,"url":"https://github.com/launchdarkly/python-server-sdk-otel","last_synced_at":"2026-01-14T10:12:29.916Z","repository":{"id":236141028,"uuid":"791963466","full_name":"launchdarkly/python-server-sdk-otel","owner":"launchdarkly","description":"LaunchDarkly SDK OTEL integration for the Python server side SDK","archived":false,"fork":false,"pushed_at":"2025-09-22T14:48:57.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":20,"default_branch":"main","last_synced_at":"2025-09-30T00:00:03.103Z","etag":null,"topics":["feature-flags","feature-toggles","launchdarkly","launchdarkly-sdk","managed-by-terraform","otel","python","sdk"],"latest_commit_sha":null,"homepage":"https://github.com/launchdarkly/python-server-sdk-otel","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/launchdarkly.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-25T17:57:05.000Z","updated_at":"2025-09-22T14:49:00.000Z","dependencies_parsed_at":"2025-08-04T16:13:18.977Z","dependency_job_id":"7605a364-84c7-4e88-b9d3-0f3f70870204","html_url":"https://github.com/launchdarkly/python-server-sdk-otel","commit_stats":null,"previous_names":["launchdarkly/python-server-sdk-otel"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/launchdarkly/python-server-sdk-otel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchdarkly%2Fpython-server-sdk-otel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchdarkly%2Fpython-server-sdk-otel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchdarkly%2Fpython-server-sdk-otel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchdarkly%2Fpython-server-sdk-otel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/launchdarkly","download_url":"https://codeload.github.com/launchdarkly/python-server-sdk-otel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchdarkly%2Fpython-server-sdk-otel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28416679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:38:59.149Z","status":"ssl_error","status_checked_at":"2026-01-14T08:38:43.588Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["feature-flags","feature-toggles","launchdarkly","launchdarkly-sdk","managed-by-terraform","otel","python","sdk"],"created_at":"2026-01-14T10:12:29.167Z","updated_at":"2026-01-14T10:12:29.907Z","avatar_url":"https://github.com/launchdarkly.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"LaunchDarkly Server-side OTEL library for Python\n==============================================\n\n[![PyPI](https://img.shields.io/pypi/v/launchdarkly-server-sdk-otel.svg?maxAge=2592000)](https://pypi.python.org/pypi/launchdarkly-server-sdk-otel)\n[![Quality Control](https://github.com/launchdarkly/python-server-sdk-otel/actions/workflows/ci.yml/badge.svg)](https://github.com/launchdarkly/python-server-sdk-otel/actions/workflows/ci.yml)\n[![readthedocs](https://readthedocs.org/projects/launchdarkly-python-sdk-otel-integration/badge/)](https://launchdarkly-python-sdk-otel-integration.readthedocs.io/en/latest/)\n\nLaunchDarkly overview\n-------------------------\n[LaunchDarkly](https://www.launchdarkly.com) is a feature management platform that serves trillions of feature flags daily to help teams build better software, faster. [Get started](https://docs.launchdarkly.com/home/getting-started) using LaunchDarkly today!\n\n[![Twitter Follow](https://img.shields.io/twitter/follow/launchdarkly.svg?style=social\u0026label=Follow\u0026maxAge=2592000)](https://twitter.com/intent/follow?screen_name=launchdarkly)\n\nSupported Python versions\n-----------------------\n\nThis version of the library has a minimum Python version of 3.9.\n\nGetting started\n-----------\n\nInstall the package\n\n    $ pip install launchdarkly-server-sdk-otel\n\nThe provided `TracingHook` can be setup as shown below:\n\n```python\nfrom ldotel.tracing import Hook\nimport ldclient\n\nldclient.set_config(Config('sdk-key', hooks=[Hook()]))\nclient = ldclient.get()\n\nset_tracer_provider(TracerProvider())\ntracer = get_tracer_provider().get_tracer('pytest')\n\nwith tracer.start_as_curent_span('top-level span'):\n    client.variation('boolean', Context.create('org-key', 'org'), False)\n```\n\nLearn more\n-----------\n\nRead our [documentation](http://docs.launchdarkly.com) for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the [reference guide for the python SDK](http://docs.launchdarkly.com/docs/python-sdk-reference).\n\nGenerated API documentation for all versions of the library is on [readthedocs](https://launchdarkly-python-sdk-otel-integration.readthedocs.io/en/latest/).\n\nContributing\n------------\n\nWe encourage pull requests and other contributions from the community. Check out our [contributing guidelines](CONTRIBUTING.md) for instructions on how to contribute to this library.\n\nVerifying library build provenance with the SLSA framework\n------------\n\nLaunchDarkly uses the [SLSA framework](https://slsa.dev/spec/v1.0/about) (Supply-chain Levels for Software Artifacts) to help developers make their supply chain more secure by ensuring the authenticity and build integrity of our published library packages. To learn more, see the [provenance guide](PROVENANCE.md).\n\nAbout LaunchDarkly\n-----------\n\n* LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard.  With LaunchDarkly, you can:\n    * Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.\n    * Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).\n    * Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.\n    * Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan). Disable parts of your application to facilitate maintenance, without taking everything offline.\n* LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Read [our documentation](https://docs.launchdarkly.com/sdk) for a complete list.\n* Explore LaunchDarkly\n    * [launchdarkly.com](https://www.launchdarkly.com/ \"LaunchDarkly Main Website\") for more information\n    * [docs.launchdarkly.com](https://docs.launchdarkly.com/  \"LaunchDarkly Documentation\") for our documentation and SDK reference guides\n    * [apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/  \"LaunchDarkly API Documentation\") for our API documentation\n    * [blog.launchdarkly.com](https://blog.launchdarkly.com/  \"LaunchDarkly Blog Documentation\") for the latest product updates\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchdarkly%2Fpython-server-sdk-otel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaunchdarkly%2Fpython-server-sdk-otel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchdarkly%2Fpython-server-sdk-otel/lists"}