summaryrefslogtreecommitdiff
path: root/freebase-api/README
diff options
context:
space:
mode:
authornitromaster101 <nitromaster101@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-06-17 19:02:50 +0000
committernitromaster101 <nitromaster101@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-06-17 19:02:50 +0000
commitdd2da52625e890e29a6fdbba43456dd8475d51ac (patch)
tree1929e92309255c54d0b1bee11489872824f93739 /freebase-api/README
parentcf63c2faee674cc40e1b38975ee05125ee09a232 (diff)
reorganize package inorder to emphasize freebase-api as the main one
git-svn-id: http://freebase-python.googlecode.com/svn/trunk@88 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2
Diffstat (limited to 'freebase-api/README')
-rw-r--r--freebase-api/README42
1 files changed, 0 insertions, 42 deletions
diff --git a/freebase-api/README b/freebase-api/README
deleted file mode 100644
index fce8b5b..0000000
--- a/freebase-api/README
+++ /dev/null
@@ -1,42 +0,0 @@
-description='Python client library for Freebase API service',
-maintainer_email='developers@freebase.com',
-url='http://www.freebase.com/',
-
-INSTALL:
-
- /usr/bin/python setup.py install
-
- When using freebase-python with Google AppEngine you will also need to
- include the files in appengine_stubs with you AppEngine app.
-
-SYNOPSIS:
-
- #!/usr/bin/python
-
- from freebase.api import HTTPMetawebSession, MetawebError
-
- mss = HTTPMetawebSession('www.freebase.com')
-
- query = { 'type':'/music/artist',
- 'name':'Sting',
- 'album':[],
- }
-
- result = mss.mqlread(query)
-
- for album in result.album:
- print album
-TESTING:
-
- cd test
- /usr/bin/python test_all.py -v
-
- test_login (__main__.TestFreebase) ... ok
- test_read (__main__.TestFreebase) ... ok
- test_write (__main__.TestFreebase) ... ok
-
- ----------------------------------------------------------------------
- Ran 3 tests in 0.691s
-
- OK
-