mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-25 12:24:20 +01:00
15 lines
333 B
Python
15 lines
333 B
Python
import json
|
|
import pkgutil
|
|
|
|
|
|
def get_resource(filename):
|
|
return pkgutil.get_data(__package__, 'data/' + filename)
|
|
|
|
|
|
categories = json.loads(get_resource('categories.json').decode())
|
|
sorts = json.loads(get_resource('sorts.json').decode())
|
|
|
|
default_headers = {'User-Agent': 'pirate get'}
|
|
default_timeout = 10
|
|
colored_output = True
|