##A basic Python web crawler.
- given a seed page, create index of all links and create a relational graph between the pages
- computes ranks of a given webpage using inlinks/outlinks
- returns the highest ranked page off a given keyword
- returns a list of all the url's associated with the given keyword
- only works with 3 specific url's so far
- update to work on any URL (using Beautiful Soup to parse HTML)