Diferència entre revisions de la pàgina «Python»
Salta a la navegació
Salta a la cerca
m (→Més Python) |
|||
Línia 30: | Línia 30: | ||
**Tutorial: http://docs.pylonsproject.org/projects/pyramid_tutorials/en/latest/single_file_tasks/single_file_tasks.html | **Tutorial: http://docs.pylonsproject.org/projects/pyramid_tutorials/en/latest/single_file_tasks/single_file_tasks.html | ||
**Authentication: http://sluggo.scrapping.cc/python/Akhet/auth.html | **Authentication: http://sluggo.scrapping.cc/python/Akhet/auth.html | ||
+ | **WSGI integració de Pyramid (Pylons) amb Apache: http://code.google.com/p/modwsgi/wiki/InstallationInstructions | ||
* Per començar a utilitzar MySQL amb Python: | * Per començar a utilitzar MySQL amb Python: | ||
*:http://www.kitebird.com/articles/pydbapi.html | *:http://www.kitebird.com/articles/pydbapi.html |
Revisió del 10:27, 1 ago 2012
Python és un llenguatge interpretat i completament orientat a objectes. Les seves principals aplicacions son:
- Aplicacions web
- Aplicacions d'escriptori (com GNOME, etc.)
Google ha impulsat molt la seva utilització. És més segur que altres llenguatges com PHP.
Primeres passes amb Python
...
Instal·lació en Apache2 amb mòdul WSGI
Per poder utiltizar Python en Apache2 es pot fer de 2 maneres:
- Com a script CGI i amb el mòdul libapache2-mod-python (desaconsellat)
- Com a script WSGI, que és el standard per Python. Els detalls a continuació son per aquesta versió.
Per tant:
- Instal·la el mòdul WSGI
- Segons el fòrum anterior s'instal·la de manera que els scripts s'executen si tenen l'extensió .wsgi
- Canvia la configuració perquè s'executin els arxius amb extensió .py
- Segueix el tutorial per posar en marxa la primera aplicació Python-WSGI
- http://webpython.codepoint.net/wsgi_tutorial
- En aquest tutorial es posa en marxa el servidor des de la línia de comandes. El entorn wsgi ens permet executar l'aplicació mitjançant un servidor httpd propi (sense Apache) i accedint a un port particular. Si vols executar-ho en l'entorn Apache has de treure la crida a httpd.handle_request o httpd.serve_forever i posar-ho en un directori visible per l'Apache (/var/www o com ho tinguis configurat).
Més Python
- Per activar el debug per la pantalla del navegador enlloc de /var/log/apache2/error.log:
- Pyramid
- Tutorial: http://docs.pylonsproject.org/projects/pyramid_tutorials/en/latest/single_file_tasks/single_file_tasks.html
- Authentication: http://sluggo.scrapping.cc/python/Akhet/auth.html
- WSGI integració de Pyramid (Pylons) amb Apache: http://code.google.com/p/modwsgi/wiki/InstallationInstructions
- Per començar a utilitzar MySQL amb Python:
- Persistència d'objectes:
- Amb pickle: http://docs.python.org/library/pickle.html
- En BD: ...
- GUI: hi ha diverses opcions:
- wxPython: http://wxpython.org/ Té editors visuals com wxDesigner o wxGlade
- PyQt: http://zetcode.com/tutorials/pyqt4/firstprograms/ Té editor visual QtDesigner.
- ...
- ...