Python library for using gdz.ru API
Table of Contents
$ pip install gdzru --upgrade
$ pip install https://github.com/Den4ikSuperOstryyPer4ik/GDZ-py/archive/main.zip --upgrade
from gdzru import AsyncAPI, SyncAPI
async def amain():
"""
Asynchronous using GDZ.ru API
"""
api = AsyncAPI()
# Get info for classes, subjects, books, etc.
info = await api.get_books_list()
# Get info for one book
book_info = await api.get_book(info.books[0].url)
# Print book authors, title, etc.
print("Title:", book_info.book.title)
print("Authors:", ", ".join(book_info.book.authors))
print("Year:", book_info.book.year)
print("Publisher:", book_info.book.publisher)
# Get get first task of first book structure
task_info = await api.get_task(book.structure[0].tasks[0].url)
print("Task title:", task_info.task.title)
# Get images of task
images: list[bytes] = [
await api.get_image(image.url)
for image in task_info.task.editions[0].images
]
def main():
"""
Synchronous using GDZ.ru API
"""
api = SyncAPI()
# Get info for classes, subjects, books, etc.
info = api.get_books_list()
# Get info for one book
book_info = api.get_book(info.books[0].url)
# Print book authors, title, etc.
print("Title:", book_info.book.title)
print("Authors:", ", ".join(book_info.book.authors))
print("Year:", book_info.book.year)
print("Publisher:", book_info.book.publisher)
# Get get first task of first book structure
task_info = api.get_task(book.structure[0].tasks[0].url)
# Print task title
print("Task title:", task_info.task.title)
# Get images of task
images: list[bytes] = [
api.get_image(image.url)
for image in task_info.task.editions[0].images
]
gdzru
is distributed under the terms of the MIT license.