├── Antivirus.py ├── LICENSE ├── README.md ├── hard_signatures ├── SHA256-Hashes_pack1.txt ├── SHA256-Hashes_pack2.txt └── SHA256-Hashes_pack3.txt ├── res ├── Settings │ └── check.svg ├── SideBar │ ├── home.svg │ └── settings.svg ├── ico │ ├── AntiVirus_ico.ico │ └── AntiVirus_ico.svg ├── res_rc.py └── themes │ ├── dark_red.xml │ └── light_pink.xml └── settings └── settings.ini /Antivirus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/Antivirus.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/README.md -------------------------------------------------------------------------------- /hard_signatures/SHA256-Hashes_pack1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/hard_signatures/SHA256-Hashes_pack1.txt -------------------------------------------------------------------------------- /hard_signatures/SHA256-Hashes_pack2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/hard_signatures/SHA256-Hashes_pack2.txt -------------------------------------------------------------------------------- /hard_signatures/SHA256-Hashes_pack3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/hard_signatures/SHA256-Hashes_pack3.txt -------------------------------------------------------------------------------- /res/Settings/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/Settings/check.svg -------------------------------------------------------------------------------- /res/SideBar/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/SideBar/home.svg -------------------------------------------------------------------------------- /res/SideBar/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/SideBar/settings.svg -------------------------------------------------------------------------------- /res/ico/AntiVirus_ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/ico/AntiVirus_ico.ico -------------------------------------------------------------------------------- /res/ico/AntiVirus_ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/ico/AntiVirus_ico.svg -------------------------------------------------------------------------------- /res/res_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/res_rc.py -------------------------------------------------------------------------------- /res/themes/dark_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/themes/dark_red.xml -------------------------------------------------------------------------------- /res/themes/light_pink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/res/themes/light_pink.xml -------------------------------------------------------------------------------- /settings/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Len-Stevens/Python-Antivirus/HEAD/settings/settings.ini --------------------------------------------------------------------------------