pySpaceX is an open-source API wrapper to make it easier to access data from the unofficial v4 SpaceX API
Docs · Report a bug · PyPi
To install you can simply install the package by using: python3 -m pip install pySpaceX
The code can also be directly downloaded from the latest release:
https://github.com/TwoSails/pySpaceX/releases
To get started with using this wrapper we need to start with the creation of an api instance:
from pySpaceX import Space api = Space()To get information about the API use:
info = api.get_info() # Returns the info object print(info.company()) # Returns data about the SpaceX companyYou can also get information about a dragon capsule by using:
dragon = api.get_dragon() # Returns the dragon object print(dragon.one_dragon('5e9d058859b1ffd8e2ad5f90'))Available at https://pypi.org/project/pySpaceX
Feel free to contribute by opening an issue or a pull request.
Any help is greatly appreciated.
All contributors will be listed on this repository.