A simple Python module that wraps the meduza.io API.
Project description
Meduza
A simple Python module that wraps the meduza.io API. (read about Meduza on Buzzfeed)
Installation
pip install meduza
Usage
Get an article:
>>> url = "https://meduza.io/en/brief/2018/07/16/the-real-russia-today"
>>> article = meduza.get(url)
>>> article["title"]
'The Real Russia. Today.'
>>> article["second_title"]
"Trump and Putin meet in Helsinki, the ‘Deep State’ consensus, and Pussy Riot's heart-to-heart with the police"
Get the latest articles on this section:
# English version:
>>> for article in meduza.section('news', n=3, lang='en'):
... print(f" - '{article['title']}'")
- 'Chechnya’s ruler has a stable full of prize-winning race horses, but you’d never know it, looking at his income declarations'
- 'Russian musicians are being forced to cancel their concerts across the country, which makes now the perfect time to listen to their music'
- 'The Real Russia. Today.'
# Russian version:
>>> for article in meduza.section('news', n=3, lang='ru'):
... print(f" - '{article['title']}'")
- 'Путина спросили про пенсионную реформу. Он ответил, что ему все не нравится'
- 'В Екатеринбурге открыли барельеф с «условными» Дзержинским и Сталиным (или Кагановичем)'
- 'Новая иллюзия: круги, раскрашенные в четыре разных цвета (на самом деле нет)'
You can find available tags and sections in constants:
>>> meduza.EN_SECTIONS
'news'
>>> meduza.EN_TAGS
('news', 'like it or not', 'games')
>>> meduza.RU_SECTIONS
('news', 'articles', 'shapito', 'razbor', 'games', 'podcasts')
>>> meduza.RU_TAGS
('новости', 'истории', 'разбор', 'шапито', 'игры', 'подкасты', 'партнерский материал')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
meduza-18.12.1.tar.gz
(4.1 kB
view details)
File details
Details for the file meduza-18.12.1.tar.gz
.
File metadata
- Download URL: meduza-18.12.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99caec2d5400c6d398bd475b8b74e68ae4b875a9ebbcd329400acaa416bb74dd |
|
MD5 | 627edeebcf5de6bf0635dc99757aac3c |
|
BLAKE2b-256 | b85ce81af801fc9d11cac7fa63d646e109d96b0bc8a3819f222676b6e19f9552 |