Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Asyncwiki


About

The library for async work with Wikipedia

Some words about library

  • Asynchronous
  • Fast (probably)
  • Parse Wikipedia
  • Can work with databases
  • And it`s all

Installation

You can install asyncwiki from PyPI:

pip install asyncwiki

Quick start

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())

License

Asyncwiki is offered under the MIT license.

About

Asynchronous work with Wikipedia for asyncio and Python

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages