A corporation manager and dashboard for EVE Online
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

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