Metadata-Version: 2.1
Name: moodle-mobile-py
Version: 1.0.3
Summary: A Python Wrapper for the Moodle Mobile API
Home-page: https://github.com/xImAnton/moodle.py
Author: xImAnton_
Author-email: admin@ximanton.de
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/xImAnton/moodle.py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# MoodleCrawler
A Python Wrapper for the Moodle Mobile API

## Installation
Install using pip:
```shell
pip install moodle-mobile-py
```

## First Steps
Start by creating an instance of the moodle crawler and logging in:
```python
import moodle


# initialise moodle crawler object
m = moodle.MoodleCrawler("<username>", "<password>", "https://moodle.example.com")
await m.login()

# print whether the current user an an admin of the moodle page
print(m.site_info.is_admin)
```

Note that the wrapper is written in an async/await style, and you have to call specific functions
from coroutines.


