Skip to main content

Python wrapper for the SpaceX API

Project description

Build Status GitHub issues GitHub license GitHub stars

SpaceX-PY

Python wrapper for the SpaceX API

Install

pip install spacex-py

Usage

This wrapper matches the SpaceX API so its pretty easy to use. Lets go through some examples;

from spacex_py import launches

# Returns a tuple
got_launches, header = launches.get_launches()

# PyLint being a pain about header? use:
got_launches, _ = launches.get_launches()

print(got_launches)
# Prints list: of launches

Okay well, lets get launches using a query;

from spacex_py import launches

got_launches, _ = launches.get_launches(site_id="ksc_lc_39a")

print(got_launches)
# Prints the launhces for the given site

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spacex_py-1.0.0.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

spacex_py-1.0.0-py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page