コード例 #1
0
    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
コード例 #2
0
ファイル: run_tests.py プロジェクト: kattekrab/veyepar
 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
コード例 #3
0
ファイル: run_tests.py プロジェクト: EricSchles/veyepar
 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
コード例 #4
0
ファイル: run_tests.py プロジェクト: jamiehand/veyepar
    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
コード例 #5
0
ファイル: run_tests.py プロジェクト: kamni/veyepar
 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
コード例 #6
0
ファイル: run_tests.py プロジェクト: iiie/veyepar
 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