Skip to main content

Python client for Strava Flyby

Project description


# Python client for Strava Flyby

[![Build Status](https://travis-ci.org/sladkovm/strava-flyby.svg?branch=master)](https://travis-ci.org/sladkovm/strava-flyby)


## Install

$ pip install strava-flyby


## Usage

*strava-flyby* provides a convenience object wrapping of the *Strava Labs Flyby API* response. Next to providing a direct access to the unmodified content of the *Flyby API* response, the object will expose number of convenience attributes and methods to access the list of activity ids, matches and athletes.

Create a *flyby* object using the Strava activity ID with a help of the `flyby()` factory function:
```
from flyby import flyby
fb = flyby(activity_id=12345)
print(fb)
>>> <flyby.Flyby object at 0x000002D65BE952E8>
```

List of implemented methods and attributes:
```
dir(fb)
>>> [..., 'raw_activity', 'raw_athletes', 'raw_content', 'raw_matches',
'ids', 'get_ids', 'matches_to_json', 'matches_to_list']
```

Filter by distance in km and print all matched ids:
```
print(fb.get_ids(distance=(110, 130)))
```

Dump filtered by distance flattened matches into a list:
```
print(fb.matches_to_list(distance=120, tol=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

strava-flyby-0.0.3.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

strava_flyby-0.0.3-py2.py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 2 Python 3

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