mgebbe@43: #!/usr/bin/env python mgebbe@43: mgebbe@43: import urllib2 mgebbe@43: import simplejson mgebbe@43: import time mgebbe@43: mgebbe@43: # SETTINGS mgebbe@43: teichmann@49: user = "dive4elements-test" teichmann@49: url = "http://io.intevation.de/api/user/%s/feed/public" % user mgebbe@43: verb = "share" # post or share mgebbe@43: max_posts = 5 mgebbe@43: max_length = 350 mgebbe@43: opacity75 = 20 mgebbe@43: ocacity50 = 10 mgebbe@43: mgebbe@43: # END SETTINGS mgebbe@43: mgebbe@43: output = [] mgebbe@43: teichmann@49: oa = output.append mgebbe@43: teichmann@49: postcount = 1 teichmann@49: teichmann@49: oa('") teichmann@49: body = ''.join(output) mgebbe@43: mgebbe@43: print "Content-Type: text/html;charset=utf-8" mgebbe@43: print teichmann@49: print body mgebbe@43: