1
0
Fork 0
satnogs-db/db/base/management/commands/fetch_satellites.py

22 lines
780 B
Python

"""SatNOGS DB django management command to fetch satellites"""
from django.core.management.base import BaseCommand
from db.base.tasks import update_satellite
class Command(BaseCommand):
"""django management command to fetch satellites"""
help = 'Updates/Inserts Name for certain Satellites'
def add_arguments(self, parser):
# Positional arguments
parser.add_argument('norad_ids', nargs='+', metavar='<norad id>')
def handle(self, *args, **options):
for norad_id in options['norad_ids']:
try:
update_satellite(int(norad_id), update_name=True, update_tle=False)
except LookupError:
self.stderr.write('Satellite {} not found in Celestrak'.format(norad_id))
continue