Giter Site home page Giter Site logo

python-sdk's Introduction

Smartcar Python Backend SDK Build Status PyPI version

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 with smartcar.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 accepts, they will be redirected to your redirect_uri. The query field code 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)

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.

python-sdk's People

Contributors

zzggbb avatar gurpreetatwal avatar sankethkatta avatar theodorewahle avatar jacobandrewsmith92 avatar nbry avatar naomiperez avatar rsimari avatar aytekin-smartcar avatar s-ashwinkumar avatar morgannewman avatar esonmez avatar clach04 avatar charlottekosche avatar adolfoportilla avatar allisonc07 avatar bharathguna avatar bdr99 avatar evanpeterson1324 avatar gregchan avatar karthikbhaskara avatar mdheri avatar robinjayaswal avatar zespinosa97 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.