File: supported-sites.md

package info (click to toggle)
python-recipe-scrapers 15.9.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 246,580 kB
  • sloc: python: 13,214; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 909 bytes parent folder | download | duplicates (2)
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))
```