python/docs/introduction/adding-more-urls #748
Replies: 3 comments 5 replies
|
nit: the package does not seem to exist in the correct path for latest crawlee version. works in: |
1 reply
|
This means that no new requests will be started after the |
2 replies
|
In the documentation you say that the transform_request function should either return a modified Request or None. But the code example below it does not seem to be consistent as we declare a function with the output signature: def transform_request(
request_options: RequestOptions,
) -> RequestOptions | RequestTransformAction:Is it an issue or am I understanding something wrong? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
python/docs/introduction/adding-more-urls
Previously you've built a very simple crawler that downloads HTML of a single page, reads its title and prints it to the console. This is the original source code:
https://crawlee.dev/python/docs/introduction/adding-more-urls
All reactions