def post_blip(self): # post it to blip test account (password is in pw.py) import post_blip as post p = post.post() p.set_options( upload_formats=self.upload_formats, debug_log=True, ) p.main() # post.py does: self.last_url = post_url.text # self.run_cmd(["firefox",p.last_url]) return p.las
def post_blip(self): # post it to blip test account (password is in pw.py) import post_blip as post p=post.post() p.set_options( upload_formats=self.upload_formats, debug_log=True, ) p.main() # post.py does: self.last_url = post_url.text # self.run_cmd(["firefox",p.last_url]) return p.las
def post_yt(self): # post it to youtube test account (password is in pw.py) import post_yt as post p=post.post() p.set_options( upload_formats=self.upload_formats, debug_log=True, ) p.private=True p.main() # post.py does: self.last_url = post_url.text # print p.last_url # self.run_cmd(["firefox",p.last_url]) return p.last_url
def post_yt(self): # post it to youtube test account (password is in pw.py) import post_yt as post p = post.post() p.set_options( upload_formats=self.upload_formats, debug_log=True, ) p.private = True p.main() # post.py does: self.last_url = post_url.text # print p.last_url # self.run_cmd(["firefox",p.last_url]) return p.last_url
def post_blip(self): # post it to blip test account (password is in pw.py) """ python post.py -v --client test_client --show test_show \ --blip-user veyepar_test # --force \ # --hidden=1 """ import post_blip as post p=post.post() p.set_options(force=True, verbose=True, upload_formats=self.upload_formats, debug_log=True, ) p.main() # post.py does: self.last_url = post_url.text # self.run_cmd(["firefox",p.last_url]) return p.las
def post_yt(self): # post it to youtube test account (password is in pw.py) """ python post.py -v --client test_client --show test_show \ --blip-user veyepar_test # --force \ # --hidden=1 """ import post_yt as post p=post.post() p.set_options(force=True, verbose=True, upload_formats=['mp4', "dv"], debug_log=True, host_user="******", ) p.private=True p.main() # post.py does: self.last_url = post_url.text # print p.last_url # self.run_cmd(["firefox",p.last_url]) return p.last_url