1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Supported Websites
!!! success "Join Our Community"
🌟 Want to add your favorite recipe site? We'd love your help!
- 📖 Check our [contributing guidelines](../contributing/home.md)
- 🐛 Found a bug? [Open an issue](https://github.com/hhursev/recipe-scrapers/issues)
- 🚀 Ready to contribute? [Submit a pull request](../contributing/setup.md)!
```python exec="on"
import sys
sys.path.insert(0, '.')
from recipe_scrapers import SCRAPERS
sites = sorted(SCRAPERS.keys())
print(f"## What we offer?")
print(f"We currently support over **{len(sites)} popular recipe websites** out of the box! And with our `wild_mode` option, you can potentially scrape many more sites that follow common patterns - making this probably the most extensive recipe scraping library available.\n")
print(f"## Supported Sites List\n")
print("\n".join(f"- [{host}](https://{host}/)" for host in sites))
```
|