Siddharth Mathur
Siddharth Mathur
I found the codes in the HTML on JustWatch's website, and parsed through it using Python. The result: you can see most of the provider codes here [sidward35/letterboxd-justwatch#service-codes](https://github.com/sidward35/letterboxd-justwatch#service-codes)
Got it working by changing the CSS selector from `td[width="128"]` to `div[id="screener-total"]` in `finviz/helper_functions/scraper_functions.py` on [line 44](https://github.com/mariostoev/finviz/blob/937a1bc384e19ec6088f8cdc871bec325a353fa0/finviz/helper_functions/scraper_functions.py#L44)
Replacing all instances of `td` with `th` in [finviz/screener.py](https://github.com/mariostoev/finviz/blob/master/finviz/screener.py) fixed it for me.