A corporation manager and dashboard for EVE Online
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

14 satır
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()