You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

zwift-client

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zwift-client

Zwift Mobile API client.

0.2.0
pipPyPI
Maintainers
1

======================= Zwift Mobile API client

.. image:: https://img.shields.io/pypi/v/zwift-client.svg :target: https://pypi.python.org/pypi/zwift-client

.. image:: https://img.shields.io/travis/jsmits/zwift-client.svg :target: https://travis-ci.org/jsmits/zwift-client

.. image:: https://pyup.io/repos/github/jsmits/zwift-client/shield.svg :target: https://pyup.io/repos/github/jsmits/zwift-client/ :alt: Updates

Zwift Mobile API client written in Python. Heavily inspired by zwift-mobile-api_.

Installation

::

$ pip install zwift-client

Usage

Client ++++++

::

>>> from zwift import Client
>>> username = 'your-username'
>>> password = 'your-password'
>>> player_id = your-player-id
>>> client = Client(username, password)

Profile +++++++

::

>>> profile = client.get_profile()
>>> profile.profile  # fetch your profile data
>>> profile.followers
>>> profile.followees
>>> profile.get_activities()  # metadata of your activities
>>> profile.latest_activity  # metadata of your latest activity

Activity ++++++++

::

>>> activity = client.get_activity(player_id)
>>> activities = activity.list()  # your activities (default start is 0, default limit is 20)
>>> activities = activity.list(start=20, limit=50)
>>> latest_activity_id = activities[0]['id']
>>> activity.get_activity(latest_activity_id)  # metadata of your latest activity
>>> activity.get_data(latest_activity_id)  # processed FIT file data

World +++++

::

>>> world = client.get_world(1)  # get world with id 1
>>> world.players  # players currently present in this world
>>> world.player_status(player_id) # current player status information like speed, cadence, power, etc.

Credits

This package was created with cookiecutter_ and the audreyr/cookiecutter-pypackage_ project template.

.. _cookiecutter: https://github.com/audreyr/cookiecutter .. _audreyr/cookiecutter-pypackage: https://github.com/audreyr/cookiecutter-pypackage .. _zwift-mobile-api: https://github.com/Ogadai/zwift-mobile-api

======= History

0.2.0 (2018-03-02)

  • Add optional start and limit keyword arguments to Activity.list().

0.1.0 (2018-01-14)

  • Initial release.

Keywords

zwift

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts