Created
September 16, 2019 16:41
-
-
Save KalebNyquist/40a527f06631ba583cb03e777b79287a to your computer and use it in GitHub Desktop.
Medium Post Step 4
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
upload_dict = { | |
"fields": { | |
"URL" : article.url, | |
"Title" : article.title, | |
"Date" : publish_date(article), | |
"Author(s)" : article.authors, | |
"Site Name" : article.meta_data['og']['site_name'], | |
"Media" : determine_media(article), | |
"Opinion" : determine_opinion(article), | |
"Keywords" : article.keywords, | |
"Site Twitter" : article.meta_data['twitter']['site'], | |
"Text" : article.text, | |
}, | |
"typecast" : True | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment