<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-3940568014938333882.post4827710697353096411..comments</id><updated>2011-10-07T15:43:49.692+02:00</updated><category term='nostalgia'/><category term='Python'/><category term='scheme'/><category term='advanced compiler'/><category term='thesis'/><category term='GIL'/><category term='self centered'/><category term='english'/><category term='movies'/><category term='svenska'/><category term='thobe.org'/><category term='politics'/><category term='culture'/><category term='request for software'/><category term='Java'/><category term='concurrency'/><category term='studieflykt'/><category term='JavaOne'/><category term='meta post'/><category term='Summer of Code'/><category term='Open Source'/><category term='integration'/><category term='JVM wishlist'/><category term='Jython'/><category term='Django'/><category term='neo4j'/><category term='twitter'/><category term='Conference'/><category term='performance'/><category term='code'/><category term='PyPy'/><category term='rant'/><title type='text'>Comments on Wardrobe strength: Seamless Neo4j integration in Django</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://journal.thobe.org/feeds/4827710697353096411/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html'/><author><name>Tobias</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_AqkFfcwHF4M/SlHtPfNCw-I/AAAAAAAAAKU/IKh0Zw4XT-k/S220/Tobias+EP.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-8625895152886328684</id><published>2011-10-07T15:43:49.692+02:00</published><updated>2011-10-07T15:43:49.692+02:00</updated><title type='text'>Nevermind, I fixed it:

First of all my problem wa...</title><content type='html'>Nevermind, I fixed it:&lt;br /&gt;&lt;br /&gt;First of all my problem was that I was keeping my neo4j  database files in system folder, so the files could not be  saved because of the permissions problems. &lt;br /&gt;&lt;br /&gt;Another  and mos annoying thing is the bug in [..]/site-packages/django/db/models/base.py where on line 460 , Model.save has got another argument from Django 1.2 named using. So I removed using=using on line 460 and now it works like charm. &lt;br /&gt;&lt;br /&gt;Now, I have to figure out how to display neo4j database info on web page, sice I am beginner in Django as well :) &lt;br /&gt;Cheers.&lt;br /&gt;Isen</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/8625895152886328684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/8625895152886328684'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1317995029692#c8625895152886328684' title=''/><author><name>isen</name><uri>http://www.blogger.com/profile/14023001447384572606</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-746761634'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-6332792045950116082</id><published>2011-10-07T15:12:51.806+02:00</published><updated>2011-10-07T15:12:51.806+02:00</updated><title type='text'>Hi Tobias,

