summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecflett <alecflett@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-07-30 21:14:37 +0000
committeralecflett <alecflett@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-07-30 21:14:37 +0000
commite54b16d0c2af1f5357ff0128d2a2d7666bf8f173 (patch)
tree2031273a45b08f5d6059d552fd98ce1dccb40578
parentfe53cb71afb26187ad9304d73f2bade1e41eb0c3 (diff)
switch to api.freebase.com
git-svn-id: http://freebase-python.googlecode.com/svn/trunk@204 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2
-rwxr-xr-xfreebase/__init__.py2
-rw-r--r--freebase/api/session.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/freebase/__init__.py b/freebase/__init__.py
index 03e3e56..4a29225 100755
--- a/freebase/__init__.py
+++ b/freebase/__init__.py
@@ -5,7 +5,7 @@ import sandbox
__all__ = ["HTTPMetawebSession", "sandbox"]
-_base = HTTPMetawebSession("http://freebase.com")
+_base = HTTPMetawebSession("http://api.freebase.com")
# we want to add base's functions to __init__.py
# so that we can say freebase.func() and really
diff --git a/freebase/api/session.py b/freebase/api/session.py
index 0be70be..2bb8f3a 100644
--- a/freebase/api/session.py
+++ b/freebase/api/session.py
@@ -39,7 +39,7 @@ declarations for external metaweb api.
__all__ = ['MetawebError', 'MetawebSession', 'HTTPMetawebSession', 'attrdict']
-__version__ = '1.01'
+__version__ = '1.02'
import os, sys, re
import cookielib