[web2py] Re: web2py on android

2016-09-18 Thread eric cuver
you can use local storage for example : var objet = { propriete1 : "valeur1", propriete2 : "valeur2" }; var monobjet_json = window.JSON.stringify(monobjet); window.localStorage .setItem("objet",monobjet_json); Le dimanche 18 septembre 2016 01:39:01 UTC+2, JorgeH a écrit : > > what if I need to

[web2py] Re: web2py on android

2016-09-17 Thread JorgeH
what if I need to store data in the mobile when there is no internet connection and sync with the webserver when there is connection? what db or sqlite, can I use? On Saturday, July 23, 2016 at 1:03:24 AM UTC-5, eric cuver wrote: > > you can use cordova wbeview and used side client brython(

[web2py] Re: web2py on android

2016-07-25 Thread Francisco García
Hello, Yes, you can write your backend Restful service with Web2py, and connect consumer web applications, android or iOS apps, etc. I use to read ODoo web services, process data with Web2py and publish to customers with a Restfull service. Web2py is perfect for this tasks. It is very fast and

[web2py] Re: web2py on android

2016-07-23 Thread eric cuver
you can use cordova wbeview and used side client brython( python) and backend web2py I create the applications in this way it works very well Le mardi 19 juillet 2016 13:16:10 UTC+2, Paolo Amboni a écrit : > > Is it possible to do something like that with web2py? > > Android apps with Python,

[web2py] Re: web2py on android

2016-07-19 Thread samuel bonill
You can use web2py for build a ret_api server and build your app with NativeScript (Angular2), ionic or reactnative -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report

[web2py] Re: web2py on android

2016-07-19 Thread Massimo Di Pierro
Any web app can run as an android app or ios app. What the server side is written in irrelevant. One of the easiest ways is to use gonative.io but it is not free. Everything you see in the article you mention works if you replace Flask with web2py. I am sure other users have other

[web2py] Re: web2py on Android

2013-09-14 Thread xinx
I am facing perhaps a similar issue when I try to get my web2py (Version 2.5.1-stable+timestamp.2013.06.06.15.39.19) application running on a tablet with Android 4.3 and sl4a (python 2.6). GETs seems to be okay but POSTs (e.g. login as user) result in tickets. As any attempt to login results in

[web2py] Re: web2py on Android

2013-07-14 Thread Massimo Di Pierro
Can you try wrap (in main.py) parse_get_post_vars(request, environ) in try: ... except IOError: pass and see what happens. Web2py copies the input stream into a temp file in order to be able to parse it but also pass a copy to the app. I suspect something happens to the original stream and