2011-04-27 19:53:17 +02:00
===================================
Google Refine Python Client Library
===================================
The Google Refine Python Client Library provides an interface to
communicating with a Google Refine server.
Currently, the following API is supported:
- project creation/import, deletion, export
- facet computation
- text
- text filter
- numeric
- blank
- starred & flagged
- ... extensible class
- 'engine': managing multiple facets and their computation results
- sorting & reordering
- clustering
- transforms
- transposes
- single and mass edits
- annotation (star/flag)
- column
- move
- add
- split
- rename
- reorder
- remove
Configuration
=============
By default the Google Refine server URL is http://127.0.0.1:3333
2011-04-28 17:49:17 +02:00
The environment variables `` GOOGLE_REFINE_HOST `` and `` GOOGLE_REFINE_PORT ``
2011-04-27 19:53:17 +02:00
enable overriding the host & port.
2011-04-28 12:59:35 +02:00
In order to run all tests, a live Refine server is needed. No existing projects
are affected.
2011-04-27 19:53:17 +02:00
Installation
============
2011-04-28 17:49:17 +02:00
(Someone with more familiarity with python's byzantine collection of installation
frameworks is very welcome to improve/"best practice" all this.)
2011-04-27 19:53:17 +02:00
2011-04-28 17:49:17 +02:00
#. Install dependencies, which currently is `` urllib2_file `` :
2011-04-28 12:59:35 +02:00
2011-04-28 17:49:17 +02:00
`` sudo pip install -r requirements.txt ``
2011-04-27 19:53:17 +02:00
2011-04-28 17:49:17 +02:00
#. Ensure you have a Refine server running somewhere and, if necessary, set
the envvars as above.
#. Run tests, build, and install:
`` python setup.py test # to do a subset, e.g., --test-suite tests.test_facet ``
`` python setup.py build ``
`` python setup.py install ``
2011-05-01 19:49:11 +02:00
2011-04-28 17:49:17 +02:00
There is a Makefile that will do this too, and more.
2011-04-27 19:53:17 +02:00
TODO
====
The API so far has been filled out from building a test suite to carry out the
2011-04-28 12:59:35 +02:00
actions in `David Huynh's Refine tutorial <http://davidhuynh.net/spaces/nicar2011/tutorial.pdf> `_ which while certainly showing off a
wide range of Refine features doesn't cover the entire suite. Notable exceptions
currently include:
2011-04-27 19:53:17 +02:00
- reconciliation
- undo/redo
- Freebase
- join columns
- columns from URL
2011-05-13 01:38:21 +02:00
Contribute
============
Patches welcome! Source is at https://github.com/PaulMakepeace/refine-client-py
Useful Tools
------------
One aspect of development is watching HTTP transactions. To that end, I found
`Fiddler <http://www.fiddler2.com/> `_ on Windows and `HTTPScoop
<http://www.tuffcode.com/> `_ invaluable. The latter won't URL-decode nor nicely
format JSON but the `Online JavaScript Beautifier <http://jsbeautifier.org/> `_
will.
2011-04-27 19:53:17 +02:00
Credits
=======
2011-05-01 19:07:27 +02:00
Paul Makepeace, author, <paulm@paulm.com>
2011-04-27 19:53:17 +02:00
2011-04-28 12:59:35 +02:00
David Huynh, `initial cut <http://groups.google.com/group/google-refine/msg/ee29cf8d660e66a9> `_
2011-04-28 17:57:29 +02:00
`Artfinder <http://www.artfinder.com/> `_ , inspiration
2011-04-28 12:59:35 +02:00
Some data used in the test suite has been used from publicly available sources,
2011-05-13 01:38:21 +02:00
- louisiana-elected-officials.csv: from
2011-05-13 01:59:20 +02:00
http://www.sos.louisiana.gov/tabid/136/Default.aspx
2011-04-28 12:59:35 +02:00
2011-05-13 01:38:21 +02:00
- us_economic_assistance.csv: `"The Green Book" <http://www.data.gov/raw/1554> `_
2011-04-28 12:59:35 +02:00
2011-05-13 01:38:21 +02:00
- eli-lilly.csv: `ProPublica's "Docs for Dollars" <http://projects.propublica.org/docdollars/> `_ leading to a `Lilly Faculty PDF <http://www.lillyfacultyregistry.com/documents/EliLillyFacultyRegistryQ22010.pdf> `_ processed by `David Huynh's ScraperWiki script <http://scraperwiki.com/scrapers/eli-lilly-dollars-for-docs-scraper/edit/> `_
2011-04-28 12:59:35 +02:00