{"id":20284710,"url":"https://github.com/dashxhq/dashx-python","last_synced_at":"2026-05-30T21:31:38.883Z","repository":{"id":41194771,"uuid":"492787969","full_name":"dashxhq/dashx-python","owner":"dashxhq","description":"DashX SDK for Python","archived":false,"fork":false,"pushed_at":"2026-02-15T19:36:12.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-16T00:43:22.403Z","etag":null,"topics":["ab-testing","admin-panel","analytics","automation","billing","cms","feature-flags","messaging","notifications","python"],"latest_commit_sha":null,"homepage":"https://docs.dashx.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dashxhq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-05-16T10:32:14.000Z","updated_at":"2026-02-15T19:39:47.000Z","dependencies_parsed_at":"2023-02-01T04:45:15.220Z","dependency_job_id":null,"html_url":"https://github.com/dashxhq/dashx-python","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dashxhq/dashx-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashxhq%2Fdashx-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashxhq%2Fdashx-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashxhq%2Fdashx-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashxhq%2Fdashx-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dashxhq","download_url":"https://codeload.github.com/dashxhq/dashx-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashxhq%2Fdashx-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33711018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ab-testing","admin-panel","analytics","automation","billing","cms","feature-flags","messaging","notifications","python"],"created_at":"2024-11-14T14:21:14.533Z","updated_at":"2026-05-30T21:31:38.877Z","avatar_url":"https://github.com/dashxhq.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://dashx.com\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/dashxhq/brand-book/master/assets/logo-black-text-color-icon@2x.png\" alt=\"DashX\" height=\"40\" /\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003cstrong\u003eYour All-in-One Product Stack\u003c/strong\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch4\u003e\n    \u003ca href=\"https://dashx.com\"\u003eWebsite\u003c/a\u003e\n    \u003cspan\u003e | \u003c/span\u003e\n    \u003ca href=\"https://dashxdemo.com\"\u003eDemos\u003c/a\u003e\n    \u003cspan\u003e | \u003c/span\u003e\n    \u003ca href=\"https://docs.dashx.com\"\u003eDocumentation\u003c/a\u003e\n  \u003c/h4\u003e\n\u003c/div\u003e\n\n\u003cbr /\u003e\n\n# dashx-python\n\n_DashX SDK for Python_\n\n## Install\n\n```sh\npip install --upgrade dashx\n```\n\n## Usage\n\nFor detailed usage, refer to the [documentation](https://docs.dashx.com).\n\n## Testing\n\nInstall the package in editable mode with dev dependencies, then run pytest from the project root:\n\n```bash\npip install -e \".[dev]\"\npytest\n```\n\nTests use **mocked** requests (no real API calls) and set their own env vars via fixtures, so you do **not** need to set `DASHX_PUBLIC_KEY` or `DASHX_PRIVATE_KEY` to run tests.\n\n- Run with verbose output: `pytest -v`\n- Run a specific file: `pytest tests/test_client.py`\n- Run a specific test: `pytest tests/test_client.py::TestIdentify::test_identify_with_uid_calls_make_request`\n\n## Examples\n\nThe `examples/` folder contains scripts that call the **real** DashX API. They require valid credentials via environment variables.\n\n**Required env vars:** `DASHX_PUBLIC_KEY`, `DASHX_PRIVATE_KEY`, `DASHX_TARGET_ENVIRONMENT`  \n**Optional:** `DASHX_BASE_URI` (default: `https://api.dashx.com/graphql`)\n\nFrom the project root:\n\n```bash\nexport DASHX_PUBLIC_KEY=your_public_key\nexport DASHX_PRIVATE_KEY=your_private_key\nexport DASHX_TARGET_ENVIRONMENT=development\n\npython -m examples.identify_example\npython -m examples.track_example\n```\n\nOr with `PYTHONPATH` if the package isn’t installed: `PYTHONPATH=src python -m examples.identify_example`\n\nSee **examples/README.md** for more detail (e.g. using a `.env` file).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashxhq%2Fdashx-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdashxhq%2Fdashx-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashxhq%2Fdashx-python/lists"}