{"id":37822264,"url":"https://github.com/elimity-com/insights-client-python","last_synced_at":"2026-01-16T15:42:49.921Z","repository":{"id":57750495,"uuid":"239707292","full_name":"elimity-com/insights-client-python","owner":"elimity-com","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-19T09:02:32.000Z","size":588,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-27T01:26:52.125Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elimity-com.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-02-11T08:00:49.000Z","updated_at":"2025-05-19T09:01:16.000Z","dependencies_parsed_at":"2024-02-05T12:03:38.733Z","dependency_job_id":null,"html_url":"https://github.com/elimity-com/insights-client-python","commit_stats":{"total_commits":157,"total_committers":8,"mean_commits":19.625,"dds":0.6178343949044586,"last_synced_commit":"e472e6ba5c03253815f4c07a18bc7e73ce1391fa"},"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/elimity-com/insights-client-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elimity-com%2Finsights-client-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elimity-com%2Finsights-client-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elimity-com%2Finsights-client-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elimity-com%2Finsights-client-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elimity-com","download_url":"https://codeload.github.com/elimity-com/insights-client-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elimity-com%2Finsights-client-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: 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":[],"created_at":"2026-01-16T15:42:49.862Z","updated_at":"2026-01-16T15:42:49.912Z","avatar_url":"https://github.com/elimity-com.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elimity Insights Python client\n\nThis Python module provides a client for connector interactions with an Elimity\nInsights server.\n\n## Usage\n\n### Importing data to custom sources\n\nThe following snippet shows how to authenticate as a custom source and create a connector log at an Elimity Insights\nserver. You can generate a source identifier and token by visiting the custom source's detail page in Elimity Insights\nand clicking the 'GENERATE CREDENTIALS' button, which can be found under the 'SETTINGS' tab.\n\n```python3\nfrom datetime import datetime\n\nfrom elimity_insights_client import Client, Config, ConnectorLog, Level\n\nif __name__ == \"__main__\":\n    config = Config(id=1, url=\"https://local.elimity.com:8081\", token=\"token\")\n    client = Client(config)\n\n    timestamp = datetime.now()\n    log = ConnectorLog(level=Level.INFO, message=\"Hello world!\", timestamp=timestamp)\n    logs = [log]\n    client.create_connector_logs(logs)\n```\n\n### Other API interactions\n\nThis module also provides a client for other API interactions with Elimity Insights. The snippet below shows how to\nauthenticate with an API token and list sources at an Elimity Insights server. You can generate a token identifier and\nsecret by visiting the 'API tokens' page in Elimity Insights and clicking the 'CREATE API TOKEN' button.\n\n```python3\nfrom elimity_insights_client.api import Config, sources\n\nif __name__ == \"__main__\":\n    config = Config(token_id=\"1\", token_secret=\"my-secret-value\", url=\"https://example.elimity.com\", verify_ssl=True)\n    my_sources = sources(config)\n    print(my_sources)\n```\n\n## Installation\n\n```sh\n$ pip install elimity-insights-client\n```\n\n## Compatibility\n\n| Client version | Insights version |\n| -------------- | ---------------- |\n| 1              | 2.8 - 2.10       |\n| 2 - 3          | 2.11 - 3.0       |\n| 4              | 3.1 - 3.3        |\n| 5 - 6          | 3.4 - 3.5        |\n| 7              | 3.6 - 3.7        |\n| 8              | 3.8 - 3.15       |\n| 9              | ^3.16            |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felimity-com%2Finsights-client-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felimity-com%2Finsights-client-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felimity-com%2Finsights-client-python/lists"}