Skip to content

Instantly share code, notes, and snippets.

@offby1
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save offby1/c437374d70c9dddf0b79 to your computer and use it in GitHub Desktop.

Select an option

Save offby1/c437374d70c9dddf0b79 to your computer and use it in GitHub Desktop.
import os
import requests
def POST_in_background(data):
child = os.fork()
if child:
return
requests.post(data)
exit(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment