A command-line tool to recursively scrape and download all assets (HTML, CSS, JS, images, media) from a public .webflow.io website. It also provides the option to automatically remove the Webflow badge from downloaded JavaScript files.
Caution
- You are solely responsible for how you use the contents of this repository.
- The author does not condone the use of this code for commercial projects or to violate Webflow’s terms of service.
- The author is not affiliated with Webflow Inc. in any way.
- The author assumes no liability or responsibility for any damage, loss, or legal issues resulting from the use of this repository.
If you are unsure about whether your intended use complies with applicable laws or platform terms, please consult legal counsel or refrain from using this repository.
- Recursively scans and downloads:
- All linked internal pages
- Stylesheets, JavaScript, images, and media files from Webflow CDN
- Optional removal of Webflow badge
- Fast processing
- Complete export of site
pip install python-webflow-exporterwebexp --url https://example.webflow.io| Argument | Description | Default | Required |
|---|---|---|---|
--help |
Show a help with available commands | - | ❌ |
--version |
Print the current version | - | ❌ |
--url |
The public Webflow site URL to scrape | – | ✅ |
--output |
Output folder where the site will be saved | out | ❌ |
--remove-badge |
Whether to remove Webflow badge | false | ❌ |
--debug |
Enable debug output | false | ❌ |
--silent |
Enable silent, no output | false | ❌ |
After execution, your specified output folder will contain:
- All crawled HTML pages
- Associated assets like CSS, JS, images, and media
- Cleaned HTML and JS files with Webflow references rewritten
- Optionally removing the webflow badge
Make sure you have Python 3.8+ installed. Required packages are:
- requests
- argparse
- beautifulsoup4
- halo
Optional:
- pyinstaller
- pylint
They are included in requirements.txt.
This project is released under the MIT License.
This tool is provided "as-is" without any warranties. The author is not responsible for misuse or damage caused by this software. For full terms, see DISCLAIMER.md.