├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── __init__.py ├── config.py ├── data_source ├── .gitignore ├── __init__.py ├── compat.py ├── exception.py ├── image_source.py ├── user_id.py ├── user_info.py └── utils.py ├── default.jpg ├── depends.py ├── exception.py ├── manager.py ├── meme_optional ├── .gitignore ├── cuidao │ └── __init__.py ├── mahoo │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── images │ │ ├── png (怪兽).jpg │ │ ├── png (陷阱).jpg │ │ └── png (魔法).jpg │ └── 华康隶书体W3.TTC └── operations │ └── __init__.py ├── memes_cache_dir └── .gitignore ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/__init__.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/config.py -------------------------------------------------------------------------------- /data_source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/.gitignore -------------------------------------------------------------------------------- /data_source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/__init__.py -------------------------------------------------------------------------------- /data_source/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/compat.py -------------------------------------------------------------------------------- /data_source/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/exception.py -------------------------------------------------------------------------------- /data_source/image_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/image_source.py -------------------------------------------------------------------------------- /data_source/user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/user_id.py -------------------------------------------------------------------------------- /data_source/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/user_info.py -------------------------------------------------------------------------------- /data_source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/data_source/utils.py -------------------------------------------------------------------------------- /default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/default.jpg -------------------------------------------------------------------------------- /depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/depends.py -------------------------------------------------------------------------------- /exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/exception.py -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/manager.py -------------------------------------------------------------------------------- /meme_optional/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/.gitignore -------------------------------------------------------------------------------- /meme_optional/cuidao/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/cuidao/__init__.py -------------------------------------------------------------------------------- /meme_optional/mahoo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/LICENSE -------------------------------------------------------------------------------- /meme_optional/mahoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/README.md -------------------------------------------------------------------------------- /meme_optional/mahoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/__init__.py -------------------------------------------------------------------------------- /meme_optional/mahoo/images/png (怪兽).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/images/png (怪兽).jpg -------------------------------------------------------------------------------- /meme_optional/mahoo/images/png (陷阱).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/images/png (陷阱).jpg -------------------------------------------------------------------------------- /meme_optional/mahoo/images/png (魔法).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/images/png (魔法).jpg -------------------------------------------------------------------------------- /meme_optional/mahoo/华康隶书体W3.TTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/mahoo/华康隶书体W3.TTC -------------------------------------------------------------------------------- /meme_optional/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/meme_optional/operations/__init__.py -------------------------------------------------------------------------------- /memes_cache_dir/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/memes_cache_dir/.gitignore -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/headimg_generator/HEAD/utils.py --------------------------------------------------------------------------------