├── .claude └── settings.local.json ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── assets ├── showimage-web-demo.png └── showimage-web-demo1.png ├── docker-compose.yml ├── requirements.txt └── saved_gallery ├── gallery.json └── images ├── 1764590630.png ├── 1764590687.png └── 1764591139.png /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/app.py -------------------------------------------------------------------------------- /assets/showimage-web-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/assets/showimage-web-demo.png -------------------------------------------------------------------------------- /assets/showimage-web-demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/assets/showimage-web-demo1.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | requests 3 | cloudscraper -------------------------------------------------------------------------------- /saved_gallery/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/saved_gallery/gallery.json -------------------------------------------------------------------------------- /saved_gallery/images/1764590630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/saved_gallery/images/1764590630.png -------------------------------------------------------------------------------- /saved_gallery/images/1764590687.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/saved_gallery/images/1764590687.png -------------------------------------------------------------------------------- /saved_gallery/images/1764591139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaima2022/ShowImageWeb/HEAD/saved_gallery/images/1764591139.png --------------------------------------------------------------------------------