Coder Social home page Coder Social logo

sd3v / openinsiderdata Goto Github PK

View Code? Open in Web Editor NEW
25.0 3.0 6.0 45 KB

An Openinsider Scraper written in Python. Get the full Database behind the infamous SEC site :)

Python 93.49% Dockerfile 6.51%
insider-trading python scraping-python openinsider

openinsiderdata's People

Contributors

santiago-mooser avatar sd3v avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

openinsiderdata's Issues

If date has no data, scripts exits with error

See:

Traceback (most recent call last):
  File "/daily.py", line 76, in <module>
    get_openinsider_data()
  File "/daily.py", line 59, in get_openinsider_data
    all_data.extend(future.result())
                    ^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/concurrent/futures/_base.py", line 456, in result
    return self.__get_result()
           ^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.12/concurrent/futures/_base.py", line 401, in __get_result
    raise self._exception
  File "/usr/local/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/daily.py", line 35, in get_data_for_date
    rows = soup.find('table', {'class': 'tinytable'}).find('tbody').findAll('tr', recursive=False)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'find'

This can be fixed if this line is split into two and a None check is made:

    # Find all the rows in the table on the website
    rows = soup.find('table', {'class': 'tinytable'}).find('tbody').findAll('tr', recursive=False)

Like this:

    tinytable = soup.find('table', {'class': 'tinytable'})

    if tinytable is None
        print(f"No data for {date_string}")
    return data

    # Find all the rows in the table on the website
    rows = tinytable.find('tbody').findAll('tr', recursive=False)

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.