Metadata-Version: 1.1
Name: django-eveonline-connector
Version: 1.0.1
Summary: A simple Django application that adds EVE Online entities and SSO methods
Home-page: https://github.com/KryptedGaming/django-eveonline-connector
Author: porowns
Author-email: porowns@gmail.com
License: MIT License
Description: # django-eveonline-connector
        EVE Online connector for EVE entities like players, corporations, and alliances.
        
        
        # installation
        install with `pip3 install django-eveonline-connector`
        
        run migrations `python3 manage.py migrate`
        
        load initial data `python3 manage.py loaddata initial_scopes`
        
        # Django EVE Online Connector
        Django EVE Online Connector is a simple Django application that adds models, urls, and Celery tasks to help manage EVE Online entities (characters, corporations, alliances) and ESI SSO.
        
        # Installation
        1. Add `django_eveonline_connector` to your INSTALLED_APPS
        2. Include the django_eveonline_connector URLs in your urls.py
        3. Run `python3 manage.py migrate` to create the django_eveonline_connector models
        4. Run `python3 manage.py loaddata initial_scopes` to load the initial ESI scopes
        
        # Provided URLs
        | URL Name | Description |
        | ------------- | ------------- |
        |  django-eveonline-connector-sso-callback   | The callback url for SSO tokens (`sso/callback`)  |
        |  django-eveonline-connector-sso-token-add  | Redirects users to the SSO login for EVE Online   |
        |  django-eveonline-connector-sso-token-remove  | Removes an SSO token (expects kwarg pk)  |
        
        # Provided Celery Tasks
        | Task Name  | Action  |
        | ------------- | ------------- |
        |  update_characters() | Updates information for all EveCharacter objects  |
        |  update_corporations() | Updates information for all EveCorporation objects  |
        |  update_alliances() | Updates information for all EveAlliance objects  |
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
