Добавлена выгрузка данных

main
through-your-tears 9 months ago
parent a921e616d2
commit 972359c931

@ -42,14 +42,17 @@ MAPPING_DATA = {
def parse_organizations_to_db(data): def parse_organizations_to_db(data):
for k in data.keys(): for k in data.keys():
for obj in data[k]: for obj in data[k]:
OrganizationRepository.create( try:
location=LocationRepository.get_or_create( OrganizationRepository.create(
coords=Point(obj['latitude'], obj['longitude']), location=LocationRepository.get_or_create(
address=obj['address'] coords=Point(obj['latitude'], obj['longitude']),
), address=obj['address']
name=obj['name'], ),
phone=obj['phone'], name=obj['name'],
website=obj['website'], phone=obj['phone'],
description=obj['description'], website=obj['website'],
category=CategoryRepository.get_by_name(MAPPING_DATA[obj['category']]) description=obj['description'],
) category=CategoryRepository.get_by_name(MAPPING_DATA[obj['category']])
)
except Exception:
pass

Loading…
Cancel
Save