Enterprise python

25
www.pythonchile.cl

description

Presentation source code:https://github.com/aaguirre/PythonChile.Buildouthttps://github.com/aaguirre/PythonChile.Pyramid

Transcript of Enterprise python

Page 2: Enterprise python
Page 3: Enterprise python
Page 4: Enterprise python

History

Python (1989) Java (1991)

Zope (1998) J2EE (1998)

Page 5: Enterprise python

• +5 millions of users

• +100 millions of photos

• 15 photos per second

Page 6: Enterprise python

• +5 millions of users

• +100 millions of photos

• 15 photos per second

Page 7: Enterprise python

• Zope/Plone

Page 8: Enterprise python
Page 9: Enterprise python

Python Software Stack

Page 10: Enterprise python

• Virtualenv

• Buildout

• bpython

• SQLAlchemy

• doctests

• Pyramid

• PyCharm

Page 11: Enterprise python

VirtualenvPython

Virtualenv

Page 12: Enterprise python

Eggs

easy_install django

Page 13: Enterprise python

Buildout

Page 14: Enterprise python

BuildoutPython

Virtualenv

Buildout

Page 15: Enterprise python

• Virtualenv

• Buildout

• bpython

• SQLAlchemy

• doctests

• Pyramid

• PyCharm

Page 16: Enterprise python
Page 17: Enterprise python

Pyramid

• “A la carta”, usa solamente las “features” que tu necesitas.

• No obliga a usar ningún mecanismo de persistencia

• Puedes usar multiples lenguajes de template

• Pluggable points, Extensibility mechanisms

• Agnóstico

Page 18: Enterprise python

Install

easy_install pyramid

Page 19: Enterprise python

New Project

pcreate -s alchemy

pcreate -s starter MyProject

pcreate -s zodb

pcreate -s pyramid_mongodb

Page 20: Enterprise python

Setup

cd MyProjectpython setup.py develop

Page 21: Enterprise python

Test

python setup.py test -q

Page 22: Enterprise python

Serve

pserve development.ini

Page 23: Enterprise python

The Python SQL Toolkit and Object Relational Mapper

Page 24: Enterprise python

• Virtualenv

• Buildout

• bpython

• SQLAlchemy

• doctests

• Pyramid

• PyCharm

Page 25: Enterprise python

• twitter.com/alvaro_aguirre

• github.com/aaguirre