pense-bête de bruno sanchiz

Accueil > Programmation > python > documentation pour python

documentation pour python

Publié le 26 octobre 2017, dernière mise-à-jour le 26 août 2019, 7 visites, 23646 visites totales.


NON vérifiés :

http://python.developpez.com/cours/apprendre-python3/
http://greenteapress.com/wp/think-python/

python pour android :
http://kivy.org/docs/guide/basic.html
https://code.google.com/p/android-scripting/
kivy
https://github.com/kivy/python-for-android
qpython , jython
http://www.openbookproject.net/thinkCSpy
http://greenteapress.com/wp/think-python/
http://lanyrd.com/2012/europython/srzmt/
http://thp.io/2012/europython/

import androidhelper
droid = android.Android()
droid.makeToast(’hello’)
[/code]
Bottle exemple :
[code]
from bottle import route, run, template, request
@route(’/’)
@route(’/index’)
def index() :
return template(’’’Hello World’’’)

[bruno sanchiz]