Skip to main content

SpaceX REST API wrapping with aiohttp

Project description

SpaceXPy

A wrapper that supports asynchronous.

This package is Asynchronous wrapping of the informal SpaceX REST API.

Install

pip install spacexpy

Quick Example

Sync

import spacexpy

spacex = spacexpy.SpaceX()
cl = spacex.company()

print(cl.headquarters)
print(cl.headquarters.address)

Async

import asyncio
import spacexpy

async def main():
    spacex = spacexpy.SpaceX()
    cl = await spacex.company()
    print(cl.headquarters)
    print(cl.headquarters.address)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Print:

{"address": "Rocket Road", "city": "Hawthorne", "state": "California"}
Rocket Road

Get all list

Sync

import spacexpy


spacex = spacexpy.SpaceX()
cl = spacex.capsules()

print(cl)

Async

import asyncio
import spacexpy

async def main():
    spacex = spacexpy.SpaceX()
    cl = await spacex.capsules()
    print(cl)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Print:

[
    {
        "reuse_count": 1,
        "water_landings": 1,
        "land_landings": 0,
        "last_update": "Reentered after three weeks in orbit",
        "launches": [
            "5eb87cdeffd86e000604b330"
        ],
        "serial": "C101",
        "status": "retired",
        "id": "5e9e2c5bf35918ed873b2664"
    },
    ...
]

Attribute

Check this docs

Patch note

2.0.2

2.0.1

2.0.0

  • Now support Sync
  • Change model
  • PR #3

1.0.1

  • Grammer fix 1.0.1: PR #1

1.0.0

  • Released 1.0.0: All endpoints cover

Contributing

You can Open an issue or submit PRs.

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

spacexpy-2.0.2.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

spacexpy-2.0.2-py3-none-any.whl (6.1 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