AGG2017

Results 40 comments of AGG2017

It is working for me. My version is different from the last available here with only 3 fixes: 1. in function `__get_table_headers(self)` was changed as shown in #166 2. in...

``` Python 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from finviz.screener import Screener >>> filters = ['exch_nasd',...

You can wait for a new release but it may take forever. The updates are far behind the new changed done in finviz.com, so it is better to use the...

It might be from a pretty old version of your finviz installation. It is better to remove it first (pip uninstall finviz) and then to install the latest version from...

Instead of the real date they put Today and fast fix at line 113 in main_func.py should be: ``` if 'Today' in raw_timestamp: parsed_timestamp = datetime.now() else: parsed_timestamp = datetime.strptime(raw_timestamp,...

Any feedback? Is it working for you now or you just don't know how to apply the fix?

No, the final result for the function `get_news` should be: ``` def get_news(ticker): """ Returns a list of sets containing news headline and url :param ticker: stock symbol :return: list...

Still no feedback to just say it works, thanks or it doesn't work and to provide the error information. No motivation to waste more of my valuable time on this...

I don't see 'td[width="128"]' in the html content anymore and get_total_rows() fails. My workaround at the moment is this one: ``` def get_total_rows(page_content): """ Returns the total number of rows(results)....

I found a solution that works and I already posted it [here](https://github.com/mariostoev/finviz/issues/176#issuecomment-1675926858)