-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for the recent change - change of base url
In order to comply with governmental directives as well as in order to progress with harmonising European insolvency data the online portal insolvenzbekanntmachungen.de saw changes in 2021.
- Loading branch information
1 parent
9e93adb
commit 2726fbe
Showing
5 changed files
with
22 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .InsolvencyAnnouncementsGer import * | ||
from .InsolvencyAnnouncementsGer_summaries import insol_ann_state_summary | ||
|
||
__version__ = '0.1.1' | ||
__version__ = '0.2.1' | ||
__author__ = 'Niall Delventhal' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,20 +3,18 @@ | |
setuptools.setup( | ||
name="InsolvencyAnnouncementsGer", | ||
packages = ["InsolvencyAnnouncementsGer"], | ||
version="0.1.1", | ||
version="0.2.1", | ||
license='MIT', | ||
url="https://github.com/NDelventhal/InsolvencyAnnouncementsGer", | ||
author="Niall Delventhal", | ||
author_email="[email protected]", | ||
description="InsolvencyAnnouncementsGer is a Python library for searching, viewing and scraping public announcements of German bankruptcy courts from https://www.insolvenzbekanntmachungen.de", | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
download_url = 'https://github.com/NDelventhal/InsolvencyAnnouncementsGer/archive/v_011.tar.gz', | ||
download_url = 'https://github.com/NDelventhal/InsolvencyAnnouncementsGer/archive/v_021.tar.gz', | ||
install_requires=["pandas", "requests", "beautifulsoup4"], | ||
classifiers=['Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Development Status :: 3 - Alpha', | ||
# 'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6',], | ||
'Programming Language :: Python :: 3.7',], | ||
) |