X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=manga%2Flib.py;h=662ecc37ce87c2bebd475487847532358ab578af;hb=e7cc76067ff041bf8edd6c79f2d96df97c8eaf58;hp=70b3ff94806f68b51e9014aeece7e3c6d82cafa1;hpb=b9e558ac507f4e6c11c8c9837b5bf22b5da90fce;p=automanga.git diff --git a/manga/lib.py b/manga/lib.py index 70b3ff9..662ecc3 100644 --- a/manga/lib.py +++ b/manga/lib.py @@ -149,7 +149,7 @@ class imgstream(object): """Close this stream.""" raise NotImplementedError() - def read(self, sz = None): + def read(self, sz=None): """Read SZ bytes from the stream, or the entire rest of the stream of SZ is not given.""" raise NotImplementedError() @@ -159,8 +159,10 @@ class stdimgstream(imgstream): have no particular implementation requirements.""" def __init__(self, url): - import urllib - self.bk = urllib.urlopen(url) + import urllib.request + req = urllib.request.Request(url, headers={"User-Agent": "automanga/1"}) + print(req) + self.bk = urllib.request.urlopen(req) ok = False try: if self.bk.getcode() != 200: @@ -178,7 +180,7 @@ class stdimgstream(imgstream): def close(self): self.bk.close() - def read(self, sz = None): + def read(self, sz=None): if sz is None: return self.bk.read() else: @@ -218,7 +220,8 @@ class cursor(object): loaded = {} def findlib(name): def load(name): - mod = __import__(name, fromlist=["dummy"]) + import importlib + mod = importlib.import_module(name) if not hasattr(mod, "library"): raise ImportError("module " + name + " is not a manga library") return mod.library()