python-xbrl
python-xbrl copied to clipboard
xbrl parser written in Python :bulb:
Can you please share this on conda-forge? Let me know if I can assist.
Bumps [lxml](https://github.com/lxml/lxml) from 4.6.5 to 4.9.1. Changelog Sourced from lxml's changelog. 4.9.1 (2022-07-01) Bugs fixed A crash was resolved when using iterwalk() (or canonicalize()) after parsing certain incorrect input. Note...
Ordereddict was used before collections was introduced at Python 2.7. Since Python 2 is no longer supported I feel it's probably safe to remove. Python 2.6 or older users may...
I've run through the setup and tried parsing this google 10-K form: http://www.sec.gov/Archives/edgar/data/1288776/000128877614000020/goog-20131231.xml However when I serialized the data, all values are 0, as seen below. Any idea what's happening...
Running the example in gaap.py returns the error: File "C:\Python27\lib\site-packages\xbrl\xbrl.py", line 80, in parse re.IGNORECASE | re.MULTILINE)).name AttributeError: 'NoneType' object has no attribute 'name'
Great library, but I need help with the following error when executing my code `for filename in reversed(filelist): print("filename", filename) # print("index", index) this_file = {} thisfilename = os.path.join(this_path, filename)...
A lot of this data can be read into pandas dataframes easily. This could be a fun an useful integration.
Is there anyway supported way for parsing through an url instead of a local file? So something like this: ``` url = "http://regnskaber.virk.dk/17438023/eGJybHN0b3JlOi8vWC1DOUZFREM2OC0yMDE0MDUyMV8xMzU2MDdfMTA2L3hicmw.xml" xbrl_parser = XBRLParser(precision=0) xbrl = xbrl_parser.parse(file(url)) ```...
Hello great library! just what i need to monitor historical data for corporates. Unfortunately, out of the gaap_object i cannot get out the common_shares_outsanding, which is what i desperately need....
get_xbrl_data.py:Line #3 > from xbrl import XBRLParser, GAAP, GAAPSerializer xbrl/__init__.py: Line #8 > from .xbrl import XBRLParser, GAAP, GAAPSerializer, XBRLParserException Runtime ERROR: /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 /Users/.../PyCharmprojects/xbrlpy/**get_xbrl_data.py** Traceback (most recent call last): File...