Querying Movie Data on Wikipedia using DBpedia and SPARQL

Getting data from Wikipedia is no easy feat. At first glance, it seems like the easiest way would be to scrape data using a web crawler such as Beautiful Soup but this is highly likely to get your client blocked. Not to mention the sheer number of pages you’ll need to crawl if you are…… Continue reading Querying Movie Data on Wikipedia using DBpedia and SPARQL

Getting Started with Graph Analysis in NetworkX

NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex graphs. It’s a really cool package that contains heaps of graph algorithms for all different uses. In this tutorial, I will cover how to create a graph from an edge list and different ways we can…… Continue reading Getting Started with Graph Analysis in NetworkX