Some words about library
- Asynchronous
- Fast (probably)
- Parse Wikipedia
- Can work with databases
- And it`s all
You can install asyncwiki from PyPI:
pip install asyncwiki
A little example of library work:
import asyncio
from asyncwiki import WikiSearcher
wiki_searcher = WikiSearcher()
async def main():
query = "Apple"
lang = "en"
result = await wiki_searcher.search(query, lang)
print(result)
if __name__ == "__main__":
asyncio.run(main())
Asyncwiki is offered under the MIT license.