10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# And a function to add trailings slashes on http URLs.
#
# The latter code is pretty much unreadable. But let's put the
# blame on urllib2, the most braindamaged code in the Python
# standard library.
#
import urllib2
from urllib import urlencode
import config
from channels import __print__
#-- url download ---------------------------------------------
|
|
|
|
>
>
>
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# And a function to add trailings slashes on http URLs.
#
# The latter code is pretty much unreadable. But let's put the
# blame on urllib2, the most braindamaged code in the Python
# standard library.
#
try:
import urllib2
from urllib import urlencode
except:
import urllib.request as urllib2
import urllib.parse.urlencode as urlencode
import config
from config import __print__, dbg
#-- url download ---------------------------------------------
|