├── .env.example ├── .github └── workflows │ ├── main.yml │ ├── scrape_chirp_v2.yml │ ├── scrape_dalle.yml │ ├── scrape_gpt4v.yml │ ├── scrape_gpt4v_emotion.yml │ ├── scrape_meta_imagine.yml │ └── scrape_wuerstchen.yml ├── .gitignore ├── LICENSE ├── README.md ├── helpers ├── __init__.py ├── helpers.py └── test_helpers.py ├── requirements.txt ├── scrape_chirp_v2 ├── config.json └── scrape.py ├── scrape_dalle ├── config.json └── scrape.py ├── scrape_gpt4v ├── config.json └── scrape.py ├── scrape_gpt4v_emotion ├── config.json └── scrape.py ├── scrape_meta_imagine ├── config.json └── scrape.py ├── scrape_wuerstchen ├── config.json └── scrape.py └── scraper ├── __init__.py ├── dataset_readme_template.md ├── dataset_readme_template_chirp.md └── scraper_bot.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/scrape_chirp_v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/scrape_chirp_v2.yml -------------------------------------------------------------------------------- /.github/workflows/scrape_dalle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/scrape_dalle.yml -------------------------------------------------------------------------------- /.github/workflows/scrape_gpt4v.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/scrape_gpt4v.yml -------------------------------------------------------------------------------- /.github/workflows/scrape_gpt4v_emotion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/scrape_gpt4v_emotion.yml -------------------------------------------------------------------------------- /.github/workflows/scrape_meta_imagine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/scrape_meta_imagine.yml -------------------------------------------------------------------------------- /.github/workflows/scrape_wuerstchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.github/workflows/scrape_wuerstchen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/README.md -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/helpers/__init__.py -------------------------------------------------------------------------------- /helpers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/helpers/helpers.py -------------------------------------------------------------------------------- /helpers/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/helpers/test_helpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape_chirp_v2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_chirp_v2/config.json -------------------------------------------------------------------------------- /scrape_chirp_v2/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_chirp_v2/scrape.py -------------------------------------------------------------------------------- /scrape_dalle/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_dalle/config.json -------------------------------------------------------------------------------- /scrape_dalle/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_dalle/scrape.py -------------------------------------------------------------------------------- /scrape_gpt4v/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_gpt4v/config.json -------------------------------------------------------------------------------- /scrape_gpt4v/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_gpt4v/scrape.py -------------------------------------------------------------------------------- /scrape_gpt4v_emotion/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_gpt4v_emotion/config.json -------------------------------------------------------------------------------- /scrape_gpt4v_emotion/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_gpt4v_emotion/scrape.py -------------------------------------------------------------------------------- /scrape_meta_imagine/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_meta_imagine/config.json -------------------------------------------------------------------------------- /scrape_meta_imagine/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_meta_imagine/scrape.py -------------------------------------------------------------------------------- /scrape_wuerstchen/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_wuerstchen/config.json -------------------------------------------------------------------------------- /scrape_wuerstchen/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scrape_wuerstchen/scrape.py -------------------------------------------------------------------------------- /scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scraper/__init__.py -------------------------------------------------------------------------------- /scraper/dataset_readme_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scraper/dataset_readme_template.md -------------------------------------------------------------------------------- /scraper/dataset_readme_template_chirp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scraper/dataset_readme_template_chirp.md -------------------------------------------------------------------------------- /scraper/scraper_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAION-AI/Discord-Scrapers/HEAD/scraper/scraper_bot.py --------------------------------------------------------------------------------