NOTE: This project is still in early development. Contributions to this project are greatly welcome.
Carnivore is a simple tool that listens to your web page article archiving needs, removes clutter in the web pages, converts to various file formats, and does whatever you like to deal with converted files. You can combine this tool with your favorite document reader to read, comment, and modify articles.
Owning your data is important. Saving your data with open formats is also important.
- Trigger web page archiving by various methods.
- Paste a URL to the interactive CLI.
- Send a URL to a Telegram bot or a Telegram channel with a Telegram bot involved.
- (More triggering methods could be added as needed.)
- Archive the web page with various formats.
- A single HTML file with all CSS/JavaScript/image/... resources included. Looks exactly like the original web page.
- A polished version of the above HTML file that removes clutter and only keeps the article content.
- A Markdown version of the polished web page.
- A PDF document of the original web page.
- (More formats like whole page image could be added as needed.)
- Process the generated files the way you like.
- Upload files to a GitHub repo.
- Call a customized post-processing script written by yourself.
- (More post-processing methods could be added as needed.)
Supported output formats:
markdown
: The article content in Markdown format.html
: The article content in HTML format.full_html
: The full web page in HTML format.pdf
: The full web page in PDF format.
Output formats could be customized by setting the CARNIVORE_OUTPUT_FORMATS
environment variable. e.g. markdown,html,full_html
(split by ,
). Default: markdown
.
There are multiple ways to use Carnivore. Here are some examples:
-
Start Carnivore.
git clone https://github.com/kfstorm/carnivore.git cd carnivore docker run --rm -it -v ./data:/app/data $(docker build . --quiet)
-
Paste a URL to the interactive CLI. The bot will process the URL and save the web page in Markdown format in the
data
directory.
-
Start Carnivore.
git clone https://github.com/kfstorm/carnivore.git cd carnivore args=( -e CARNIVORE_APPLICATION=telegram-bot -e CARNIVORE_TELEGRAM_TOKEN=... -e CARNIVORE_TELEGRAM_CHANNEL_ID=... # optional. If you want to restrict the bot to a specific channel. ) docker run --rm -it "${args[@]}" -v ./data:/app/data $(docker build . --quiet)
-
Send a URL to the Telegram bot or a channel with the Telegram bot. The bot will process the URL and save the web page in Markdown format in the
data
directory.
You can customize the post-processing by:
- Choose a pre-defined post-processing command.
- Write your post-processing command and mount it into the container.
To configure the post-processing command, set the CARNIVORE_POST_PROCESS_COMMAND
environment variable. The command should be a shell command.
e.g. To use the pre-defined post-processing command to upload the generated files to a GitHub repository:
args=(
-e CARNIVORE_POST_PROCESS_COMMAND=post-process/upload_to_github.sh
-e CARNIVORE_GITHUB_REPO=username/repo_name
-e CARNIVORE_GITHUB_BRANCH=master # optional.
-e CARNIVORE_GITHUB_REPO_DIR=path/in/repo
-e CARNIVORE_GITHUB_TOKEN=...
-e CARNIVORE_OUTPUT_FORMATS="markdown,html,full_html,pdf" # optional. upload multiple formats of the web page.
-e CARNIVORE_MARKDOWN_FRONTMATTER_KEY_MAPPING="url:url,title:title" # optional. you may want to add frontmatter at the beginning of the Markdown file.
-e CARNIVORE_MARKDOWN_FRONTMATTER_ADDITIONAL_ARGS="--timestamp-key date-created" # optional. you may want to add the timestamp to the frontmatter.
-e TZ=Asia/Shanghai # optional. you may want to customize the timezone.
)
docker run --rm -it "${args[@]}" $(docker build . --quiet)
-
applications/interactive-cli: An interactive CLI tool that reads URLs pasted in the terminal, archives webpages using Carnivore Lib, and invokes a post-processing command for further processing.
-
applications/telegram-bot: A Telegram bot that listens for URLs in messages sent to the bot or sent to a channel with the bot, archives webpages using Carnivore Lib, and invokes a post-processing command for further processing.
- carnivore-lib/: The main code for web page archiving purposes. It converts web pages to various formats.
- Tools used:
- monolith: Save a web page as a single HTML with all resources embedded. The saved HTML page looks exactly like the online version.
- readability: Extract the article content from a web page.
- pandoc: Convert between various formats, including HTML and Markdown.
- post-process/update_files.sh: A script that updates the content of the generated files (mainly used to add frontmatter to the generated Markdown file).
- post-process/upload_to_github.sh: A script that uploads the generated files to a GitHub repository.