Installing binance.py is a fairly straight forward process:
pip install binance.py
binance.py requires python 3.6 or superior
Generate an API Key and assign relevant permissions.
Load your keys from a config
Load the client (it is not mandatory but this is highly recommended)
Send your first request
import binanceclient = binance.Client(API_KEY, API_SECRET)await client.load()order = await client.create_order("ETHPAX", Side.BUY, OrderType.MARKET, quantity=1, test=True,) # this will fake a buy of one ETH with your PAX balanceprint(order)