Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 729 Bytes

README.md

File metadata and controls

42 lines (27 loc) · 729 Bytes

python-egym

A python interface into the eGym API (www.egym.de)

This project is forked from the apparently dormant (2017) project bitstacker/python-egym I added new functions by sniffing the 2021 IOS e-gym app, and updated models.py and api.py accordingly. Also fixed some minor issues in the models.

Tested on Ubuntu 20.10 and MacOS 11.3

To install and use :

  • Check out this repository

  • cd into the dir :

cd python-egym
  • build using make :
make
  • install using pip :
pip install -e .

Example for use in your Python app:

import egym

api = egym.Api(email='[email protected]',
                      password='userspassword')
print(api.GetUserProfile())