
Website Content Crawler
Pricing
Pay per usage

Website Content Crawler
Crawl websites and extract text content to feed AI models, LLM applications, vector databases, or RAG pipelines. The Actor supports rich formatting using Markdown, cleans the HTML, downloads files, and integrates well with 🦜🔗 LangChain, LlamaIndex, and the wider LLM ecosystem.
4.5 (39)
Pricing
Pay per usage
1382
Total users
53K
Monthly users
7.8K
Runs succeeded
>99%
Issues response
6.8 days
Last modified
2 days ago
How to set the run options using the python api?
Closed
Hi! I'd like the actor to run 8gb RAM. May I know how I can do this programmatically through Python?
Hello and thank you for your interest in this Actor!
You can set the memory for a given Actor run by using the optional named argument memory_mbytes
in the call()
method. So, for example, you can run this Actor with 8GB of RAM by calling client.actor("aYG0l9s7dbB7j3gbS").call(run_input=run_input, memory_mbytes=8192)
.
Note that the memory limit for the run is not a part of the Actor input, but a separate parameter for the call()
method. If you need some more help setting up the Apify Python Client, check out the examples in API > API Clients > Python
(or feel free to ask here). If you're having a hard time finding the tab, see the attached GIF.
Thanks!