Re: Running django on demand via my PyQt4 Standalone app

2016-10-25 Thread Mario R. Osorio
I used to do home automation, so I know you need an interface with very high "WOW!" factor AND PORTABILITY. That is why I proposed you check kivy ( http://kivy.org). kivy is the kick-ass interface I'd use, bar none. this of course my opinion and recomendation, but you know YAHOO. Dtb/Gby

Re: Running django on demand via my PyQt4 Standalone app

2016-10-25 Thread Dam ian
Hi again, and thanks for the answer and Tips @Mario R. Osorio >I cannot understand is why would you need django for admin, but use some other standalone (desktop?) application for everything else. You should try and stay either on the django or on the standalone application. i think i

Re: Read Only by user in Django Admin

2016-10-25 Thread Luis Zárate
you are looking something like https://code.djangoproject.com/ticket/7150 https://code.djangoproject.com/attachment/ticket/7150/admin_view-permission-1.0.patch https://code.djangoproject.com/attachment/ticket/7150/newforms-admin-view-permission-r7737.patch

Looking for remote Python/Django job. Experience: 3 years

2016-10-25 Thread zenofpython90
Hi! I'm not sure if it's the right place but... I'm back-end web developer from Poland and I'm looking for remote job(prefered long-term collaboration with companies or freelancers - full time). Experience in comercial programming: 3 years Keywords: Python, Django, JS, Linux, GIT, SQL, REST,

Re: Migrations with multiple databases

2016-10-25 Thread Markus Holtermann
Hi Andrea, If you have models that are entirely unrelated in different databases you could use different values for INSTALLED_APPS to limit the apps Django sees or by settings the values in the MIGRATION_MODULES dict to None to tell Django that those apps don't have migrations. Cheers, /Markus

Migrations with multiple databases

2016-10-25 Thread andrea crotti
We have a couple of databases with a tiny number of tables, but django-migrations has still go through all the migrations anyway. So even if the SQL itself is nothing it still takes a massive amount of time and memory for the usual known issues with migrations on big projects. I guess it works

Re: How to: Django development and debugging

2016-10-25 Thread Luis Zárate
2016-10-23 17:08 GMT-06:00 Don Thilaka Jayamanne : > @Luis Zárate > >I dislike VS as IDE but > Please remember, this is Visual Studio Code (cross platform, open source, > free) and not to be confused with Visual Sutdio IDE (full blown IDE runs > only on Windows) > Visual

Re: Using socket programming with django

2016-10-25 Thread GMail
Hi! Django follows basic Request->Response cycle, so it wouldn't be possible without Channels or something similar. > On 25 Oct 2016, at 11:46, CHAITANYA BHATIA 5-Yr IDD Computer Sci. & Engg. > wrote: > > I have to implement a chat room using socket

Re: Running django on demand via my PyQt4 Standalone app

2016-10-25 Thread Mario R. Osorio
I cannot understand is why would you need django for admin, but use some other standalone (desktop?) application for everything else. You should try and stay either on the django or on the standalone application. If after further analysis you still think you need both, then I'd use django,

Re: Using Socket Programmaing with django(for a chat room web app)

2016-10-25 Thread Rafael E. Ferrero
Maybe you can use Tornado for the websockets Rafael E. Ferrero 2016-10-25 10:08 GMT-03:00 CHAITANYA BHATIA < chaitanya.bhatia.cs...@itbhu.ac.in>: > I want to create a chat room web application without using django Chains > (i.e. I need to use the socket module provided by Python by default). I

Using Socket Programmaing with django(for a chat room web app)

2016-10-25 Thread CHAITANYA BHATIA
I want to create a chat room web application without using django Chains (i.e. I need to use the socket module provided by Python by default). I am facing a difficulty in submitting the input from the html page to the client function.The only way I know of submitting the input from the webpage

maintain cache in django ( Django restframework)

2016-10-25 Thread Rishav Goyal
Hi, I have android app integrated with django restframework. I want to maintain cache at backend. Can someone tell me how to maintain cache at backend in django ? Thanks. Regards, Rishav Goyal, Stanford University -- You received this message because you are subscribed to the Google Groups

Using socket programming with django

2016-10-25 Thread CHAITANYA BHATIA 5-Yr IDD Computer Sci. & Engg.
I have to implement a chat room using socket programming in a web app which uses django but django channel can't be used. I want to know how to redirect the input taken from the webpage into the chat client without calling the chat client function again and again. -- You received this message

Re: Running django on demand via my PyQt4 Standalone app

2016-10-25 Thread Vinicius Assef
Absolutely! :-D Thank you. On 24 October 2016 at 21:01, Avraham Serour wrote: > does this help? > > https://docs.djangoproject.com/en/1.10/topics/settings/#calling-django-setup-is-required-for-standalone-django-usage > > > On Tue, Oct 25, 2016 at 12:13 AM, Vinicius Assef