1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-10 13:47:07 -05:00

Added --sleep-interval option

This commit is contained in:
rupertbaxter2
2014-08-03 07:34:04 -07:00
parent 493987fefe
commit 03359e9864
3 changed files with 14 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import codecs
import contextlib
import ctypes
import datetime
import time
import email.utils
import errno
import getpass
@@ -747,6 +748,8 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
del req.headers['User-agent']
req.headers['User-agent'] = req.headers['Youtubedl-user-agent']
del req.headers['Youtubedl-user-agent']
#print("sleeping\n")
#time.sleep(1)
return req
def http_response(self, req, resp):