Skip to main content

No project description provided

Project description

📚 wikipya

A simple async python library for search pages and/or images in Wikipedia.

🚀 Install

To install, run this code:

pip install wikipya

🛠 Usage

# Import wikipya
from wikipya.aiowiki import Wikipya

# Create Wikipya object with wikipedia methods
wiki = Wikipya("en")

# Get a pages list from search
search = wiki.search("test")

# Get a pages list from opensearch
opensearch = wiki.opensearch("test")

# Get page class
# You can give to wiki.page() search item, title of page, page id

# Search item (supported ONLY wiki.search)
page = wiki.page(search[0])

# Page title
page = wiki.page("git")

# Pageid
page = wiki.page(800543)

print(page.html)       # Get page html
print(page.soup)       # Get parsed html (Beatiful Soup 4)
print(page.parsed)     # Get html cleared of link, and other non-formating tags 
print(page.fixed)      # [RU/UK] Свойство, в котором исправлены спорные слова (В/НА, Беларусь)

# Get page image
image = page.image()

print(image.source)    # Image url
print(image.width)     # Image width
print(image.height)    # Image height

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wikipya-3.0.0b4.tar.gz (6.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page