omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. max

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    max

    @max

    0
    Reputation
    569
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    max Unfollow Follow

    Latest posts made by max

    • RE: Permission error with multiprocessing.Process

      @JonB thank you! I’m pretty new to python and coding in general so I appreciate your help

      posted in Pythonista
      max
      max
    • RE: Permission error with multiprocessing.Process

      @zrzka yeah. Basically it’s a program that fills and submits out a number of online forms using requests. And i’d Like to run it multiple times in parallel so it can fill multiple forms at a time.

      posted in Pythonista
      max
      max
    • RE: Permission error with multiprocessing.Process

      @zrzka sorry for being vague. I need to run a function multiple times in parallel pretty much

      posted in Pythonista
      max
      max
    • RE: Permission error with multiprocessing.Process

      @zrzka thanks. Do you know of any alternatives that would be supported? I’ve tried threading but it doesn’t do exactly what I need

      posted in Pythonista
      max
      max
    • Permission error with multiprocessing.Process

      I was testing the multiprocessing module and I ran this script on PC and it works fine, but using Pythonista on IOS gives PermissionError: [Errno 1] Operation not permitted. Anyone know how to fix this?

      from multiprocessing import Process
      
      def f(name):
          print('hello', name)
      
      if __name__ == '__main__':
          p = Process(target=f, args=('bob'))
          p.start()
          p.join()
      
      posted in Pythonista
      max
      max