Skip to content

Commit

Permalink
add pandasdmx
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause committed Nov 11, 2023
1 parent 2bcd0d1 commit 6b06ce5
Show file tree
Hide file tree
Showing 3 changed files with 189 additions and 1 deletion.
186 changes: 185 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ gn-arcrest = "*"
cython = "*"
numpy = "*"
coloredlogs = "*"
pandasdmx = "^1.10.0"
requests-cache = "^1.1.0"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 2 additions & 0 deletions saau/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
from os.path import join, dirname, exists, expanduser
from bdb import BdbQuit

import pandasdmx

STATS_DATA = 'c:\\stats_data'
CACHE = join(STATS_DATA, 'cache')
OUTPUT = join(STATS_DATA, 'output')
HERE = dirname(__file__)
coloredlogs.install(level='DEBUG')
coloredlogs.install(logger=pandasdmx.logger, level='DEBUG')
sys.path.insert(0, expanduser('~/Dropbox/temp/arcrest'))

from .services import Services
Expand Down

0 comments on commit 6b06ce5

Please sign in to comment.