Skip to content

Instantly share code, notes, and snippets.

@KalebNyquist
Created September 16, 2019 16:41
Show Gist options
  • Save KalebNyquist/40a527f06631ba583cb03e777b79287a to your computer and use it in GitHub Desktop.
Save KalebNyquist/40a527f06631ba583cb03e777b79287a to your computer and use it in GitHub Desktop.
Medium Post Step 4
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