Python Wrapper on top of Medium API to quickly extract data from https://medium.com.
Project description
Python Wrapper on top of Medium API (by Nishu Jain) to quickly extract data from Medium’s website (https://medium.com).
Installation
Install from PyPI
$ pip install medium-api
Dependency: ujson
Example
Getting a Medium user’s information and fetching his articles.
from medium_api import Medium
medium = Medium('YOUR_RAPIDAPI_KEY')
user = medium.user(username="nishu-jain")
print(f'{user.fullname} has {user.followers_count} followers.')
user.fetch_articles()
for article in user.articles:
print(article.title)
For more examples, see Usage
How to get your RapidAPI Key
Steps:
Sign up on RapidAPI Platform
Subscribe to Medium-API
Go to the API’s Endpoints tab on the RapidAPI Hub listing and select the API key from the X-RapidAPI-Key dropdown under Header Parameters section.
For more details, see the following links:
Features
Extract/Scrape/Fetch/Get:
Medium User information and User-written Articles
Medium User’s Followers and Following
Medium Articles information
Medium Article’s Textual Content and Markdown
Medium Article’s Responses/Comments
Medium Publications information
Medium Publication’s Articles
Medium’s Top Writers
Medium’s Topfeeds (Trending, Latest, All time best, best of year/month/week)
Medium’s LatestPosts (distributed articles)
Documentation
Full Documentation at https://medium-api.readthedocs.io
Other Materials
Medium REST API:
Swagger Documentation: https://weeping-angel.github.io/medium-api
Related REST API Articles:
Miscellaneous Articles:
How To Leverage Medium for Crypto-trading <https://medium.com/p/deedea890da1>
License
Free software: MIT license
EULA: Terms of Use
Code of Conduct
In the interest of fostering an open and welcoming environment, all contributors, maintainers and users are expected to abide by the Python code of conduct: https://www.python.org/psf/codeofconduct/
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
Built Distribution
Hashes for medium_api-0.2.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ac4730ee188495e5d55f57e7f8116a3fa4aa3c790ffd60d8ca34897c465348a |
|
MD5 | f45a1284d98df8e33f6d5ea64df04760 |
|
BLAKE2b-256 | a7f32344bd09942cc9ad8420907b0d393b5d72a40ef94099a13d679e01c0c277 |