work on initial tag load

This commit is contained in:
Sam
2021-02-10 12:50:25 +00:00
parent 07c3a42ee8
commit 41e68031fa
7 changed files with 10910 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ logging.basicConfig(
class Command(BaseCommand):
'help' = 'Load geographic dataset'
def handle(self, *args, **kwargs):
print('Deleting all instances of Country, Region, Province, City')
logging.info('Deleting all instances of Country, Region, Province, City')

View File

@@ -0,0 +1,26 @@
import logging
from django.core.management.base import BaseCommand
from django.conf import settings
class Command(BaseCommand):
help = 'Load taxonomy terms into Tags'
def handle(self, *args, **kwargs):
print(self.help)
file_path = settings.BASE_DIR + '/../datasets/' + settings.TAXONOMY_FILE
counter = 0
with open(file_path, 'rt') as data_file:
print(f"Reading from {settings.TAXONOMY_FILE}")
for line in data_file.readlines():
try:
tag = TagModel.objects.create(name=line)
counter += 1
logging.debug(f"{tag} created from {line}")
except Exception as e:
logging.error(f"{type(e)} while creating tags from {settings.TAXONOMY_FILE}")
print(f"{counter} new TagModel instances created")
print('Shutting down\n')

View File

@@ -22,6 +22,7 @@ logging.basicConfig(
class Command(BaseCommand):
logo_url = "https://picsum.photos/200/300"
help = 'Creates fake companies and related products in database'
def handle(self, *args, **kwargs):
print("Creating fake data to populate database")