Python client for the Polymarket CLOB
Reason this release was yanked:
Unnecessary logs
Project description
py-clob-client
Python client for the Polymarket CLOB
Installation
pip install py-clob-client
Intended for use with Python 3.9
Usage
host = "http://localhost:8080"
key = os.getenv("PK")
creds = ApiCreds(api_key=os.getenv("CLOB_API_KEY"), api_secret=os.getenv("CLOB_SECRET"), api_passphrase=os.getenv("CLOB_PASS_PHRASE"))
chain_id = 80001
client = ClobClient(host, key=key, chain_id=chain_id, creds=creds)
# Create and sign a limit order buying 100 YES tokens for 0.50c each
lim_order = client.create_limit_order(LimitOrderArgs(
price=0.50,
size=100.0,
side=BUY,
token_id="16678291189211314787145083999015737376658799626183230671758641503291735614088"
))
# Send it to the server
resp = client.post_order(lim_order)
print(resp)
# Initiate a market sell of 100 YES tokens
mkt_order = client.create_market_order(MarketOrderArgs(
size=100.0,
side=SELL,
token_id="16678291189211314787145083999015737376658799626183230671758641503291735614088"
))
resp = client.post_order(mkt_order)
print(resp)
See examples for more
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py_clob_client-0.0.2.tar.gz
(8.2 kB
view hashes)
Built Distribution
Close
Hashes for py_clob_client-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 927a1fa8ff39cc6a603374cb3de7533baf9e4e2671a3b10512e99fb5a29d6fba |
|
MD5 | 33f1d11b45e604c116f31cd51c49b9f6 |
|
BLAKE2b-256 | 880f5a070662fb6fe99201cfe1d8877e08864256dd8014b45cc61a1e3c4b6160 |