Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.46 KB

README.md

File metadata and controls

52 lines (34 loc) · 1.46 KB

Guildr

MIT License MIT License MIT License

Logo

A simple API Wrapper for Guilded.

I am not a user of Guilded, meaning I do not keep track of new Guilded updates or patches. If a function stops working as a result of this, feel free to open an issue.

Enjoy :)

Installation

python3 -m pip install --user --upgrade git+https://github.com/akimbo7/Guildr.git#egg=guildr

Requirements:

  • bs4 >= 0.0.1
  • colorama >= 0.4.4
  • lxml >= 4.8.0
  • requests >= 2.27.1
  • uuid >= 1.30

Remove

python3 -m pip uninstall git+https://github.com/akimbo7/Guildr.git#egg=guildr

Example Usage

import guildr

client = guildr.Client(log=True)

email = '[email protected]'
password = 'Password123'

#returns True or False along with the json response
x = client.login(email = email, password = password)

userID = client.getUserID()
print(f'User ID: {userID}')

Check out the full feature list here