diff --git a/nbs/00_core.ipynb b/nbs/00_core.ipynb index d0185de..f235b0a 100644 --- a/nbs/00_core.ipynb +++ b/nbs/00_core.ipynb @@ -56,16 +56,6 @@ "jupyter_black.load()" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# | export\n", - "from sec_edgar_downloader import Downloader" - ] - }, { "cell_type": "code", "execution_count": null, @@ -135,6 +125,10 @@ "display_name": "python3", "language": "python", "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.10.12" } }, "nbformat": 4, diff --git a/sec_downloader/__init__.py b/sec_downloader/__init__.py index 82fd4b8..8fa3197 100644 --- a/sec_downloader/__init__.py +++ b/sec_downloader/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.5" +__version__ = "0.1.6" from sec_downloader.core import DownloadStorage, FileContent __all__ = ["DownloadStorage", "FileContent"] diff --git a/sec_downloader/core.py b/sec_downloader/core.py index 8764cf1..d7709b6 100644 --- a/sec_downloader/core.py +++ b/sec_downloader/core.py @@ -4,9 +4,6 @@ __all__ = ['FileContent', 'DEFAULT_FILTER_PATTERN', 'DownloadStorage'] # %% ../nbs/00_core.ipynb 3 -from sec_edgar_downloader import Downloader - -# %% ../nbs/00_core.ipynb 4 import tempfile import shutil from pathlib import Path diff --git a/settings.ini b/settings.ini index 189c12e..d68f5f7 100644 --- a/settings.ini +++ b/settings.ini @@ -1,7 +1,7 @@ [DEFAULT] repo = sec-downloader lib_name = sec-downloader -version = 0.1.5 +version = 0.1.6 min_python = 3.7 license = mit black_formatting = False