To improve the code organization, additional subfolders were added into the pfbudget module. The barebones of renewing the token and downloading transactions directly from the banks through the Nordigen API were also added. Issues #13, #15
8 lines
241 B
Python
8 lines
241 B
Python
__all__ = ["run", "parse_data", "categorize_data"]
|
|
__author__ = "Luís Murta"
|
|
__version__ = "0.1"
|
|
|
|
from pfbudget.core.categories import categorize_data
|
|
from pfbudget.core.input.parsers import parse_data
|
|
from pfbudget.cli.runnable import run
|