ED_Tools initial commit.

This commit is contained in:
Anna Rose Wiggins 2015-10-25 20:51:48 -04:00
commit ee49936330
8 changed files with 471 additions and 0 deletions

27
elite_info.py Executable file
View file

@ -0,0 +1,27 @@
#!/usr/bin/python
from companion import Session, VerificationRequired
import os
import utils
def main():
settings = utils.get_settings()
session = Session()
try:
session.login(settings.get('ed_companion', 'username'), settings.get('ed_companion', 'password'))
except VerificationRequired:
code = raw_input("Input Verification Code: ")
session.verify(code)
data = session.query()
# Now we have the data!
print "Commander %s" % data['commander']['name']
print "Credits: %s" % data['commander']['credits']
print "Location: %s" % data['lastSystem']['name']
session.close()
if __name__ == "__main__":
main()