One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // XPath CheatSheet | |
| // To test XPath in your Chrome Debugger: $x('/html/body') | |
| // http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/ | |
| // 0. XPath Examples. | |
| // More: http://xpath.alephzarro.com/content/cheatsheet.html | |
| '//hr[@class="edge" and position()=1]' // every first hr of 'edge' class |
| # $Id: Nielsen2012Python_case.py,v 1.2 2012/09/02 16:55:25 fn Exp $ | |
| # Define a url as a Python string (note we are only getting 100 documents) | |
| url = "http://wikilit.referata.com/" + \ | |
| "wiki/Special:Ask/" + \ | |
| "-5B-5BCategory:Publications-5D-5D/" + \ | |
| "-3FHas-20author%3DAuthor(s)/-3FYear/" + \ | |
| "-3FPublished-20in/-3FAbstract/-3FHas-20topic%3DTopic(s)/" + \ | |
| "-3FHas-20domain%3DDomain(s)/" + \ | |
| "format%3D-20csv/limit%3D-20100/offset%3D0" |