Skip to content

Commit

Permalink
add new functions to main namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
aecorn committed Apr 26, 2024
1 parent 9a2c887 commit f9ae2d4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/statbank/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@

import toml

from statbank.apidata import apicodelist
from statbank.apidata import apidata
from statbank.apidata import apidata_all
from statbank.apidata import apidata_rotate
from statbank.apidata import apimetadata
from statbank.client import StatbankClient
from statbank.statbank_logger import logger

__all__ = ["StatbankClient", "apidata", "apidata_all", "apidata_rotate"]
__all__ = [
"StatbankClient",
"apidata",
"apidata_all",
"apidata_rotate",
"apimetadata",
"apicodelist",
]


# Split into function for testing
Expand Down

0 comments on commit f9ae2d4

Please sign in to comment.