
- Added type hinting (for now, 3.5-compatible) - Split `db` namespace into `db` module and `model` namespace - Changed elastic search to be created lazily for each operation - Changed to class based approach in entity serialization to allow stronger typing - Removed `required` argument from `context.get_*` family of functions; now it's implied if `default` argument is omitted - Changed `unalias_dict` implementation to use less magic inputs
14 lines
387 B
Python
14 lines
387 B
Python
import urllib.request
|
|
from szurubooru import errors
|
|
|
|
|
|
def download(url: str) -> bytes:
|
|
assert url
|
|
request = urllib.request.Request(url)
|
|
request.add_header('Referer', url)
|
|
try:
|
|
with urllib.request.urlopen(request) as handle:
|
|
return handle.read()
|
|
except Exception as ex:
|
|
raise errors.ProcessingError('Error downloading %s (%s)' % (url, ex))
|