🔧 This is the beginning of monkeytype.py, a python wrapper built around the Monkeytype API.
As of now, I have created a simple `User` model which can be used to retrieve information about a user who is signed up to monkeytype.com, for example:
py
import monkeytype
client = monkeytype.Client(api_key="API_KEY_HERE")
user = monkeytype.User(
client=client,
username="maksims"
)
if user.is_banned:
print(f"{user.username} is banned from monkeytype.com!")
**Full Changelog**: https://github.com/m2ksims/monkeytype.py/commits/v0.1a3