Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mason-dino/disecon

A Python Library to help make a simple economy system. This library is mostly used as a discord python library but could be used for another project.
https://github.com/mason-dino/disecon

Last synced: about 2 months ago
JSON representation

A Python Library to help make a simple economy system. This library is mostly used as a discord python library but could be used for another project.

Awesome Lists containing this project

README

        

# Disecon

![PyPI](https://img.shields.io/pypi/v/Disecon?color=gree) ![PyPI - License](https://img.shields.io/pypi/l/Disecon?color=gree)

#

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
```
## Usage

### 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.

```python
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.

```python
from Disecon import *

wallet = money.wallet(amount=100, user_ID=Discord User ID)

wallet.add()
```

If you want to add some money into someones bank you can follow the example bellow to add some money.

```python
from Disecon import *

bank = money.bank(amount=100, user_ID=Discord User ID)

bank.add()
```

### Subtracting money

If you want to subtract money from someones wallet do the following example below.

```python
from Disecon import *

wallet = money.wallet(amount=100, user_ID=Disecon User ID)

wallet.sub()
```

If you want to subtract money from someones bank you could follow the example below.

```python
from Disecon import *

bank = money.bank(amount=100, user_ID=Discord User ID)

bank.sub()
```

### Viewing User Info

If you want to view someones wallet, bank or net follow the example below.

```python
from Disecon import *

view = results.view(user_ID=Discord User ID)

print(view.wallet())
print(view.bank())
print(view.net())
```

### Leaderboard Info

If you want to see who's in a certain place and git user id, net, wallet and bank you can follow the example below.

```python
from Disecon import *

top = results.top(place=1)

print(top.user_ID())
print(top.net())
print(top.wallet())
print(top.bank())
```