16 lines
354 B
Python
16 lines
354 B
Python
import requests
|
|
|
|
class GB:
|
|
def __init__(self, api_id, api_hash):
|
|
self.api_id = api_id
|
|
self.api_hash = api_hash
|
|
self.root_url = "https://gelbooru.com/index.php"
|
|
|
|
def get_from_id(self, id_post):
|
|
pass
|
|
|
|
def get_from_md5(self, md5):
|
|
pass
|
|
|
|
def get_binary_file(self, id_post):
|
|
pass |