Jindřich Bär

Results 108 comments of Jindřich Bär

Circling back to this, the linked PR enables the `onBrokenLinks: 'throw'` option, but... well, it uncovers [lots of broken anchors](https://github.com/apify/apify-docs/actions/runs/10767831114/job/29855852050?pr=1190#step:5:112). idk whose turf it is now (@TC-MO / @honzajavorek). Looking...

Ah, now I see - it's a duplicate of #104. For what it's worth, I still believe this is how the authentication should be handled, as any other client I...

Following the in-office discussion, I'm sharing this here, so we can refer to it: The current API reference for Python projects is an [amalgamation](https://github.com/apify/apify-sdk-python/blob/master/website/build_api_reference.sh) of `pydoc-markdown`, existing tools we have...

(Marginally) related to https://github.com/apify/crawlee/issues/2717 - we might want to use something like e.g. JSDoc's [`{@link Dataset}`](https://jsdoc.app/tags-inline-link). In the best case, we'd like to render clickable links both in IDEs and...

This is because `ApifyEventManager` (SDK-defined symbol) inherits from `LocalEventManager` (Crawlee-defined symbol). While symbol reexports from other Docusaurus instances work (via the `"reexports"` field in `docusaurus.config.js` - this is how `LocalEventManager`...

Thanks for the points! > `await RequestQueue.openTemporary("some-name")` I like it, apart from the fact that this would make `RequestQueue.openTemporary("default")` and `RequestQueue.open()` (and `RequestQueue.open(null)`) equal... I'm not sure if it's a...

Adding the HTTP Clients guide to docs in #3301. This closes this issue for me, as the root README is copied for all the sub-packages by design in [copy.ts](https://github.com/apify/crawlee/blob/6ff48da542a6b78e582e1f3dc0ead5359de9a6c3/scripts/copy.ts#L116). Imo...

Imo the minimal reproduction scenario is here: ```javascript import { setTimeout } from "timers/promises"; import { Configuration, RequestQueueV2 } from '@crawlee/core'; import { Worker, isMainThread } from 'worker_threads'; async function...

Note that implementing this wouldn't be as easy as widening the type annotation, as the `RequestQueue` stores the requests serialized in JSON files. The only idea I have here is...

Hello, and thank you for your interest in this project! It seems that the network proxying layer in Crawlee ([proxy-chain](https://github.com/apify/proxy-chain)) exhibits different behaviour than a regular browser while loading the...