Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
08bcea7
refactor: create new structure for endponts under data_bridges_knots …
AlexGherardelli May 22, 2026
6c63da6
Merge branch 'main' into refactor/DataBridgesShape
AlexGherardelli May 22, 2026
c21bf14
Merge branch 'main' into refactor/DataBridgesShape
AlexGherardelli May 25, 2026
402f608
refactor: (WIP) add soft deprecation of DataBridgesShape
AlexGherardelli May 25, 2026
3bff4db
feat: add soft deprecation of DataBridgesShapes and migrate methods t…
AlexGherardelli May 25, 2026
95a1db4
refactor: move household survey endpoints in endpoints submodule
AlexGherardelli May 25, 2026
418f427
refactor: CurrencyApi endpoints in currency.py
AlexGherardelli May 26, 2026
38060d6
refactor: CurrencyApi endpoints in currency.py
AlexGherardelli May 26, 2026
33c28f9
refactor: add MFI endpoints to surveysApi.py
AlexGherardelli May 26, 2026
c632feb
refactor: marketPriceApi and commodityUnitsApi endpoints
AlexGherardelli May 26, 2026
1a304be
refactor: marketsApi endpoints
AlexGherardelli May 26, 2026
2d55638
refactor: add econonomicApi.py, rpmeApi, and globalOutlookApi.py to e…
AlexGherardelli May 27, 2026
4aff28b
chore: apply codestyle
AlexGherardelli May 27, 2026
3923dd0
fix: import from HungerHotspotApi, ipcChApi and incubationApi from en…
AlexGherardelli May 27, 2026
c176749
feat: add commodities_categories_list_get endpoint to CommodityApi
AlexGherardelli May 27, 2026
54d3d38
test: add test for new commodity endpoint
AlexGherardelli May 29, 2026
2a72c4f
fix(DataBridgesKnots): import of MFI endpoints
AlexGherardelli May 29, 2026
c0a5361
Merge main
AlexGherardelli Jun 8, 2026
1dd54e2
chore: apply codestyle
AlexGherardelli Jun 8, 2026
eb989ae
fix: rename commodity_categories_list_get to get_commodity_categories…
AlexGherardelli Jun 9, 2026
0e6c61a
fix: get_commodity_list_get() now working
AlexGherardelli Jun 9, 2026
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ test:

.PHONY: test-integration
test-integration:
uv run pytest tests/integration -m "integration" --run-integration
uv run pytest tests -m "integration" --run-integration

.PHONY: test-all
test-all:
uv run pytest --cov=data_bridges_knots --cov-report=html
uv run pytest --cov=data_bridges_knots --cov-report=html --run-integration
uv run coverage-badge -o assets/images/coverage.svg -f

#* Typing
Expand All @@ -51,7 +51,7 @@ mypy:

#* All in one
.PHONY: lint
lint: test check-codestyle mypy
lint: codestyle test-all mypy

#* DOCS

Expand Down
3 changes: 2 additions & 1 deletion data_bridges_knots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
Wrapper for DataBridges client.
"""

from .client import DataBridgesShapes, config_from_env
from .client import DataBridgesKnots, DataBridgesShapes, config_from_env
from .labels import get_choice_labels, get_variable_labels, map_value_labels

__all__ = [
"DataBridgesShapes",
"DataBridgesKnots",
"labels",
"get_variable_labels",
"get_choice_labels",
Expand Down
Loading