We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just run the example provided. didn't change anything but got this error
The text was updated successfully, but these errors were encountered:
This happens because of the floor division to calculate the chunk_size returning 0 which is not valid
chunk_size = len(self.stargazers) // self.threads
To work around this you need to set threads to a value that would produce something > 1, for example
crawler = stargazerz.Crawler(threads=7, target="Frikallo/stargazerz")
Sorry, something went wrong.
It work for me too. May be add "threads=7" like default value?
No branches or pull requests
I just run the example provided. didn't change anything but got this error
The text was updated successfully, but these errors were encountered: