Jamie McCusker

Results 40 comments of Jamie McCusker

Not to argue, but this seems like a bug, not an enhancement, since date(), datetime() and time() objects are pretty common in pandas frames. I wouldn't know the best way...

It's actually very simple to provide it yourself using the namespaces() function on Graph: ```python import rdflib g = rdflib.Graph() g.load('http://www.w3.org/People/Berners-Lee/card.rdf') # set the context to a dictionary construction from...

What would it take for us to get a new release? It's been 5 years, and I've been on the development release for 3 of them. Of course, RDFlib itself...

If you have a healthy set of maintainers (and it seems that you're getting plenty), I'm happy to leave it at that. But if things fall down again, let me...

Additional issues: changes needed for dbm on 2.7 mean breaking 3, since dbm doesn't like unicode keys. Also, whatever backend is being used in my local test doesn't scale well,...

I'm actually thinking of trying again with sqlite to try to use its full text search, actually. It should match the syntax I'm working on for a fuseki implementation too....

If you're worried about performance, for what it's worth I've brought the default memory store in py3 up over 1 billion triples. On Thu, Jul 30, 2020 at 12:30 PM...

I haven't had the chance to work on it. It would probably be SQLite based, as I've found some unexpectedly expensive operations with shelve. Jamie On Fri, Jul 2, 2021...

If there's a SQLite store, it's probably already doing better what I'd try to do. If benchmarks say it's comparable to sleepycat, we should just go with that. On Sat,...

But I'm guessing that going through the sqlalchemy layer is probably not as performant as it could be. I haven't investigated, though. On Sat, Aug 28, 2021 at 10:35 PM...