Skip to main content

Downloads your Social Bicycles route data.

Project description

Summary

Download your Social Bicycles (SoBi) route data and save it locally in various formats.

Details

The sobidata module allows you to download your [Social Bicycles](https://app.socialbicycles.com) (SoBi) route data via the applications web API and save it locally in a variety of file formats.

The module uses the requests library to download collections of routes from the SoBi HTTP REST API using HTTP Basic Authentication, as outlined in the [SoBi API documentation](https://app.socialbicycles.com/developer/).

The route data is paginated, and the method that downloads the data calls itself recursively, incrementing the page with each request until there is no more data.

For each route, the module makes a follow-up request to the API to look up the bike name, origin hub address and destination hub address. However, it also stores the results of those requests locally so that a subsequent search for the same bike name or hub address retrieves the result from the local cache rather than making a duplicate API request.

As a result, the data includes three datasets: a list of routes, a list of hubs and a list of bikes. The module also makes a list of totals, calculating the total distance in miles, total distance in km, total duration in seconds, total duration in minutes, total duration in hours, total number of distinct bikes, and total number of distinct hubs.

Once the data is downloaded, you can save it locally in a variety of formats: JSON, XML, Excel 2007 or CSV format. Note that the JSON, XML and Excel 2007 formats save all four datasets, but the CSV format only saves the routes dataset.

Installation

The sobidata module is [published on the Python Package Index](https://pypi.python.org/pypi/sobidata), so you can install it using pip or easy_install.

pip install sobidata

Or:

easy_install sobidata

Alternately, you can download the tarballed installer - sobidata-[VERSION].tar.gz - for this package from the [dist](https://github.com/quandyfactory/sobidata/tree/master/dist) directory on github and uncompress it. Then, from a terminal or command window, navigate into the unzipped folder and type the command:

python setup.py install

That should be all you need to do.

Basic Usage

From a Python terminal or script, import the sobidata module and create an instance of the Sobi() class.

>>> import sobidata
>>> sobi = sobidata.Sobi()

Assign your SoBi username (your email address) and password, as they are used for authentication.

>>> sobi.username = 'my@email.address'
>>> sobi.password = 'SecretPassword123'

Call the get_data() method to download and process the data.

>>> sobi.get_data()

It will take a few moments to download all the data.

Specify a destination path to save the data.

>>> sobi.path = '/path/to/sobi/download/files'

Export and save the data locally.

>>> sobi.save_data()

If you call save_data() without any parameters, it saves the data in JSON format under the filename:

/path/to/sobi/download/files/sobidata_export.json

You can also save in several other formats by specifying the format as an optional argument:

>>> sobi.save_data('xml') # XML format via dicttoxml module
>>> sobi.save_data('xlsx') # Excel 2007 format via openpyxl module
>>> sobi.save_data('csv') # CSV format - only saves routes

Advanced Usage

The local data is stored in a dictionary. If you want to view/manipulate the data further, you can access the dictionary here:

>>> data = sobi.data
>>> data.keys()
['bikes', 'hubs', 'routes', 'totals']

The data[‘bikes’] item is a list of dictionaries with the following keys: bike_id, bike_name.

The data[‘hubs’] item is a list of dictionaries with the following keys: hub_id’, `hub_address.

The data[‘routes’] item is a list of dictionaries with the following keys: bike_id, bike_name, distance_km, distance_miles, duration, duration_hh_mm_ss, finish_time, first_location_address, from_hub_address, from_hub_id, route_id, start_time, to_hub_address, to_hub_id.

The data[‘totals’] is a dictionary with the following keys: distinct_bikes, distinct_hubs, total_distance_km, total_distance_miles, total_duration_hours, total_duration_minutes, total_duration_seconds.

If you have previously saved the data in JSON format, you can import it:

>>> sobi.import_data()

Currently, you can only import data in JSON format.

Author

Version

  • Version: 0.3

  • Release Date: 2015-05-06

Revision History

Version 0.3

  • Release Date: 2015-05-06

  • Notes:
    • Fixed version in sobidata.py, README.md and setup.py

Version 0.2

  • Release Date: 2015-05-06

  • Notes:
    • Dropped and recreated repository.

Version 0.1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sobidata-0.3.tar.gz (5.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page