Exemplo n.º 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
Exemplo n.º 2
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
Exemplo n.º 3
0
 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
Exemplo n.º 4
0
    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
Exemplo n.º 5
0
 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
Exemplo n.º 6
0
 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