{"id":28480577,"url":"https://github.com/qk7b/xee-sdk-python","last_synced_at":"2026-02-28T10:04:27.955Z","repository":{"id":150875781,"uuid":"63178416","full_name":"qk7b/xee-sdk-python","owner":"qk7b","description":"DEPRECATED - A python SDK for Xee APIs","archived":false,"fork":false,"pushed_at":"2020-05-12T08:15:45.000Z","size":420,"stargazers_count":3,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-03T19:44:38.581Z","etag":null,"topics":["python","python-library","sdk","xee","xee-apis"],"latest_commit_sha":null,"homepage":"","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/qk7b.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null}},"created_at":"2016-07-12T17:25:04.000Z","updated_at":"2023-01-01T18:07:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"ab768881-ad01-4066-9239-f8b0deb0926e","html_url":"https://github.com/qk7b/xee-sdk-python","commit_stats":null,"previous_names":["qk7b/xee-sdk-python","quentin7b/xee-sdk-python"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/qk7b/xee-sdk-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qk7b%2Fxee-sdk-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qk7b%2Fxee-sdk-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qk7b%2Fxee-sdk-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qk7b%2Fxee-sdk-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qk7b","download_url":"https://codeload.github.com/qk7b/xee-sdk-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qk7b%2Fxee-sdk-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29929613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T09:58:13.507Z","status":"ssl_error","status_checked_at":"2026-02-28T09:57:57.047Z","response_time":90,"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":["python","python-library","sdk","xee","xee-apis"],"created_at":"2025-06-07T19:06:45.078Z","updated_at":"2026-02-28T10:04:27.944Z","avatar_url":"https://github.com/qk7b.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deprecated\n\nAs I can't find time to work on this project anymore, but the Xee API continues to move forward, this project is now deprecated.\nBy chance, you can find an up-to-date project on the fork [tikismoke](https://github.com/tikismoke) made.\n\nPlease reach [this repository for up-to-date sdk](https://github.com/tikismoke/xee-sdk-python)\n\n---\n\n\n#  Xee SDK Python\n\n[![Build Status](https://travis-ci.org/quentin7b/xee-sdk-python.svg?branch=master)](https://travis-ci.org/quentin7b/xee-sdk-python)\n[![License Apache](https://img.shields.io/badge/License-Apache%202.0-green.svg?style=flat)](./LICENSE)\n[![Version](https://img.shields.io/badge/Version-3.0.2-blue.svg?style=flat)](https://github.com/quentin7b/xee-sdk-python/releases/tag/3.0.2)\n\nA utility library for [Xee API](https://dev.xee.com) with Python 3.\n\n\u003e Almost all the requests are done for you and the responses are returned as a **tuple**s.\n\n## Install\n\n* Clone and `python setup.py install` :) \n\n## Initializing the SDK\n\n```python\nfrom xee import Xee\n\nxee = Xee(client_id=\"your_client_id\", \n\t\tclient_secret=\"your_client_secret\", \n\t\tredirect_uri=\"your://redirect:uri\")\n```\n\n## Using the SDK\n\n### Authentication\n\n#### Getting the [access code url](https://github.com/xee-lab/xee-api-docs/tree/master/api/api/v3/auth/auth.md)\n\n```python\nlogin_url = xee.get_authentication_url()\n```\n\n\u003e Then show the webpage to the end user, once the process is complete, we'll redirect to `redirect_uri?code={authorization_code}`. Keep this code in mind\n\n#### Getting a [token from an `authorization_code`](https://github.com/xee-lab/xee-api-docs/tree/master/api/api/v3/auth/access_token.md)\n\n```python\ntoken, error = xee.get_token_from_code(authorization_code)\n```\n\n#### Getting a [token from an `refresh_token`](https://github.com/xee-lab/xee-api-docs/tree/master/api/api/v3/auth/access_token.md)\n\n```python\ntoken, error = xee.get_token_from_refresh_token(token.refresh_token)\n```\n### Requests\n\nAs simple as\n\n```python\nuser, error = xee.get_user(token.access_token)\nprint(user.id)\n```\n\nOthers examples:\n\n```python\nstatus, error = xee.get_status(carId, token.access_token)\nprint(status)\n```\n\n```python\nsignal, error = xee.get_signals(carId, token.access_token,names=['Odometer', 'FuelLevel'])\nprint(signal)\n```\n\n```python\ntrip_duration, error = xee.get_trip_duration(tripId, token.access_token)\nprint(trip_duration.value)\n```\n\nSee the [docs](https://github.com/quentin7b/xee-sdk-python/docs) for more about how to use it\n\n## Contributing\n\nI'm pretty new to *python*.\n\nTried to follow some \"guidelines\" I found:\n- http://sametmax.com/planet-python-fr/\n- https://github.com/kennethreitz/python-guide\n- ...\n \nBut might be doing things in a wrong way so, feel free to **fork**, **issue**, **pr**, **everything** to improve this !\n\n## Dependencies\n\nTo build this, I used some very useful libraries\n- [isodate](https://pypi.python.org/pypi/isodate)\n- [requests](https://pypi.python.org/pypi/requests)\n\nAnd to test\n- [responses](https://pypi.python.org/pypi/responses)\n- [pytz](https://pypi.python.org/pypi/pytz)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqk7b%2Fxee-sdk-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqk7b%2Fxee-sdk-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqk7b%2Fxee-sdk-python/lists"}