Created
December 19, 2020 03:22
-
-
Save onelharrison/84d29c90d3b93613a848ad8c3a8ccd67 to your computer and use it in GitHub Desktop.
Medium story data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
from typing import Optional | |
@dataclass | |
class MediumStory: | |
title: str | |
description: str | |
body: str | |
published_at: int | |
featured_image_url: Optional[str] = None | |
views_30days: int | |
reads_30days: int | |
fans_30days: int | |
top_comment_author: Optional[str] = None | |
top_comment_body: Optional[str] = None | |
updated_at: int | |
story = {"title": "Improving Code Quality in Python Codebases", | |
"description": "...", | |
"body": "...", | |
"published_at": 1608346617, | |
"image": { | |
"image_url_medium": "https://cdn.images.site/medium.png", | |
"image_url_small": "https://cdn.images.site/small.png", | |
}, | |
"stats": { | |
"views_30days": 30, | |
"reads_30days": 28, | |
"fans_30days": 10, | |
}, | |
"top_comments": [ | |
{"author": "@alanajones", | |
"body": "..."}, | |
{"author": "@jacksparrow", | |
"body": "..."}, | |
{"author": "@peterwest", | |
"body": "..."}, | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment