forked from caiges/news-genome
-
Notifications
You must be signed in to change notification settings - Fork 0
Making media content smarter using semantic technology
cronkite-asu/news-genome
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
NOTICE : to get this working i replaced parts/svn-extras/django-calais/djangocalais/calaisapi.py ... around line 161 def construct_json_response(self, data): import cjson try: intermediate_json = cjson.decode(data) except cjson.DecodeError: print ">>> OpenCalais Error: %s" % data return {} json_data = self._resolveReferences(intermediate_json) return self._createHierarchy(json_data) -WITH- def construct_json_response(self, data): from django.utils import simplejson try: intermediate_json = simplejson.loads(data) except: print ">>> OpenCalais Error: %s" % data return {} json_data = self._resolveReferences(intermediate_json) return self._createHierarchy(json_data)
About
Making media content smarter using semantic technology
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published