Disecon
Project description
Disecon
Disecon is a python economy library where you could make a full economy system really easy.
Installing
# Windows
pip install Disecon
# Lunix / Mac
python3 -m pip install Disecon
Useage
Starting Disecon
To start Disecon you need to do the following command bellow so that the database gets made. After you do the command you can delete the line that the command is on.
from Disecon import *
start()
Adding money
If you want to add some money into someones wallet you can follow the example bellow to add some money.
from Disecon import *
wallet = wallet(amount=100, user_ID=Discord User ID)
wallet.add()
If you want to add some money into somones bank you can follow the example bellow to add some money.
from Disecon import *
bank = bank(amount=100, user_ID=Discord User ID)
bank.add()
Subracting money
If you want to subract money from somones wallet do the following example bellow.
from Disecon import *
wallet = wallet(amount=100, user_ID=Disecon User ID)
wallet.sub()
If you want to subract money from someones bank you could follow the example bellow.
from Disecon import *
bank = bank(amount=100, user_ID=Discord User ID)
bank.sub()
Example
I'm going to show a little of how Disecon would work if you will download the library.
import discord
from Disecon import *
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 Distribution
File details
Details for the file Disecon-0.6.1.tar.gz
.
File metadata
- Download URL: Disecon-0.6.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b3c360386d2ae114774a73e4be8de46da258481d848a97401289bda51b889da |
|
MD5 | 3ac8a22811ca1db4d895d8e8edcc6d51 |
|
BLAKE2b-256 | f23bf9457412273ea4dbbf143b206afa7b5f09d5c873049f266449fbb0d8e7d9 |