Python package for using the discord-user-history service.
Project description
discord-user-history
This package helps to communicate between a python discord bot and our service api. To use the package you'll need a verification token. You can request verification tokens via email. (iampekka058@gmail.com)
Install the package
pip install discord-user-history
Documentation
The Package is in an early state of development. The documentation will be edited soon.
User Object
User replicates a discord user.
- uuid (A uniqe id given by discord)
- name (e.g. IamPekka058)
- id (e.g. #0000)
user = User(uuid, name, id)
string getID()
Returns id of user.
string getName()
Returns name of user.
string getUUID()
Returns uuid of user.
string getPrintable()
Returns printable user object. Format: (Name)#(ID)<(UUID)>
User getUser(uuid)
Returns an User type object with information, if user with given uuid exists. If no user exists the method returns None.
service = HistoryService(token)
user = service.getUser(uuid)
bool existsUser(uuid)
Returns a bool, indicating if a user with given uuid exists. Returns false, if user doesn't exist.
service = HistoryService(token)
statement = service.existsUser(uuid)
createUser(uuid)
service = HistoryService(token)
service.createUser(uuid)
registerChanges(uuid, id, name)
service = HistoryService(token)
service.registerChanges(uuid, new_profile_id, new_profile_name)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file discord_user_history-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: discord_user_history-0.0.3-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c1b8c4817869c4634548ba796bc080a6bae92134ac6329d403b380f135aee820
|
|
MD5 |
4f3617cbc4e194f46d92a249c9e07367
|
|
BLAKE2b-256 |
c11f2de0254e8339a04512e5af5f2b0538df46132831b0606eef52f1b2690771
|