├── LICENSE ├── README.md ├── browser ├── README.md ├── danboorudb.py ├── filterview.py ├── postsFilterView.py ├── screencap_anno.png ├── taglist.py └── tagview.py ├── database ├── README.md ├── check_exists2.py ├── dbquery.py ├── download_missing.py ├── download_pools_metadata.py ├── fix_pool_counts.py ├── import_pools.py ├── makedb.py ├── mark_dups.py ├── notes_table.txt ├── scan_for_dup.py ├── schema.png ├── schema.txt └── total_duplicate_size.py ├── database2021 └── make_db.py ├── reduce ├── duplicates.txt ├── is_deleted.txt ├── no_humans.txt ├── not-image.txt ├── photo.txt └── text_only_page.txt └── tags_by_year ├── readme.txt ├── tags_by_year.csv └── tags_by_year.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/README.md -------------------------------------------------------------------------------- /browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/README.md -------------------------------------------------------------------------------- /browser/danboorudb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/danboorudb.py -------------------------------------------------------------------------------- /browser/filterview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/filterview.py -------------------------------------------------------------------------------- /browser/postsFilterView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/postsFilterView.py -------------------------------------------------------------------------------- /browser/screencap_anno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/screencap_anno.png -------------------------------------------------------------------------------- /browser/taglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/taglist.py -------------------------------------------------------------------------------- /browser/tagview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/browser/tagview.py -------------------------------------------------------------------------------- /database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/README.md -------------------------------------------------------------------------------- /database/check_exists2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/check_exists2.py -------------------------------------------------------------------------------- /database/dbquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/dbquery.py -------------------------------------------------------------------------------- /database/download_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/download_missing.py -------------------------------------------------------------------------------- /database/download_pools_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/download_pools_metadata.py -------------------------------------------------------------------------------- /database/fix_pool_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/fix_pool_counts.py -------------------------------------------------------------------------------- /database/import_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/import_pools.py -------------------------------------------------------------------------------- /database/makedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/makedb.py -------------------------------------------------------------------------------- /database/mark_dups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/mark_dups.py -------------------------------------------------------------------------------- /database/notes_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/notes_table.txt -------------------------------------------------------------------------------- /database/scan_for_dup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/scan_for_dup.py -------------------------------------------------------------------------------- /database/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/schema.png -------------------------------------------------------------------------------- /database/schema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/schema.txt -------------------------------------------------------------------------------- /database/total_duplicate_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database/total_duplicate_size.py -------------------------------------------------------------------------------- /database2021/make_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/database2021/make_db.py -------------------------------------------------------------------------------- /reduce/duplicates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/reduce/duplicates.txt -------------------------------------------------------------------------------- /reduce/is_deleted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/reduce/is_deleted.txt -------------------------------------------------------------------------------- /reduce/no_humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/reduce/no_humans.txt -------------------------------------------------------------------------------- /reduce/not-image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/reduce/not-image.txt -------------------------------------------------------------------------------- /reduce/photo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/reduce/photo.txt -------------------------------------------------------------------------------- /reduce/text_only_page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/reduce/text_only_page.txt -------------------------------------------------------------------------------- /tags_by_year/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/tags_by_year/readme.txt -------------------------------------------------------------------------------- /tags_by_year/tags_by_year.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/tags_by_year/tags_by_year.csv -------------------------------------------------------------------------------- /tags_by_year/tags_by_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fire-eggs/Danbooru2021/HEAD/tags_by_year/tags_by_year.py --------------------------------------------------------------------------------