├── LICENSE ├── README.md ├── README_zh-CN.md ├── app.py ├── images └── readme.md ├── prompt_sender.py ├── requirements.txt ├── sender_params.json ├── upsender.py └── url_receiver.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/app.py -------------------------------------------------------------------------------- /images/readme.md: -------------------------------------------------------------------------------- 1 | 这里是图片缓存目录 2 | -------------------------------------------------------------------------------- /prompt_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/prompt_sender.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /sender_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/sender_params.json -------------------------------------------------------------------------------- /upsender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/upsender.py -------------------------------------------------------------------------------- /url_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialRipple/Midjourney-Web-API/HEAD/url_receiver.py --------------------------------------------------------------------------------