The Python SDK to interact with the Space Traders API.
Read the documentation here: https://spacetraders.readthedocs.io/en/latest/
Space Traders is a great way to learn a practice coding. I highly recommend having a go at using the Requests library and interacting with the API yourself as practice but you can install this library to skip the boring work of coding for each API endpoint.
git clone https://github.com/seennotheard/spacePyTradersV2.git
Navigate terminal to spacePyTradersV2 folder containing setup.py
e.g.
cd spacePyTradersV2
Install package with pip
pip install .
The first installment of this library provides a nice way to use Python and interact with the API without needed to code all the request calls.
Using the Api
class provided you can access all the currently possible endpoints of the API. The structure of the classes are organised the same as the Space Traders API. So if you're not sure what class to look under check the docs here or the Space Trader's API here.
from SpacePyTradersV2 import client
USERNAME = "YOUR USERNAME"
TOKEN = "YOUR TOKEN"
api = client.Api(USERNAME,TOKEN)
print(api.account.get_agent())
>>>
"Agent(symbol='JoeBloggs', headquarters='X1-HM65-A1', credits=25772, starting_faction='COSMIC', ship_count=7, account_id='asdfasdfasdf')"