Skip to content

KarimTawfik17/Logs-Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Logs Analysis

Logs analysis is a basic python code connected to database acts as a reporting tool that will use information from the database to discover what kind of articles the site's readers like. -- this is project is part of the full stack web developer nano degree by Udacity --

Prerequisities

Installation

  • download the data here
  • run psql -d news -f newsdata.sql.
  • run the logs_analysis.py file.
  • open localhost:8000 in your browser

output

output

Database views definitions

we created one view called popular_articles for making queries simpler

create view popular_articles as
            select articles.title, count(*) as views
            from articles, log
            where log.path like concat('%', articles.slug )
            group by articles.title
            order by views desc ;

Authors

  • Karim Tawfik

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages