I am currently working on a random characters generator which use multiprocessing to accelerate the process. I use
if __name__ == "__main__":
to avoid the whole code to run multiple time, but whenever I use auto py to exe to compile it and run it, it just runs the code multiple times.
How could I avoid that?
Thanks!