Hi, I have programmed a HIDS (Host Intrusion Detection System) which is in fichero.py
, I need to run this fichero.py
as a WINDOWS service or in the background permanently WITHOUT BEING ACCESSED TO THE CODE OF fichero.py
.
I use Python 3.6
and I tried to create a WINDOWS service as indicated here: link , however, it seems to be that the import
do not work to me even having installed the requirements, since I believe that in Python 3.6
the name of import
have changed and I do not manage to make it work.
Any way to run fichero.py
permanently in the background without being able to see the source code of fichero.py
?