You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

kiken

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kiken

A wrapper for EDSM (Elite Dangerous Star Map) API

0.1.0
Source
pipPyPI
Maintainers
1

kiken

kiken is a Python wrapper for the Elite Dangerous Star Map (EDSM) API. It allows you to interact with the EDSM API asynchronously using aiohttp, making it easy to fetch data about systems, stations, markets, and more in the Elite Dangerous universe.

Current Features (More soon™️!)

  • Fetch system information including bodies and stations
  • Retrieve market data for specific stations
  • Asynchronous requests using aiohttp
  • Debug mode for saving API responses to JSON files

Installation

pip install --upgrade git+https://github.com/EllieJaybee/kiken.git

Usage

import asyncio

from kiken import Client

async def main():
    client = Client()
    system = await client.get_system("Lifthruti")
    print(f"{system.body_count} bodies in {system.name}")
    for body in system.bodies:
        print(body.name)

asyncio.run(main())

License

This project is licensed under the GPL-3.0 License - see the LICENSE file for details.

This project is not affiliated with the Elite Dangerous Star Map project.

Keywords

API

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts