Extract game data from EVE Frontier using a GUI or command-line interface.
✅ Three data types - Solar systems (24,426), blueprints (263), and types (32,159)
✅ Cross-platform GUI - Works on Windows, macOS, and Linux
✅ Command-line tool - For automation and scripting
✅ Automatic extraction - No manual file handling
✅ Clean output - Formatted JSON with auto-cleanup
-
Install Python 3.12+:
# Download from python.org -
Run the GUI:
python gui.py
-
Extract data:
- Browse to
code.ccpfile (inEVE Frontier/stillness/) - Choose output folder
- Select which data types to extract (all selected by default)
- Click "Extract Selected Data"
- Browse to
# Extract types data
python extract.py --types
# Custom paths
python extract.py --types --game-path "C:\CCP\EVE Frontier\stillness" --output "./output"
# Help
python extract.py --help- Python 3.12+ (required for parsing EVE Frontier's binary data)
- No additional dependencies needed
- Windows:
C:\CCP\EVE Frontier\stillness\code.ccp - macOS:
~/Library/Application Support/CCP/EVE Frontier/stillness/code.ccp - Linux:
~/.local/share/CCP/EVE Frontier/stillness/code.ccp
- 24,426 systems with coordinates, planets, stargates, security status
- 83,356 planets with moons, stations, lagrange points
- Star properties: spectral class, luminosity, age, frost line
- 263 blueprints with manufacturing recipes
- Materials required and products created
- Production time and limits
- 32,159 item types with properties
- Base price, capacity, mass, volume, radius
- Group ID, platform availability, published status
- Reads
resfileindex.txtto locate data files in ResFiles hash storage - Extracts binary data (
.static,.fsdbinary) from ResFiles - Uses EVE Frontier's native loaders (
typesLoader.pyd,code.ccp) - Converts to formatted JSON and cleans up temporary files
Python 3.12 not found
- Install from python.org
- Verify:
python --versionorpython3.12 --version - The GUI will automatically find Python 3.12
Files not found
- Ensure EVE Frontier is installed
- Verify
code.ccppath is correct (instillnessfolder) - Check that
resfileindex.txtexists in the same directory
Extraction fails
- Close EVE Frontier client if running
- Try running as administrator (Windows)
- Check available disk space (solar systems = 389 MB)
Community tool - Not affiliated with CCP Games
Repository: github.com/TwistedSD/FrontierData