├── .gitignore ├── AGPL-3 ├── LICENSE ├── README.md ├── ansyelfie.png ├── bin └── pspsps ├── pspsps ├── __init__.py ├── http.py ├── safebooru.py └── terminyal.py ├── screenshot-kyonsole.png ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png ├── screenshot4.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *.egg-info/ 4 | __pycache__/ 5 | -------------------------------------------------------------------------------- /AGPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/AGPL-3 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | AGPL-3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/README.md -------------------------------------------------------------------------------- /ansyelfie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/ansyelfie.png -------------------------------------------------------------------------------- /bin/pspsps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/bin/pspsps -------------------------------------------------------------------------------- /pspsps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspsps/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/pspsps/http.py -------------------------------------------------------------------------------- /pspsps/safebooru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/pspsps/safebooru.py -------------------------------------------------------------------------------- /pspsps/terminyal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/pspsps/terminyal.py -------------------------------------------------------------------------------- /screenshot-kyonsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/screenshot-kyonsole.png -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/screenshot2.png -------------------------------------------------------------------------------- /screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/screenshot3.png -------------------------------------------------------------------------------- /screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/screenshot4.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melissaboiko/pspsps/HEAD/setup.py --------------------------------------------------------------------------------