Getting Started

Installing discoin.py

To start with discoin.py you will need to install it via pip/pypi with the following command

$ pip install discoin

Integrating discoin

discoin.py configuration is the most important part of the process. You will see and notice, it is really hard! So you will need 2 information to get it up and running. First is your Discoin token provided by Jonah#6905. Second information is the 3 digits character of your currency.

from discoin import Client

client = Client("<TOKEN>", "ABC")

You can also create a new client using a loop

import asyncio
from discoin import Client

loop = asyncio.get_event_loop()
client = Client("<TOKEN>", "ABC", loop=loop)

Example

An example cog for discord.py can be found here. Just be sure to put your token and currency code at L11, and be sure to add/remove currency at lines L25, L45, L47, and L57