Browse Source

Add SiteInfo entries for more recent sites

merge-requests/87/merge
Deimos 5 years ago
parent
commit
7d7ff4a2d5
  1. 8
      tildes/tildes/lib/site_info.py

8
tildes/tildes/lib/site_info.py

@ -38,6 +38,7 @@ SITE_INFO_BY_DOMAIN = {
"abc.net.au": SiteInfo("ABC"),
"aeon.co": SiteInfo("Aeon"),
"aljazeera.com": SiteInfo("Al Jazeera"),
"animenewsnetwork.com": SiteInfo("Anime News Network"),
"apnews.com": SiteInfo("Associated Press"),
"arstechnica.com": SiteInfo("Ars Technica"),
"axios.com": SiteInfo("Axios"),
@ -45,11 +46,13 @@ SITE_INFO_BY_DOMAIN = {
"bbc.co.uk": SiteInfo("BBC"),
"bbc.com": SiteInfo("BBC"),
"bloomberg.com": SiteInfo("Bloomberg"),
"businessinsider.com": SiteInfo("Business Insider"),
"buzzfeednews.com": SiteInfo("BuzzFeed News"),
"cbc.ca": SiteInfo("CBC"),
"citylab.com": SiteInfo("CityLab"),
"cnbc.com": SiteInfo("CNBC"),
"cnn.com": SiteInfo("CNN"),
"dev.to": SiteInfo("DEV"),
"dw.com": SiteInfo("DW"),
"eurogamer.net": SiteInfo("Eurogamer"),
"forbes.com": SiteInfo("Forbes"),
@ -67,8 +70,10 @@ SITE_INFO_BY_DOMAIN = {
"nasa.gov": SiteInfo("NASA"),
"nature.com": SiteInfo("Nature"),
"nbcnews.com": SiteInfo("NBC News"),
"newsweek.com": SiteInfo("Newsweek"),
"newyorker.com": SiteInfo("The New Yorker"),
"npr.org": SiteInfo("NPR"),
"nymag.com": SiteInfo("New York Magazine"),
"nytimes.com": SiteInfo("The New York Times"),
"pinknews.co.uk": SiteInfo("PinkNews"),
"polygon.com": SiteInfo("Polygon"),
@ -82,9 +87,11 @@ SITE_INFO_BY_DOMAIN = {
"sciencemag.org": SiteInfo("Science"),
"seriouseats.com": SiteInfo("Serious Eats"),
"sfchronicle.com": SiteInfo("San Francisco Chronicle"),
"si.com": SiteInfo("Sports Illustrated"),
"slate.com": SiteInfo("Slate"),
"smh.com.au": SiteInfo("The Sydney Morning Herald"),
"soundcloud.com": SiteInfo("SoundCloud", show_author=True, content_type=None),
"spacenews.com": SiteInfo("SpaceNews"),
"techcrunch.com": SiteInfo("TechCrunch"),
"technologyreview.com": SiteInfo("MIT Technology Review"),
"telegraph.co.uk": SiteInfo("The Telegraph"),
@ -92,6 +99,7 @@ SITE_INFO_BY_DOMAIN = {
"theconversation.com": SiteInfo("The Conversation"),
"theguardian.com": SiteInfo("The Guardian"),
"thehill.com": SiteInfo("The Hill"),
"theinformation.com": SiteInfo("The Information"),
"theoutline.com": SiteInfo("The Outline"),
"theverge.com": SiteInfo("The Verge"),
"twitter.com": SiteInfo(

Loading…
Cancel
Save