Skip to main content

esi-client

A Python client for accessing the complete Eve Online ESI API.

release python openapi ESI pipeline status license chat

Contents

Overview

This package is a library that provides a Python client for accessing the public 3rd party API of EVE Online, which is more commonly known as "ESI" (EVE Swagger Interface).

The client is automatically generated from ESI's specification with the Open API generator.

This approach offers many benefits in comparison to other ESI libraries:

  • Complete and correct coverage of all endpoints
  • Automatic serialization and mapping to Python data types
  • Python classes for all data models
  • Type annotations, i.e. enabling auto complete for API methods
  • No delay at startup for building the client
  • Robust and proven API client
  • Fast turnaround on API updates

Installation

You can install the current this library directly from PyPI:

pip install esi-client

Usage

In this chapter we are showing how to get information from ESI with the open API client.

Accessing public endpoints

The esi client from openAPI is easy to use. Here is a minimal example for fetching a character from the public endpoint:

from esi_client.api.character_api import CharacterApi

api = CharacterApi()
character = api.get_characters_character_id(character_id=93330670)
print(character.name)

Error handling

Common errors can be handled by catching ApiException:

import esi_client
from esi_client.api.character_api import CharacterApi

api = CharacterApi()
try:
    character = api.get_characters_character_id(character_id=93330670)
    print(character.name)
except esi_client.ApiException as ex:
    print(f"Exception occurred when trying to fetch a character: {ex}")

Making multiple calls to endpoints

When making multiple calls to endpoints it is more efficient to use the same API client instance. Here we are first calling the character endpoint to get information about a character and then we are calling the corporation endpoint to get the name of the corporation the character belongs to.

import esi_client
from esi_client.api.character_api import CharacterApi
from esi_client.api.corporation_api import CorporationApi

with esi_client.ApiClient() as api_client:
    character_api = CharacterApi(api_client)
    character = character_api.get_characters_character_id(character_id=93330670)
    corporation_api = CorporationApi(api_client)
    corporation = corporation_api.get_corporations_corporation_id(
        corporation_id=character.corporation_id
    )
    print(f"{character.name} if a member of {corporation.name}")

    

Accessing private endpoints

For accessing private endpoint you need a valid access token.

Note that to topic of obtaining an access token is not in scope of this library. Please see the SSO documentation for more information on how to obtain an access token for your web site or app. For testing purposes it is possible to generate an access token on the ESI web site.

You can provide your access token in two ways:

  1. As configuration for the api client
  2. As parameter when calling an endpoint

Token as configuration

One way for providing your access token is as configuration for the api client:

import esi_client
from esi_client.api.character_api import CharacterApi

configuration = esi_client.Configuration(access_token="ACCESS-TOKEN")

with esi_client.ApiClient(configuration) as api_client:
    api_instance = CharacterApi(api_client)
    api_response = api_instance.get_characters_character_id_medals(
        character_id=93330670
    )
    ...

Token as parameter

Another way of providing your access token is as parameter when making the call to the endpoint:

from esi_client.api.character_api import CharacterApi

api_instance = CharacterApi(api_client)
api_response = api_instance.get_characters_character_id_medals(
    character_id=93330670, token="ACCESS-TOKEN"
)

Getting HTTP information for a response

In some cases you also need to get the HTTP information for a response. e.g. if a endpoint supports paging the information about how many pages there are is in the HTTP header.

To get the HTTP information you need to pass the argument _return_http_data_only=False when calling the API method. The API method will then return a tuple consisting of:

  • data
  • HTTP status code
  • HTTP response headers

Here is an example:

from esi_client.api.universe_api import UniverseApi

api = UniverseApi()
data, status_code, header = api.get_universe_types(_return_http_data_only=False)

The source code for these examples can also be found in project's examples folder.

Release files for esi-client 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for esi-client 0.1.0
File Size Uploaded
esi_client-0.1.0.tar.gz 351.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for esi-client 0.1.0
File Interpreter ABI Platform
esi_client-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 2.0 MB

Release files / esi_client-0.1.0.tar.gz

Download URL esi_client-0.1.0.tar.gz
Size 351.6 kB
Tags Source
SHA-256 checksum
How to use checksums
4618608953c81805e96e9b29afa5975b8298ba80cd1247e4d722fc7f5f5450e2
BLAKE2b-256 checksum
How to use checksums
c8e7803ccd60e29cafaac499cdf32935c03345a19d59969f50583aaf550ed790
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.10.16

Release files / esi_client-0.1.0-py3-none-any.whl

Download URL esi_client-0.1.0-py3-none-any.whl
Size 1.6 MB
Tags Python 3
SHA-256 checksum
How to use checksums
d941e152a83382df05f7f4bc6fc900b8eed724004cab2ecd103280fabc0d573a
BLAKE2b-256 checksum
How to use checksums
194b18faea7ef0a0e50cd5dcbea2709bbaadcd534ee6147af9e600e0dd7f1010
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.0.1 CPython/3.10.16

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page