Skip to main content

Python package for using the discord-user-history service.

Project description

py-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

You can create a User type object. The User object has 3 attributes.

  • uuid (A uniqe id given by discord)
  • name (Name users can choose by themselves e.g. IamPekka058)
  • id (Id nitro users can choose their id by themselves e.g. #0000)
from User import User

user = User(uuid, name, id)

getUser(uuid)

Returns an User type object with information, if user with given uuid exists. If no user exists the method returns None.

from HistoryService import HistoryService

service = HistoryService(token)
user = service.getUser(uuid)

existsUser(uuid)

Returns a bool, indicating if a user with given uuid exists. If no user exists the method returns False.

from HistoryService import HistoryService

service = HistoryService(token)
statement = service.existsUser(uuid)

createUser(uuid)

from HistoryService import HistoryService

service = HistoryService(token)
service.createUser(uuid)

registerChanges(uuid, id, name)

from HistoryService import HistoryService

service = HistoryService(token)
service.registerChanges(uuid, new_profile_id, new_profile_name)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

discord_user_history-0.0.1-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page