An open API service indexing awesome lists of open source software.

https://github.com/nguyendangxuanlinh/hacker_news_posts


https://github.com/nguyendangxuanlinh/hacker_news_posts

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Hacker News Exploration
Hacker News is a site started by the startup incubator Y Combinator, where user-submitted stories (known as "posts") receive votes and comments, similar to reddit. Hacker News is extremely popular in technology and startup circles, and posts that make it to the top of the Hacker News listings can get hundreds of thousands of visitors as a result.

# Data Dictionary
id: the unique identifier from Hacker News for the post

title: the title of the post

url: the URL that the posts links to, if the post has a URL

num_points: the number of points the post acquired, calculated as the total number of upvotes minus the total number of downvotes

num_comments: the number of comments on the post

author: the username of the person who submitted the post

created_at: the date and time of the post's submission

# Project's Aim

In this project, we analyzed ask posts and show posts to determine which type of post and time receive the most comments on average.

# Python skills
Object-oriented programming

Dates and times

Extract Ask HN and Show HN posts

The relationship between ask posts and comments by hour created

Sorting Values from a List of Lists