+ 4
How can i design an autorun program for my code?
I have a AI that I have made using rivescript module in python. I want to design/code a program that can autorun the program showing a short notification like screen. I am using Windows. The code can be in any of the following programming languages:- Python C/C++ Java Prolog(PCE).
8 Respostas
+ 9
** in python:
self.condition = True
def autorun(self):
# code to be executed.
if self.condition:
self.after(1000, self.autorun)
+ 5
@Prabhakar Pandey,
How far have you gone on this AI project? mind to share what it is capable of now? is it compiled as .exe file?
Do you already have a plan on how to design this AI launcher? cause it would need to be aware of users activities (input), how would you achieve that?
+ 5
@Prabhakar Pandey, would you share some information about the AI capabilities if you don't mind, I'm interested in such things too.
+ 4
@Ipang
It is an AI so I want it to attract users to itself by sending messages automatically on the computer screen whenever the user does any activity
+ 2
@Prabhakar, sorry for many questions, was just curious, thanks for explaining 8-)
+ 1
@Ipang
It isn't yet in a .exe file. It is in a python file. But I can convert it using pyinstaller. As far as you are talking asking about it, let me first inform you that it is a chatterbot. It can talk to you, search for different things, and I am trying to create some functions that can access the hardware too. I am running it on python's IDLE, and that simply means that I haven't designed a graphical interface yet. If you are interested you can join too
+ 1
would you join?
I am fed up coding alone
0
As far as I know you can achieve this through the "os"-module in Python, just search for it on google :)