Metadata-Version: 2.1
Name: pyexhange_r3ne
Version: 0.1.1
Summary: Python code that allows users to create and manage their own virtual wallets to get the trading experiense with out real money.
Project-URL: Homepage, https://github.com/JAAKKQ/pyexhange
Project-URL: Bug Tracker, https://github.com/JAAKKQ/pyexhange/issues
Author-email: "R3ne.net" <mail@r3ne.net>
License-File: LICENCE.rst
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# PyExhange

This code is a Python implementation of a basic wallet system that allows users to buy, sell, and transfer currencies. It includes a JSON database to store user information and currency balances. The code is licensed under the MIT license.

# Installation
```
pip install pyexhange-r3ne
```

# Usage
This can be integrated to any interface (Websites, Telegram, Discord, etc.) with ease.

Example:
```python
import pyexhange

#Buy 1 Ethereum
print(pyexhange.handle_command("trade 1 1 eth"))

#Sell 1 Ethereum
print(pyexhange.handle_command("trade 1 -1 eth"))

#As user 1 send 100 dollars to user 2
print(pyexhange.handle_command("send 1 2 100 USD This_Is_A_Message"))
```
