Giter Club home page Giter Club logo

Comments (3)

mrx23dot avatar mrx23dot commented on July 2, 2024

Any ideas before I do a big run? Cheers

from py-xbrl.

manusimidt avatar manusimidt commented on July 2, 2024

Hello @mrx23dot ,

i have looked into the filing you provided and was able to successfully extract the two facts tagged with "dei:EntityCommonStockSharesOutstanding". One concept has the member "CommonClassAMember" the other "CommonClassBMember".

This was the code i used:

cache: HttpCache = HttpCache('./cache')
xbrlParser = XbrlParser(cache)

inst: XbrlInstance = xbrlParser.parse_instance(
    'https://www.sec.gov/Archives/edgar/data/0001751143/000121390021027034/f10q0321_atlastechnical.htm')
print(inst)
facts: list = []

for fact in inst.facts:
    if fact.concept.name == 'EntityCommonStockSharesOutstanding':
        facts.append(fact)
print(facts)

In this screenshot you can see how the parsed facts correspond with the iXBRL Viewer of the SEC.

image

You can use this code to print out the facts with their corresponding dimensions/members

for fact in facts:
    print(f"{fact.concept.name}: {fact.value} ({fact.context.segments[0].member if len(fact.context.segments) > 0 else ''})")

Please let me know if that works for you :)
Greetings,
Manu

from py-xbrl.

mrx23dot avatar mrx23dot commented on July 2, 2024

Works great it was hidden away :D Thanks!

The structural filtering (like cover/balance/cashflow section) would be a great addition.
Currently I query for number of shares and it gives me back 4+ different results all over the doc and no way telling which one is front cover and which one is from textblob or subsidiary.

from py-xbrl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.