Metadata-Version: 1.1
Name: strava-flyby
Version: 0.0.2
Summary: Python client for Strava Flyby
Home-page: https://github.com/sladkovm/strava-flyby
Author: Maksym Sladkov
Author-email: sladkovm@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: 
        Python client for Strava Flyby
        ==============================
        
        
        pip install strava-flyby
        
        
        >>> from flyby import flyby
        >>> fb = flyby(activity_id=12345)
        
        # Print raw matches
        >>> print(fb.matches)
        
        # Print all matched ids filtered by distance in km
        >>> print(fb.ids(distance=(110, 130)))
        
        # Dump all flattened matches into a list and filter by distance
        >>> print(fb.to_list(distance=120, tol=0.1))
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering
