A corporation manager and dashboard for EVE Online
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

14 řádky
296 B

  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()