Skip to content

Django app to manage your burgeoning EVE Online space empire... or something.

Notifications You must be signed in to change notification settings

larkly/evething

 
 

Repository files navigation

EVEthing

USE THE DEVELOP TREE. USE THE DEVELOP TREE. USE THE DEVELOP TREE. USE THE DEVELOP TREE. USE THE DEVELOP TREE.

(this tree won't be updated until an actual release occurs, good luck with that)

EVEthing is a terribly named web application intended to ease the pain of managing your EVE space empire.

  • Written entirely in Python
  • Uses the Django web development framework, with django-mptt to store and handle hierarchical data.
  • Uses the excellent Twitter Bootstrap layout framework. With an almost default theme because colours are hard.

Features

  • Handles all types of API key: account, character and corporation.
  • Only crashes occasionally, honest. More than likely will not set your hard drive on fire.
  • Home page: displays relevant information about all API keys related to your account. Screenshot.
    • Character name, wallet balance, API key 'name' (in brackets) and total SP easily visible.
    • If the account is training, shows training skill, time remaining and training speed. Red completion bars have free room in the skill queue.
    • Notification icons appear at the bottom of each character box and have basic tooltips, you can see the current types in the example screenshot.
    • Red boxes highlight accounts with no characters in training.
  • Character page: displays character information similay to the in-game character sheet. If you've ever used eveboard you should know what to expect. Screenshot (yes, that's my character).
    • Basic info: portrait, corporation, wallet balance, total SP, clone limit, attributes and implants.
    • Skill queue.
    • Weird heart icons for level V skills.
    • Full control over public visibility of character and of each component. If you're not logged in to the account that owns a character you will only see what the owner says you can see, or a 404 error if they choose to not be public.
    • Anonymous character support, accessed via a /character_anon/blah URL. Character name is not shown, portrait is replaced with a placeholder.
  • API key management page: list keys, add keys, simple interface to generate a new key with a feature set. Screenshot
  • Assets page: lists assets for all characters with the relevant API mask. Includes ship and container names with the Locations mask. Filtering is somewhat limited and search is non-existent but the basic functionality is in and working. Screenshot

Future Plans

  • Take over the universe.

Installation

There are some common requirements for any install method, you will need:

  • Python 2.6+, NOT 3.x
  • Django 1.4+
  • Django MPTT 0.5+
  • A database server and client library.
    • SQLite is the simplest and is often included with Python.
    • MySQL is another option and highly likely to be available on shared hosting. You will need the MySQLdb client library.
    • PostgreSQL is the last option and would be my choice. You will need the psycopg client library.

Local Install

This is for messing about with EVEthing and seeing what the hell it does, you probably shouldn't use this as a production site.

  1. Make sure you have Python 2.6+ and Django 1.4+ installed.
  2. Extract the EVEthing stuff somewhere.
  3. Copy local_settings.example to local_settings.py, then open local_settings.py in some sort of text editor and edit stuff. 'sqlite' is included with Python and will work, use that for the database setup.
  4. Run python manage.py syncdb, say yes when it asks if you want an admin user.
  5. Run python manage.py runserver.
  6. Open http://localhost:8000/ in whatever browser you use.
  7. Log in as the admin user you created earlier.
  8. Click the cog in the top right then 'API keys'.
  9. Add one or more API keys.
  10. Run python api_updater.py and wait while it pulls a huge pile of information.

Hosted Install

  1. Put some Apache + mod_wsgi stuff here for the easy option.
  2. Put some nginx + uwsgi/gunicorn stuff here to scare people away.

About

Django app to manage your burgeoning EVE Online space empire... or something.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published