Skip to content

akimbo7/Guildr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 = 'johnsmith01@gmail.com'
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