Metadata-Version: 2.1
Name: Disecon
Version: 0.4.0
Summary: Disecon
Home-page: UNKNOWN
Author: LegosAndStuff
License: MIT
Keywords: economy
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE


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

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

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

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

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

```python
import discord
from Disecon import *

