Re: Converting Django app into a Desktop app

2017-04-08 Thread officeworked
Hello, It can be helped by see. A lot of apps. www.apparelexportgr.com On Wednesday, December 19, 2012 at 3:39:21 AM UTC+6, Chris Cogdon wrote: > > Personally, I'd prefer something that didn't require packaging up > additional programs (xampp and python, in this example). > > It should be

Re: Converting Django app into a Desktop app

2013-03-06 Thread Kevin London
Just to follow up on this, I wound up using py2app, although it made things considerably more complicated. I made a Github repo during testing which can be found here. It's incomplete as I moved from testing into using py2app on the intended

Re: Converting Django app into a Desktop app

2013-03-06 Thread Loai Ghoraba
thanks a lot, I will look at them if I have time :) On Sat, Mar 2, 2013 at 3:00 AM, Czarek Tomczak wrote: > Hi Loai, > > Have a look at CEF Python that embeds Chrome browser: > https://code.google.com/p/cefpython/ > You will need to run a web server to convert it into a

Re: Converting Django app into a Desktop app

2013-03-01 Thread Czarek Tomczak
Hi Loai, Have a look at CEF Python that embeds Chrome browser: https://code.google.com/p/cefpython/ You will need to run a web server to convert it into a desktop application, have a look at CefBottleDesktop that embeds CEF and runs a python web

Re: Converting Django app into a Desktop app

2013-03-01 Thread Kevin London
Oh okay, interesting. Thank you for following up. I'm going down the Pyinstaller route, I think. Support for Django in Pyinstaller is so recent that I'm hitting a number of snags, so I might need to go py2app if it doesn't pan out yet. Thanks to everyone so far for their contributions, this has

Re: Converting Django app into a Desktop app

2013-03-01 Thread Kevin London
@Loai, how did Pyinstaller work out for you? Is that the route you took? On Thursday, December 20, 2012 10:20:31 PM UTC-8, Loai Ghoraba wrote: > > @Filib: thanks a lot, seems that is what I will need exactly :) > > On Fri, Dec 21, 2012 at 1:37 AM, Mike Dewhirst > >

Re: Converting Django app into a Desktop app

2012-12-20 Thread Mike Dewhirst
See also https://us.pycon.org/2012/schedule/presentation/393/ by Ryan Kelly and his 'esky' package for safely updating distributed apps. There is a link to that and other items in the above pycon talk. Mike On 21/12/2012 9:55am, Filip Wasilewski wrote: Hi, On Tuesday, December 18, 2012

Re: Converting Django app into a Desktop app

2012-12-20 Thread Filip Wasilewski
Hi, On Tuesday, December 18, 2012 5:06:19 PM UTC+1, Loai Ghoraba wrote: > > Hi > > I am very comfortable with Django, and I was wondering about whether there > is some way to convert a Django web app into a Desktop app (may be not > 100%), so that I can distribute it to users. May be wrapping

Re: Converting Django app into a Desktop app

2012-12-19 Thread Gladson SimplĂ­cio Brito
http://portablepython.com/ 2012/12/18 Chris Cogdon > Personally, I'd prefer something that didn't require packaging up > additional programs (xampp and python, in this example). > > It should be _perfectly possible_ to find a native-python moderate > performance webserver,

Re: Converting Django app into a Desktop app

2012-12-19 Thread Loai Ghoraba
@all thanks a lot, I will try your suggestions, may be mixing them :) On Tue, Dec 18, 2012 at 11:39 PM, Chris Cogdon wrote: > Personally, I'd prefer something that didn't require packaging up > additional programs (xampp and python, in this example). > > It should be

Re: Converting Django app into a Desktop app

2012-12-18 Thread Chris Cogdon
Personally, I'd prefer something that didn't require packaging up additional programs (xampp and python, in this example). It should be _perfectly possible_ to find a native-python moderate performance webserver, then wrap up that, django, the application and the python interpreter into a

Re: Converting Django app into a Desktop app

2012-12-18 Thread peter
On 12/18/2012 05:18 PM, Chris Cogdon wrote: No Python included with xampp... this makes me sad ;_; On Tuesday, December 18, 2012 11:43:56 AM UTC-8, peter_julian wrote: You can use xampp. Create a automatic installer that install xampp and django with your app. Just like Kordi

Re: Converting Django app into a Desktop app

2012-12-18 Thread peter
On 12/18/2012 05:18 PM, Chris Cogdon wrote: No Python included with xampp... this makes me sad ;_; On Tuesday, December 18, 2012 11:43:56 AM UTC-8, peter_julian wrote: You can use xampp. Create a automatic installer that install xampp and django with your app. Just like Kordi

Re: Converting Django app into a Desktop app

2012-12-18 Thread Chris Cogdon
No Python included with xampp... this makes me sad ;_; On Tuesday, December 18, 2012 11:43:56 AM UTC-8, peter_julian wrote: > > You can use xampp. Create a automatic installer that install xampp and > django with your app. > Just like Kordi EDMS. http://www.kordil.net/. > -- You received

Re: Converting Django app into a Desktop app

2012-12-18 Thread peter
On 12/18/2012 04:27 PM, Loai Ghoraba wrote: @ all thanks for your responses, I will try to investigate them @Chris: you got me right :) I can use runserver, but it would be too light, or make the client install and configure apache (which is not a good idea if the client is a normal user, not

Re: Converting Django app into a Desktop app

2012-12-18 Thread Loai Ghoraba
@ all thanks for your responses, I will try to investigate them @Chris: you got me right :) I can use runserver, but it would be too light, or make the client install and configure apache (which is not a good idea if the client is a normal user, not a programmer). On Tue, Dec 18, 2012 at 9:23

Re: Converting Django app into a Desktop app

2012-12-18 Thread Chris Cogdon
I think what Loai is asking for is a way to "wrap up" the python/django application, along with a light-weight webserver (not as light-weight as "runserver" though), so it looks like a stand-alone application... apart from needing to run a web browser to connect to it. I, too, am very

Re: Converting Django app into a Desktop app

2012-12-18 Thread acheraime
Use a module like tastiepy develop your desktop client in your preferred language and have it communicate to django via REST. Sent from my iPhone On Dec 18, 2012, at 1:43 PM, Jonas Geiregat wrote: > > >> Hi >> >> I am very comfortable with Django, and I was wondering

Re: Converting Django app into a Desktop app

2012-12-18 Thread Jonas Geiregat
> Hi > > I am very comfortable with Django, and I was wondering about whether there is > some way to convert a Django web app into a Desktop app (may be not 100%), so > that I can distribute it to users. May be wrapping it in a light web server > "if there is something like this". > > >

Converting Django app into a Desktop app

2012-12-18 Thread Loai Ghoraba
Hi I am very comfortable with Django, and I was wondering about whether there is some way to convert a Django web app into a Desktop app (may be not 100%), so that I can distribute it to users. May be wrapping it in a light web server "if there is something like this". Thanks -- You