Re: django's database system

2013-06-06 Thread Vernon D. Cole
You can write a "django management command" which runs on a workstation. https://docs.djangoproject.com/en/dev/howto/custom-management-commands/ I use this a lot for command-line operation to do batch processing kinds of things. Since "django is just Python", there is nothing to prevent you fro

Re: django's database system

2013-06-06 Thread Amirouche Boubekki
peewee looks more like django ORM 2013/6/5 Nikolas Stevenson-Molnar > Have you had a look at SQLAlchemy? http://www.sqlalchemy.org/ > > _Nik > > On 6/5/2013 3:29 AM, heni yemun wrote: > > Hi, > > I'm starting to develop some python program to address some da

Re: django's database system

2013-06-05 Thread Nikolas Stevenson-Molnar
Have you had a look at SQLAlchemy? http://www.sqlalchemy.org/ _Nik On 6/5/2013 3:29 AM, heni yemun wrote: > Hi, > I'm starting to develop some python program to address some database > needs- this is for desktop usage not on the web. So i was wondering if > django's database system can be integra

Re: django's database system

2013-06-05 Thread mulianto
Hi Heni, Do you mean django database system is refer to the ORM django provide? You can use and tie with your desktop APP by using django REST service . With the REST service provided by django, any APP can Benefit it like mobile APP, desktop APP, web APP, third party APP via your REST api .