An open API service indexing awesome lists of open source software.

https://github.com/izihawa/aiolibgen


https://github.com/izihawa/aiolibgen

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# aiocrossref

Asynchronous client for Libgen API

## Example

```python
import asyncio

from aiolibgen import LibgenClient

async def books(base_url, ids):
client = LibgenClient(base_url)
return await client.by_ids(ids)

response = asyncio.get_event_loop().run_until_complete(books('http://gen.lib.rus.ec', [100500]))
```