A powerful and user-friendly Wagtail plugin that enables you to import images directly from URLs into your Wagtail image library without the need to manually download them first. Perfect for content editors who need to quickly add images from external sources.
- Bulk URL Import: Add multiple images simultaneously by providing multiple URLs in a single form submission.
- Direct Integration: Seamlessly integrates into the Wagtail admin interface
- Real-time Feedback: Inline status indicators show success/failure for each URL
- Beautiful UI: Modern, responsive design with smooth animations and transitions
- Smart Validation: Client-side and server-side URL validation
- File size limit: Each imported image is limited to a maximum size of 10 MB (to avoid excessively large downloads and memory usage).
- Intuitive Interface: Clean, modern UI that follows Wagtail design patterns
- Batch Processing: Submit multiple URLs with a single click
- Dynamic Field Management: Add or remove URL fields on the fly
- Visual Feedback: Success/error messages with icons
- Responsive Design: Works perfectly on desktop and mobile devices
- No Page Reload: AJAX-based submission for smooth user experience
- Python: 3.10 or higher
- Django: 4.2 or higher
- Wagtail: 5.0 or higher
- Additional Dependencies:
requests- For HTTP operationsPillow- For image validation and processing
- Max image size: 10 MB per image (the plugin validates file sizes and will reject images larger than this limit)
Install from PyPI:
pip install wagtail-image-from-urlAlternatively, install from GitHub:
pip install git+https://github.com/awais786/wagtail-image-from-url.git@mainAdd image_url_upload to your Django INSTALLED_APPS in settings.py:
INSTALLED_APPS = [
# ... other apps
'wagtail.images',
'wagtail.search',
'wagtail.admin',
'wagtail',
'image_url_upload', # β Add this line
# ... other apps
]That's it! The package is ready to use. Static files will be automatically discovered by Django's staticfiles system.
-
Navigate to Images: Go to the Wagtail admin and click on "Images" in the sidebar
-
Click "Add an Image from URL": You'll see a new button in the images index page header
-
Enter Image URLs:
- Enter one or more image URLs (you can add multiple URLs in the same form to perform a bulk import).
- Each image must be 10 MB or smaller β larger files will be rejected by the plugin.
- Click "Add Another URL" to add more fields
- Remove unwanted fields using the trash icon
-
Fetch Images: Click the "Fetch All Images" button to import all images at once
- View Results: See real-time status updates next to each URL field
The project includes comprehensive tests. To run them:
# Install test dependencies separately
pip install pytest pytest-django
# Run tests
pytest# Clone the repository
git clone https://github.com/awais786/wagtail-image-from-url.git
cd wagtail-image-from-url
# Create a virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install package in editable mode
pip install -e .
# Install test/development tools (optional)
pip install pytest pytest-django black flake8
# Run tests
pytestThis project is licensed under the MIT License - see the LICENSE file for details.
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Wagtail Slack: Find us in the #packages channel
- β¨ Production-ready release
- β Bulk URL import functionality
- β Real-time status feedback
- β Support for JPEG, PNG, GIF, BMP, and WEBP formats
- β 10 MB file size limit
- β Smart filename extraction with fallbacks
- β Content-type validation
- β Timeout protection (10 seconds)
- β Comprehensive error handling
For detailed changelog, see CHANGELOG.md
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
β Star on GitHub | π Report Bug | π‘ Request Feature
Made with β€οΈ for the Wagtail community
