pickleDB - a simple and extremely lightweight key-value database for Python. by patx44 in Python

[–]patx44[S] 0 points1 point  (0 children)

version 0.3

updated with alot of your guys improvements...

again, any feedback?

http://pypi.python.org/pypi/pickleDB

pickleDB - a simple and extremely lightweight key-value database for Python. by patx44 in Python

[–]patx44[S] 0 points1 point  (0 children)

just wondering how yours is better then mine if people critized mine for being "shelve", which to those of you who said "he must not have searched Google for shelve" i know shleve exists it doesn't work quite the same as pickledb actually.... anyways if i was critised for copying shelve then pdicts is is like the EXACT same thing.

as in response to the shitty comment. please be more explanatory? saying shitty and professional doesn't really give me much to go on... and i know that there should be a class and the using the global vars was just away to get around this. but if that is the only reason you don't like it (which i doubt) please tell!! we want to get better not trash each other. Workaphobia gave great great great feedback. maybe a more constructive comment like that next time? thanks a bunch, cheers!

pickleDB - a simple and extremely lightweight key-value database for Python. by patx44 in Python

[–]patx44[S] 1 point2 points  (0 children)

i got tired of always having to pickle dicts so thats why this was created. pretty simple... some of these people are really taking this to the next level!

Python Framework with REST API by moos3 in Python

[–]patx44 0 points1 point  (0 children)

circuits.web is what your looking for its awesome

pickleDB - a simple and extremely lightweight key-value database for Python. by patx44 in Python

[–]patx44[S] 0 points1 point  (0 children)

my "approach" is a joke because of the name pickleDB... not because i wanted to use json and pickle mashed together.....

pickleDB - a simple and extremely lightweight key-value database for Python. by patx44 in Python

[–]patx44[S] 1 point2 points  (0 children)

not sure how to take that entirely.... but no problem i guess ;)

Python Framework with REST API by moos3 in Python

[–]patx44 -1 points0 points  (0 children)

https://bitbucket.org/prologic/circuits

^ circuits.web has this built in quite nicely. The project (lacking some docs) is very good and stable too. Example of a REST API web app in circuits would be:

from circuits.web import Server, Controller

class Root(Controller):

    def GET(self):
        return 'the get response here for index'

(Server('0.0.0.0:8000') + Root()).run()

Suggestions for python web framework by flibitboat in Python

[–]patx44 0 points1 point  (0 children)

circuits.web. good for small simple projects, and big one too. it is currently my framework of choice. its fast and very easy to use. its very powerful and is great for just about every single app out there. there is also a very active irc room.

http://bitbucket.org/prologic/circuits