├── .gitignore ├── 2023-12-14 10_44_16-.png ├── 2023-12-31 09_49_35-Kali-Linux-2021.3-vmware-amd64 - VMware Workstation 17 Player (Non-commercial us.png ├── LICENSE.txt ├── Output └── nn.txt ├── banners ├── ascii-art (3).ans ├── ascii-art (3ss.ans ├── ascii-art (4).ans ├── ascii-art (5).ans ├── ascii-art (6).ans ├── ascii-art (7).ans └── ascii-art (8).ans ├── dist ├── pewpew.py └── pyarmor_runtime_000000 │ └── __init__.py ├── icons └── keres.ico ├── keres.py ├── lkeres.py ├── pewpew.go ├── pewpew.py ├── readme.md ├── requirements.txt └── wine-tuto └── wine.md /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /Output -------------------------------------------------------------------------------- /2023-12-14 10_44_16-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/2023-12-14 10_44_16-.png -------------------------------------------------------------------------------- /2023-12-31 09_49_35-Kali-Linux-2021.3-vmware-amd64 - VMware Workstation 17 Player (Non-commercial us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/2023-12-31 09_49_35-Kali-Linux-2021.3-vmware-amd64 - VMware Workstation 17 Player (Non-commercial us.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Output/nn.txt: -------------------------------------------------------------------------------- 1 | usless file 2 | -------------------------------------------------------------------------------- /banners/ascii-art (3).ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (3).ans -------------------------------------------------------------------------------- /banners/ascii-art (3ss.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (3ss.ans -------------------------------------------------------------------------------- /banners/ascii-art (4).ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (4).ans -------------------------------------------------------------------------------- /banners/ascii-art (5).ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (5).ans -------------------------------------------------------------------------------- /banners/ascii-art (6).ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (6).ans -------------------------------------------------------------------------------- /banners/ascii-art (7).ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (7).ans -------------------------------------------------------------------------------- /banners/ascii-art (8).ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/banners/ascii-art (8).ans -------------------------------------------------------------------------------- /dist/pewpew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/dist/pewpew.py -------------------------------------------------------------------------------- /dist/pyarmor_runtime_000000/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/dist/pyarmor_runtime_000000/__init__.py -------------------------------------------------------------------------------- /icons/keres.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/icons/keres.ico -------------------------------------------------------------------------------- /keres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/keres.py -------------------------------------------------------------------------------- /lkeres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/lkeres.py -------------------------------------------------------------------------------- /pewpew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/pewpew.go -------------------------------------------------------------------------------- /pewpew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/pewpew.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama==0.4.6 2 | argparse==1.4.0 3 | Nuitka 4 | pyarmor -------------------------------------------------------------------------------- /wine-tuto/wine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ELMERIKH/Keres/HEAD/wine-tuto/wine.md --------------------------------------------------------------------------------