Skip to content

crsmithdev/Pew

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pew

Pew is a simple, lightweight Python wrapper for the EVE Online API.


Install from https://github.com/crsmithdev/Pew

Goals

  • Be simple to use and extend
  • Provide easy object access to API results

Usage

  • Import Pew:
from pew import Pew
  • Instantiate with your API id / API key:
pew = Pew(12345, 'abcdefg')
  • Call an API method:
result = pew.acct_characters()
  • Use the returned API object:
	for c in result.characters:
	    print '[%s] %s' % (c.characterID, c.name)

Notes

  • Some tests may not pass depending on the credentials you provide, their permissions and other factors (e.g., being in an NPC corp will cause most corp tests to fail).

About

A simple, lightweight Python wrapper for the EVE Online API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages