Re: Web and mobile app with Django? Kivy? sth else?

2015-07-09 Thread djangocharm2020
Hi Gra I noticed your comment Im using django but want to used Kivy do you have any tips on how to install it on windows its a pain in the butt thanks Robert On Saturday, December 6, 2014 at 10:19:18 AM UTC-6, graeme wrote: > > If you want to do everything in Python (which I like to) my

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-06 Thread graeme
If you want to do everything in Python (which I like to) my choices would be Django for the backend, Kivy for the mobile apps, and Django Rest Framework to provide APIs for the mobile apps. If you want to keep it simpler maybe a responsive web design will be enough, so you only need Django,

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-06 Thread Russell Keith-Magee
Hi Mariusz, It depends how many sharp edges you're willing to live with. I've been working on a project to allow users to develop native mobile apps in Python: http://pybee.org/toga/ It's *very* early stage though - nothing close to production ready. There isn't even really a tutorial for

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-05 Thread Cal Leeming
You *could* write your JS/HTML in Python using a preprocessor such as pyjs [1] or markup [2], but I'd *strongly* recommend against it. This is mainly because of added complexity, you cannot guarantee your generated code will be optimized and you will most likely encounter weird edge cases, parser

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-05 Thread Mariusz Wilk
Thanks for your advice! PhoneGap uses JS, HTML and CSS. Is there any way I could do this in Python or would it be unneccessarily complicated since maybe there's no PhoneGap-type-of-framework for Python? W dniu środa, 3 grudnia 2014 00:56:17 UTC użytkownik Cal Leeming napisał: > > Hi Mariusz,

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-02 Thread Cal Leeming
Hi Mariusz, Short answer - Hack something together in the fastest way possible, don't worry about it being clean, tidy or even tested. Because if you do, you'll still be working on this project in 2 years time... Look at using something like PhoneGap [8], just enjoy the experience and ship it :)

Re: Web and mobile app with Django? Kivy? sth else?

2014-12-02 Thread Mariusz Wilk
> > Thanks. But is it possible to create a pretty web/mobile app with pop-ups, > buttons, input boxes, pics etc in Django/Python alone? > I'm asking since I'm doing Django tutorial and so far I only have a > raw-looking poll (as an example). > When a website is made with Django does it

Re: Web and mobile app with Django? Kivy? sth else?

2014-11-24 Thread Fred Stluka
+1 for writing a single RWD (Responsive Web Design) web app using Django, instead of writing separate web, Android and iOS apps. If necessary, wrap the result in PhoneGap to mobile-specific features, uploading images from the camera, capturing the GPS location, showing maps, accessing the local

Re: Web and mobile app with Django? Kivy? sth else?

2014-11-24 Thread Collin Anderson
Hi, Django can do all of those things except the native android/ios apps. Django specializes in websites and especially helpful for handling things like logging in, querying a database, processing form input, and generating html. Here are some ways Django can help with your situation: You

Web and mobile app with Django? Kivy? sth else?

2014-11-21 Thread Mariusz Wilk
I'm new to programming. Eventually, I'd like to make a website and an android/ios app that would work together and display pretty much the same content on a mobile as on the the web. Each client would log in (via mobile or desktop) and continue solving some exercises from the place he