Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions openfoodfacts/taxonomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
+ "/data/taxonomies/packaging_recycling.full.json",
TaxonomyType.country: URLBuilder.static(Flavor.off, Environment.org)
+ "/data/taxonomies/countries.full.json",
TaxonomyType.store: URLBuilder.static(Flavor.off, Environment.org)
+ "/data/taxonomies/stores.full.json",
TaxonomyType.additive: URLBuilder.static(Flavor.off, Environment.org)
+ "/data/taxonomies/additives.full.json",
TaxonomyType.vitamin: URLBuilder.static(Flavor.off, Environment.org)
Expand Down
1 change: 1 addition & 0 deletions openfoodfacts/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,7 @@ class TaxonomyType(str, enum.Enum):
packaging_material = "packaging_material"
packaging_recycling = "packaging_recycling"
country = "country"
store = "store"
nova_group = "nova_group"
Copy link
Copy Markdown
Member Author

@raphodn raphodn Dec 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

btw I saw that the nova_group is not in the TAXONOMY_URLS 👀

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oups, can you add it in another PR?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done in #408

packaging = "packaging"
additive = "additive"
Expand Down
Loading