archiving community contributions on YouTube: unpublished captions, title and description translations and caption credits
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

7 satır
315 B

  1. import http3
  2. def get(url: str, params: tuple = (), backend="requests", mysession=None, http3headers: dict ={}):
  3. if backend == "requests":
  4. return mysession.get(url, params=params)
  5. elif backend == "http3":
  6. #print(http3headers)
  7. return http3.get(url, headers=http3headers, params=params)