Files
django-evesde/evesde/management/commands/import_api_stations.py

8 lines
265 B
Python

from django.core.management.base import BaseCommand
from evesde.eveapi.eve import import_conquerable_stations
class Command(BaseCommand):
help = 'Imports outposts from the EVE API.'
def handle(self, *args, **options):
import_conquerable_stations()