On remplace "Autre" par "Sans catégorie"

This commit is contained in:
Jean-Marie Favreau 2024-09-15 11:34:48 +02:00
parent 956374b647
commit 2a6697b28d
4 changed files with 14 additions and 11 deletions

View File

@ -32,7 +32,7 @@ if __name__ == "__main__":
url = "https://calendar.google.com/calendar/ical/programmation.lesaugustes%40gmail.com/public/basic.ics"
url_human = "https://www.cafelesaugustes.fr/la-programmation/"
events = u2e.process(url, url_human, cache = "cache-augustes.ical", default_values = {"category": "Autre", "location": "Café lecture les Augustes"}, published = True)
events = u2e.process(url, url_human, cache = "cache-augustes.ical", default_values = {"category": "Sans catégorie", "location": "Café lecture les Augustes"}, published = True)
exportfile = "events-augustes.json"
print("Saving events to file {}".format(exportfile))

View File

@ -13,9 +13,9 @@ class CExtractor(TwoStepsExtractor):
mapping = {
"Théâtre": "Théâtre",
"Danse": "Danse",
"Rencontre": "Autre",
"Sortie de résidence": "Autre",
"PopCorn Live": "Autre",
"Rencontre": "Sans catégorie",
"Sortie de résidence": "Sans catégorie",
"PopCorn Live": "Sans catégorie",
}
if category in mapping:
return mapping[category]

View File

@ -10,11 +10,11 @@ class CExtractor(TwoStepsExtractor):
mapping = {
"Musique": "Concert",
"CONCERT": "Concert",
"VISITE": "Autre",
"VISITE": "Sans catégorie",
"Spectacle": "Théâtre",
"Rencontre": "Autre",
"Atelier": "Autre",
"Projection": "Autre",
"Rencontre": "Sans catégorie",
"Atelier": "Sans catégorie",
"Projection": "Sans catégorie",
}
if category in mapping:
return mapping[category]

View File

@ -714,9 +714,12 @@ class Event(models.Model):
def from_structure(event_structure, import_source=None):
if "category" in event_structure and event_structure["category"] is not None:
event_structure["category"] = Category.objects.get(
name=event_structure["category"]
)
try:
event_structure["category"] = Category.objects.get(
name=event_structure["category"]
)
except Category.DoesNotExist:
event_structure["category"] = Category.get_default_category()
if "published" in event_structure and event_structure["published"] is not None:
if event_structure["published"]: