An ultimate, lightning-fast image fetcher that bypasses Cloudflare and anti-bot servers.
Project description
📸 Aura Image Fetcher (aura-image-fetcher)
Aura Image Fetcher is an insanely fast, anti-bot-bypassing Python library designed specifically to download and fetch images from any URL, completely ignoring Cloudflare, referer protections, and firewall blocks.
It achieves speeds of fractions of a second by keeping a totally invisible (headless) Native Chromium engine running in the background. When an image is requested, it directly extracts the raw image bytes from the browser's memory via HTML5 Canvas, bypassing Python's network stack entirely to evade ISP blocks, Antivirus MITM, and Cloudflare!
🚀 Key Features
- Extreme Speed: Downloads images in fractions of a second.
- Bypass Cloudflare & ISP Blocks: Uses a real browser engine natively, so your ISP or Antivirus cannot intercept and drop the connection like they do with
requestsorcurl. - All Formats Supported: Extracts PNG, JPG, WEBP, AVIF, and more directly from memory.
- Auto-Hotlink Bypass: Bypasses hotlink protections naturally.
📦 Installation
pip install aura-image-fetcher
💻 Usage
from aura_image_fetcher import AuraImageFetcher
# Initialize the fetcher (set debug=True to see the magic happening)
fetcher = AuraImageFetcher(debug=True)
# 1. Save an image directly to your disk
success = fetcher.save_image(
image_url="https://example.com/protected_image.jpg",
save_path="my_images/test.jpg"
)
# 2. Or, fetch the raw image bytes to process in memory (e.g., for AI Vision models)
image_bytes = fetcher.fetch_image("https://example.com/protected_image.jpg")
if image_bytes:
print(f"Downloaded {len(image_bytes)} bytes!")
🧠 Why is it so formidable?
Most image servers block bots by checking the TLS fingerprint or checking if the request came from their own website. AuraImageFetcher intelligently reconstructs a perfect Chrome header and dynamically spoofs the origin website, forcing the server to surrender the image immediately!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aura_fetch-1.0.0.tar.gz.
File metadata
- Download URL: aura_fetch-1.0.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bac5bf58c89e9e286f2b8607ff1bb11ce3518a9c0984218b81f36ea02900a6a
|
|
| MD5 |
1e3f6fc224b46050be57e6d2130be192
|
|
| BLAKE2b-256 |
f9004cafe65373d2ca95e4da1a0495d0124ca1827017e668b3a2e3bfb628cce3
|
File details
Details for the file aura_fetch-1.0.0-py3-none-any.whl.
File metadata
- Download URL: aura_fetch-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85298436135d3445cb70902f6ae005a5db899fcee14cbf351b77951805b5d779
|
|
| MD5 |
c6d5cb8a3fc49a22c254404c079ca2bb
|
|
| BLAKE2b-256 |
612394ef092aa88f5568783409c104e04127c2534c24d1e22e500df83f83e6f5
|