A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

esi.py 296 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. __all__ = ["EVESwaggerInterface"]
  3. class EVESwaggerInterface:
  4. """EVE API module for the EVE Swagger Interface (ESI)."""
  5. def __init__(self, session):
  6. self._session = session
  7. def __call__(self, *args):
  8. ...
  9. raise NotImplementedError()