Smartcar Python SDK
Project description
Smartcar Python Backend SDK
Python package to quickly integrate Smartcar API
Resources
Installation
# Inside your virtual environment:
pip install smartcar
Usage
Authentication
Before integrating with Python SDK, you'll need to register an application in the Smartcar Developer portal. Once you have registered an application, you will have a Client ID and Client Secret, which will allow you to authorize users.
Now that you have your id, secret and redirect URI, here's a simple overall idea of how to use the SDK to authenticate and make requests with the Smartcar API.
- In your terminal, export your client id, client secret, and redirect uri as environment variables.
export SMARTCAR_CLIENT_ID='<your client id>'
export SMARTCAR_CLIENT_SECRET='<your client secret>'
export SMARTCAR_REDIRECT_URI='<your redirect uri>'
- Import the sdk
import smartcar
- Create a new smartcar
client
withsmartcar.AuthClient()
import smartcar
client = smartcar.AuthClient()
- Redirect the user to an OEM login page using the URL from
client.get_auth_url(scope)
# Alter this list to specify the scope of permissions your application is requesting access to
scopes = ['read_vehicle_info', 'read_odometer', <scope3>...]
# Generate auth url for User OAuth flow
auth_url = client.get_auth_url(scopes)
-
The user will login, and then accept or deny the permissions in your
scopes
- If the user is already connected to your application, they will not be shown the accept or deny dialog. However
the application can force this dialog to be shown with
client.get_auth_url(options={"force_prompt"=True})
- If the user is already connected to your application, they will not be shown the accept or deny dialog. However
the application can force this dialog to be shown with
-
If the user accepts, they will be redirected to your
redirect_uri
. The query fieldcode
will contain an authorization code. This is very important, so save it for later.https://redirect-url.example.com/?code=<AUTHORIZATION_CODE>
-
With your authorization code in hand, use
client.exchange_code(authorization_code)
to exchange your authorization code for an access object.
access_object = client.exchange_code(<authorization_code>)
This access object will look like this:
{
"access_token": "...",
"token_type": "Bearer",
"expiration": "2018-05-02T18:04:25+00:00",
"refresh_token": "...",
"refresh_expiration": "2018-06-02T18:03:25+00:00",
"expires_in": "..."
}
-
To make any vehicle data request to the Smartcar API, you'll need to give the SDK a valid access token. Access tokens will expire every 2 hours, so you'll need to constantly refresh them.
-
It was pretty hard getting that first access token, but from now on it's easy! Calling
client.exchange_refresh_token(refresh_token)
will return a new access object using a previous access object's refresh token. This means you can always have a fresh access token, by doing something like this:
def get_fresh_access():
access = load_access_from_database()
new_access = client.exchange_refresh_token(access['refresh_token'])
put_access_into_database(new_access)
return new_access
fresh_access_token = get_fresh_access()['access_token']
Vehicle Data and Commands
With your fresh access token in hand, use smartcar.get_vehicles(access_token)
to get a list of the user's vehicles.
vehicles = smartcar.get_vehicles(<access_token>)
print(vehicles.vehicles)
# [ uuid-of-first-vehicle, "...", uuid-of-nth-vehicle ]
# Vehicle ID of first vehicle
vehicle_id = vehicle.vehicles[0]
-
Now with a vehicle id in hand, use
smartcar.Vehicle(vehicle_id, access_token)
to get a Vehicle object representing the user's vehicle. -
Now you can ask the car to do things, or ask it for some data! For example:
vehicle = smartcar.Vehicle(vehicle_id, access_token)
odometer = vehicle.odometer()
print(odometer.distance)
info = vehicle.info()
print(info.make)
print(info.model)
batch = vehicle.batch(paths=['/location'])
location = batch.location()
print(location)
- For a lot more examples on everything you can do with a car, see the smartcar developer docs
- For the full SDK reference guide, visit REFERENCES.md
Handling Exceptions
Any time you make a request to the Smartcar API, something can go wrong. This means that you really should wrap each
call to client.exchange_code
, client.exchange_refresh_token
, client.get_vehicles
, and any vehicle method with
some exception handling code.
All exceptions will be of type smartcar.SmartcarException
with the... exception of missing client
credentials. Navigate below to AuthClient
for more details.
Upon a vehicle rate limit error, see SmartcarException.retry_after
(seconds) for when to retry the request.
Check out our API Reference and v2.0 Error Guides to learn more.
Supported Python Branches
Smartcar aims to support the SDK on all Python branches that have a status of "bugfix" or "security" as defined in the Python Developer's Guide.
In accordance with the Semantic Versioning specification, the addition of support for new Python branches would result in a MINOR version bump and the removal of support for Python branches would result in a MAJOR version bump.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file smartcar-6.16.0.tar.gz
.
File metadata
- Download URL: smartcar-6.16.0.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17de9f1459ed4ed694078a4652f26365431565fb37e3376f84b6143240c69103 |
|
MD5 | 03d84b45d7f5518f731409c7dedd3b08 |
|
BLAKE2b-256 | d3652795fd181dba797c3a20f0eb4468e27a254c0be853a5b76108a546088ba9 |