Joshua Lochner

Results 412 comments of Joshua Lochner

This repo supports 4-bit quantization: https://github.com/ggerganov/llama.cpp (And, as stated in the [README](https://github.com/ggerganov/llama.cpp#description), it runs on the CPU) Also, considering that WASM uses a 32-bit address space (i.e., max 4GB), the...

I think I figured it out. By default, pytrends doesn't supply a user agent, so it uses the default one. This causes the request to be blocked. I propose allowing...

Looks like no user-agent is specified in the requests, meaning they are blocked more often. I fixed it here: https://github.com/GeneralMills/pytrends/commit/18f230dd69c2cd89c203c967ac139a8218975f4d

I also added a commit to fix an issue where users cannot specify headers in `requests_args`. This allows for a user-agent to be specified, which alleviates 429 errors.

Example usage: ```python from pytrends.request import TrendReq requests_args = { 'headers': { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36' } } # Only need...

@gilbertovilarunc Changing the user agent might help, but if you are still getting 429 issues with a custom user-agent, you are most likely getting blocked due to an excessive number...

I have been summoned 👀 I'll try get this working ASAP. 👍

I created a draft PR. It was actually quite simple... medal now doesn't perform a separate request to get the initial video data. *NOTE* I have 2 TODOs (I can't...