I am so desperate to get this work and...</title><content type='html'>Hi Tobias,&lt;br /&gt;&lt;br /&gt;I am so desperate to get this work and I would appreciate if you could hep me. &lt;br /&gt;&lt;br /&gt;Everything goes fine for me: installation, creating project and starting app. But the problem comes when I try to create an object of Company (i.e seven_eleven = models.Company.objects.create(name=&amp;quot;Seven Eleven&amp;quot;) )&lt;br /&gt;&lt;br /&gt;I get this error:&lt;br /&gt;&lt;br /&gt;File &amp;quot;/sw/lib/python2.6/site-packages/django/db/models/manager.py&amp;quot;, line 138, in create&lt;br /&gt;    return self.get_query_set().create(**kwargs)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/model/django_model/__init__.py&amp;quot;, line 362, in create&lt;br /&gt;    obj.save(force_insert=True)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/django/db/models/base.py&amp;quot;, line 460, in save&lt;br /&gt;    self.save_base(using=using, force_insert=force_insert, force_update=force_update)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/_util.py&amp;quot;, line 47, in __get__&lt;br /&gt;    method, graphdb = self.descr_get(obj, cls)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/_util.py&amp;quot;, line 41, in descr_get&lt;br /&gt;    graphdb = self.accessor.__get__(obj, cls)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/model/django_model/__init__.py&amp;quot;, line 58, in __get__&lt;br /&gt;    return DjangoNeo.neo&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/model/django_model/__init__.py&amp;quot;, line 124, in neo&lt;br /&gt;    return self.__setup_neo()&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/model/django_model/__init__.py&amp;quot;, line 136, in __setup_neo&lt;br /&gt;    self.__neo = NeoService(resource_uri, **options)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/__init__.py&amp;quot;, line 522, in __new__&lt;br /&gt;    neo = core.load_neo(resource_uri, params)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/_core.py&amp;quot;, line 332, in load_neo&lt;br /&gt;    return load_neo(resource_uri, parameters)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/_core.py&amp;quot;, line 225, in load_neo&lt;br /&gt;    return GraphDatabase(resource_uri, settings, config, log)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/_core.py&amp;quot;, line 230, in __init__&lt;br /&gt;    neo = backend.load_neo(resource_uri, settings)&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/Neo4j.py-0.1_SNAPSHOT-py2.6.egg/neo4j/_backend/__init__.py&amp;quot;, line 74, in load_neo&lt;br /&gt;    return impl(resource_uri, implementation.make_map(settings))&lt;br /&gt;  File &amp;quot;/sw/lib/python2.6/site-packages/jpype/_jclass.py&amp;quot;, line 79, in _javaInit&lt;br /&gt;    self.__javaobject__ = self.__class__.__javaclass__.newClassInstance(*args)&lt;br /&gt;java.lang.RuntimeExceptionPyRaisable: org.neo4j.kernel.impl.transaction.TransactionFailureException: Could not create data source [nioneodb], see nested exception for cause of error&lt;br /&gt;&lt;br /&gt;Can you please tell me what is wrong. &lt;br /&gt;&lt;br /&gt;Thank in adcance</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/6332792045950116082'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/6332792045950116082'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1317993171806#c6332792045950116082' title=''/><author><name>isen</name><uri>http://www.blogger.com/profile/14023001447384572606</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-746761634'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-2662275181105620928</id><published>2011-07-10T07:17:56.318+02:00</published><updated>2011-07-10T07:17:56.318+02:00</updated><title type='text'>Hi Tobias,
I&amp;#39;ve tried installing Neo4Django in...</title><content type='html'>Hi Tobias,&lt;br /&gt;I&amp;#39;ve tried installing Neo4Django in a couple of different environments and am not having good luck. Has there been any development in the code? I am curious to see if I can use it on my webhost (Dreamhost) but will keep working to see if I can get it running on my own server first.&lt;br /&gt;&lt;br /&gt;Thank you!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/2662275181105620928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/2662275181105620928'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1310275076318#c2662275181105620928' title=''/><author><name>R S</name><uri>http://www.blogger.com/profile/06980985153852648608</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1707748615'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-3029410013170269975</id><published>2010-08-04T17:13:58.778+02:00</published><updated>2010-08-04T17:13:58.778+02:00</updated><title type='text'>@tom: thanks for notifying me. The project has bee...</title><content type='html'>@tom: thanks for notifying me. The project has been rewritten with a different approach which can be found here:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.allbuttonspressed.com/projects/django-nonrel" rel="nofollow"&gt;http://www.allbuttonspressed.com/projects/django-nonrel&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/3029410013170269975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/3029410013170269975'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1280934838778#c3029410013170269975' title=''/><author><name>Waldemar Kornewald</name><uri>http://www.blogger.com/profile/13542696023135088505</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-556515450'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-948643188711151939</id><published>2010-08-04T16:52:27.994+02:00</published><updated>2010-08-04T16:52:27.994+02:00</updated><title type='text'>Waldemar, that link is broken...

