Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A simple Python module that wraps the meduza.io API. (read about Meduza on Buzzfeed)
pip install meduza
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']}'")
- 'Путина спросили про пенсионную реформу. Он ответил, что ему все не нравится'
- 'В Екатеринбурге открыли барельеф с «условными» Дзержинским и Сталиным (или Кагановичем)'
- 'Новая иллюзия: круги, раскрашенные в четыре разных цвета (на самом деле нет)'
Search articles by key words:
# English version:
>>> for article in meduza.search('Indigenous', n=3, lang='en'):
... print(f" - '{article['title']}'")
- 'Indigenous scholar commits self-immolation in Ural city to protest language death'
- '‘This is the land of our ancestors’'
- 'Trial by fire'
# Russian version:
>>> for article in meduza.search('языка коренного', 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
('новости', 'истории', 'разбор', 'шапито', 'игры', 'подкасты', 'партнерский материал')
FAQs
A simple Python module that wraps the meduza.io API.
We found that meduza demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.