useragents / Zefoy-TikTok-Automator

💥 TikTok Follower, Like, View, Share Bot and MORE
947 stars 225 forks source link

Fix RuntimeError #51

Closed DJJ05 closed 1 year ago

DJJ05 commented 1 year ago

The current code triggers this exception from multiprocessing on 3.10:

File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/multiprocessing/spawn.py", line 134, in _check_not_importing_main
    raise RuntimeError('''
RuntimeError: 
        An attempt has been made to start a new process before the
        current process has finished its bootstrapping phase.

        This probably means that you are not using fork to start your
        child processes and you have forgotten to use the proper idiom
        in the main module:

            if __name__ == '__main__':
                freeze_support()
                ...

        The "freeze_support()" line can be omitted if the program
        is not going to be frozen to produce an executable.

Wrapping in some _name_\ boilerplate fixes the problem