A corporation manager and dashboard for EVE Online
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

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