You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When searching for companies containing special characters like &. For example when searching for "A & W Tiefbau GmbH" one gets results just for "A", because & is not URL encoded.
A solution would be to convert company_name using urllib.parse.quote_plus(company_name)
The text was updated successfully, but these errors were encountered:
Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from deutschland.bundesanzeiger import Bundesanzeiger
>>>
>>> ba = Bundesanzeiger()
>>>
>>> data = ba.get_reports("A & W Tiefbau GmbH")
>>>
>>> print(len(data))
20
When searching for companies containing special characters like &. For example when searching for "A & W Tiefbau GmbH" one gets results just for "A", because & is not URL encoded.
A solution would be to convert company_name using urllib.parse.quote_plus(company_name)
The text was updated successfully, but these errors were encountered: