$ pip install strava-flyby
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.
Jupyter notebook example with real data is here
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)
fb
>>> Flyby object with 17 matches.
Attributes: ids, activity, matches, athletes
Methods: matches_to_list(), matches_to_json(), get_ids()
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))