Python Wrapper for the LocalCoinSwap API. This wrapper is currently incomplete and should be considered completely experimental, not ready for production, and merely a work in progress.
- Clone this repository into your project folder
- Setup virtualenv if desired and install requirements
pip install -r requirements.txt
- Create
.env
file with your API key in the formatTOKEN="your_token"
- Import the modules from the wrapper directory as follows.
from wrapper import *
Send a message to your most recent trade:
trade.send_message(trade.latest(), "Ready to Trade?")
Get Total Portfolio Value:
portfolio.value
Check Ethereum Wallet Balance:
wallet.balance("eth")
Search Bitcoin Trade Offers for Specific User:
offers.search(username="someone", ticker="BTC")
... and much more, review the various modules for further possibilities