A web app for the game EVE Online to view your skills, grouped into useful categories. See where you have good coverage, and where you need to train your skills.
Using EVE's SSO (Single Sign On) system and the new ESI API. You are guaranteed to be going to CCP's server for authentication, and you can see exactly what permissions you are granting to this application.
Python 3.x is required.
pip install -r requirements.txt
- Copy
config.conf.default
toconfig.conf
- Go to https://developers.eveonline.com/ and create a new application
- Choose a name and write a description
- For 'Connection Type', choose
Authentication & API Access
- The required scopes are listed in
config.conf.default
but arepublicData
,esi-skills.read_skills.v1
,esi-skills.read_skillqueue.v1
, andesi-clones.read_implants.v1
- The Callback URL is where the SSO system will redirect your users after authentication. It should end in
/esv/view
for this application - Copy the information for your app into
config.conf
- Run
python wsgi.py