Tobias, are ther...</title><content type='html'>Waldemar, that link is broken...&lt;br /&gt;&lt;br /&gt;Tobias, are there any updates to the django code?&lt;br /&gt;&lt;br /&gt;http://pppeoplepppowered.blogspot.com/2010/08/django-and-neo4j.html&lt;br /&gt;&lt;br /&gt;Tom</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/948643188711151939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/948643188711151939'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1280933547994#c948643188711151939' title=''/><author><name>tom</name><uri>http://www.blogger.com/profile/17703692558083848432</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1305871254'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-1740034905323568317</id><published>2010-06-26T10:29:58.116+02:00</published><updated>2010-06-26T10:29:58.116+02:00</updated><title type='text'>What system configuration do you have, I faced som...</title><content type='html'>What system configuration do you have, I faced some problems compiling &amp;quot;neo4j-python&amp;quot; step&lt;br /&gt;&lt;br /&gt;(distutils.errors.DistutilsError: Setup script exited with error: command &amp;#39;gcc&amp;#39; failed with exit status 1)</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1740034905323568317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1740034905323568317'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1277540998116#c1740034905323568317' title=''/><author><name>Sergey M. Nikitin</name><uri>http://www.blogger.com/profile/09555594727863049948</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1405113423'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-1615830367867653615</id><published>2010-02-16T07:59:25.964+01:00</published><updated>2010-02-16T07:59:25.964+01:00</updated><title type='text'>Thanks a lot! I&amp;#39;ll try to use it )</title><content type='html'>Thanks a lot! I&amp;#39;ll try to use it )</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1615830367867653615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1615830367867653615'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1266303565964#c1615830367867653615' title=''/><author><name>Serg</name><uri>http://www.blogger.com/profile/09555594727863049948</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1405113423'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-1769274347952897662</id><published>2010-01-07T20:58:39.036+01:00</published><updated>2010-01-07T20:58:39.036+01:00</updated><title type='text'>I&amp;#39;m not sure if this is compatible with Neo4J,...</title><content type='html'>I&amp;#39;m not sure if this is compatible with Neo4J, but we&amp;#39;re working on non-relational DB support for Django&amp;#39;s ORM. Join our project, here:&lt;br /&gt;&lt;a href="http://bitbucket.org/wkornewald/django-nonrel-multidb/" rel="nofollow"&gt;http://bitbucket.org/wkornewald/django-nonrel-multidb/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The wiki links to more information like a discussion group, blog, etc.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1769274347952897662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1769274347952897662'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1262894319036#c1769274347952897662' title=''/><author><name>Waldemar Kornewald</name><uri>http://www.blogger.com/profile/13542696023135088505</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-556515450'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-1284934673838499393</id><published>2009-12-17T20:31:35.236+01:00</published><updated>2009-12-17T20:31:35.236+01:00</updated><title type='text'>great news, gotta try it out!</title><content type='html'>great news, gotta try it out!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1284934673838499393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/1284934673838499393'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1261078295236#c1284934673838499393' title=''/><author><name>Sparta</name><uri>http://www.blogger.com/profile/09315893786576223938</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://hos.sandnet.se/johan.rhodin/johan_isvak.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1478342725'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-8226903718640355192</id><published>2009-12-15T09:17:27.845+01:00</published><updated>2009-12-15T09:17:27.845+01:00</updated><title type='text'>@afd: Yes, the same approach (integrating in the m...</title><content type='html'>@afd: Yes, the same approach (integrating in the model-layer rather than the db-layer) would be the easiest way for most databases where SQL is not the most efficient means of access. ZODB certainly falls into that category.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/8226903718640355192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/8226903718640355192'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1260865047845#c8226903718640355192' title=''/><author><name>Tobias</name><uri>http://www.blogger.com/profile/15796529762063980134</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_AqkFfcwHF4M/SlHtPfNCw-I/AAAAAAAAAKU/IKh0Zw4XT-k/S220/Tobias+EP.jpg'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1934448095'/></entry><entry><id>tag:blogger.com,1999:blog-3940568014938333882.post-5349774938608363150</id><published>2009-12-15T08:01:42.349+01:00</published><updated>2009-12-15T08:01:42.349+01:00</updated><title type='text'>I wonder if your work for neo4j integration with D...</title><content type='html'>I wonder if your work for neo4j integration with Django could also be translated into integration with ZODB, a somewhat similar database for Python objects.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/5349774938608363150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3940568014938333882/4827710697353096411/comments/default/5349774938608363150'/><link rel='alternate' type='text/html' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html?showComment=1260860502349#c5349774938608363150' title=''/><author><name>afd</name><uri>http://www.blogger.com/profile/15475535047436061186</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://journal.thobe.org/2009/12/seamless-neo4j-integration-in-django.html' ref='tag:blogger.com,1999:blog-3940568014938333882.post-4827710697353096411' source='http://www.blogger.com/feeds/3940568014938333882/posts/default/4827710697353096411' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1803913659'/></entry></feed>
