PoC of pulling data from EVE Online's ESI. (probably broken by now)

Sacha Ligthert 2de2df2992 first commit 3 жил өмнө
.gitignore 2de2df2992 first commit 3 жил өмнө
LICENSE 2de2df2992 first commit 3 жил өмнө
README.md 2de2df2992 first commit 3 жил өмнө
generate.py 2de2df2992 first commit 3 жил өмнө
new_eden.db 2de2df2992 first commit 3 жил өмнө
snarf.py 2de2df2992 first commit 3 жил өмнө

README.md

esi-db-snarf

Scripts to snarf ESI for data and cramming it into a sqlite database.

ESI Exploration

Required to find adjacent systems

Reference: https://esi.evetech.net/ui/

  • curl -H "accept: application/json" https://esi.evetech.net/v1/universe/regions/
  • curl -H "accept: application/json" https://esi.evetech.net/v1/universe/regions/10000027
  • curl -H "accept: application/json" https://esi.evetech.net/v1/universe/constellations/20000336/
  • curl -s -H "accept: application/json" https://esi.evetech.net/v4/universe/systems/30002290/ | python3 -m json.tool
  • curl -s -H "accept: application/json" https://esi.evetech.net/v1/universe/stargates/50000569/ | python3 -m json.tool

Tables

Systems

  • id
  • name
  • constellation_id
  • constellation_name
  • region_id
  • region_name

Gates

  • sys_from
  • sys_to