The Crawling Server is an HTTP-based web crawler that delivers data in an easily accessible JSON format.
- No need to rely on tools like yt-dlp or Beautiful Soup for extracting link metadata.
- Metadata is standardized with consistent fields (e.g., title, description, date_published, etc.).
- Eliminates the need for custom HTTP wrappers to access RSS pages, even for sites with poorly configured bot protection.
- Automatically discovers RSS feed URLs for websites and YouTube channels in many cases.
- Simplifies data handling—no more parsing RSS files; just consume JSON!
- Offers a unified interface for all metadata.
- Running a containerized docker environment helps isolate problems from the host operating system
- All your crawling / scraping / rss clients could use one source, or you can split it up by hosting multiple servers
- Encoding? What encoding? All responses are in UTF
Main Available Endpoints:
- GET / - Provides index page
- GET /info - Displays information about available crawlers. Returns JSON with crawler properties.
- GET /infoj - Similar to /info, but explicitly returns the information, in JSON format.
- GET /system - Information about system.
- GET /history - Displays the crawl history.
- GET /historyj - Displays the crawl history, in JSON format.
- GET /debug - debug information
Endpoints:
- GET /get - form for getj Endpoint.
- GET /getj - Crawls a specified page. Returns JSON
- GET /contents - form for contentsr Endpoint
- GET /contentsr - Returns contents of URL, and status code as is
- GET /feeds - form for finding feeds for the specified URL
- GET /feedsj - feeds information JSON
- GET /socialj - Provides social and dynamic information about a specified URL.
- Query parameter: url (string).
- Response: Returns JSON with social data.
- GET /link - form for link information
- GET /linkj - Provides link information - canonical links, etc.
- GET /archivesj - Provides archives links (to web archive etc)
- GET /rssify - form for RSS contents
- GET /rssifyr - returns RSS data for link
Operation Endpoints:
- GET /queue - Displays information about the current queue.
- GET /removej - removes history entry
- GET /find - form for findj Endpoint.
- GET /findj - Retrieves the last crawl information for a specified URL.
- Query parameter: url (string).
- Response: Returns JSON with the last crawl details.
The getj Entpoint request arguments
- url (string): The URL to crawl
- name (optional, string): The name of the crawler
- crawler (optional, string): The crawler type
- crawler_data (optional, dict): Additional data for the crawler
crawler_data is a dict, with settings:
- name (optional, string)
- crawler (optional, string)
- settings (dict)
settings is a dict, with settings:
- Accept (string): accept only specified type of contents. For example text/html can be speified
- User-Agent (string): define user agent for crawler. Crawle can ignore this setting
- timeout_s (int): the amount of time we wait for a page response. Default value is often individually provided for each crawler
- delay_s (int): delay which should be used after visiting a page using crawler. Useful if it is needed to wait for javascript.
- driver_executable (string): string to driver executable. Useful for selenium
- byte_limit (int): content length limit. Sometime I just don't want to download 1GB of data before checking what's in it. Default value is 5MB
- script (string): string informing which script should be used. Useful if ScriptCrawler is used
Fields:
- Properties - general properties, like title, description, thumbnail, language, date_published, feed_url
- Text - text contents of page
- Binary - binary contents of page
- Response - commonly used response fields Provides Content-Type, Content-Length, status_code, etc.
- Headers - all response headers of page. Provides Content-Type, Content-Length, etc.
- Entries - if the link contains subordinate elements, like RSS, this field is populated with their meta data
You can see the structure in Example response file
Some fields need to be decoded from JSON string:
- hash
- body hash
- binary data
base64.b64decode(encoded_string)
Notes:
- Since some things are ambiguous we try to be consistent. For example: server content-type can be upper, or lower-case. This software always uses one strategy
- Some things might be just fixed by project. No Content-Type, but we detected it is text/html, then software provides it in response
- To sum up: the strategy is to fix what can be fixed, to make consistent things that are not
Sure that is quite simple.
For Python RemoteServer has been provided in remoteserver.py file. To obtain all properties it is enough to use the following code:
link = "https://google.com"
server = RemoteServer(server_address)
all_properties = server.get_getj(url=link)
Question: What if someone wants to make two paralell crawling methods, to make crawling faster?
Answer: Not a problem, just call twice /getj Endpoint, with different crawling methods, and use the first received response
Question: Does it support proxy?
Answer: I have provided some initial work for proxy, for Selenium. I do not however use proxies at all, so I have not checked if the code "works". This is crawler software, not a scraper
For enhanced safety and ease of use, it's recommended to use the provided Docker image, as specified in the docker-compose configuration. Running browsers like Selenium within a containerized environment helps isolate them from the host operating system, offering an added layer of security.
Docker image is available at: https://hub.docker.com/r/rozbujnik/crawler-buddy.
Please see init_browser_setup.json to know which crawling methods are supported.
For example available are:
- RequestsCrawler - python requests
- CrawleeScript - crawlee beautifulsoup
- PlaywrightScript - crawlee playwright
- SeleniumUndetected - selenium undetected
- SeleniumChromeHeadless - selenium chrome headless
- SeleniumChromeFull - selenium full mode
- CurlCffiCrawler - curl-cffi crawler
- HttpxCrawler - httpx crawler
- StealthRequestsCrawler - stealth requests
- SeleniumBase - SeleniumBase [disabled]
These methods can be selected for each individual URL for crawling.
Crawling methods like /crawlj can be called with crawl settings, which commonly are:
- name - name of the desired crawler
- crawler - crawler class
- handler_class - handler clas, useful if you want to read an URL using 'HttpPageHandler', as normal vanilla HTTP processing, as if read by a browser
- timeout_s - timout for crawling
No need to select methods manually, as some methods are already predefined and used automatically! Just take a look at entry_rules.json file!
- YouTube - RSS feed discovery, social media data
- HackerNews - social media
- GitHub - social media
- Reddit - RSS feed discovery, social media data
- 4chan - RSS feed discovery
- HTML pages - RSS feed discovery for links
File support
- RSS / atom files
- OMPL files
- HTML files
Repository contains various crawling scripts. All start with 'crawl' prefix.
They can be manually called to see if crawling method works at all.
This repository provides the following programs:
- script_server: An HTTP crawling server.
usage: script_server.py [-h] [--port PORT] [-l HISTORY_LENGTH] [--host HOST]
Remote server options
options:
-h, --help show this help message and exit
-l HISTORY_LENGTH, --history-length HISTORY_LENGTH
Length of history
--host HOST Host