| 1 | [DebianPackage:python], [DebianPackage:python3], [DebianPackage:pypy] |
| 2 | = Compatibility 2-3 = |
| 3 | * [DebianPackage:python-six], [DebianPackage:python3-six], [DebianPackage:pypy-six] |
| 4 | * [DebianPackage:python-3to2], [DebianPackage:python3-3to2] |
| 5 | = fcgi = |
| 6 | * [DebianPackage:python-flup] Python 2 Only! |
| 7 | * [http://stackoverflow.com/questions/23482357/fastcgi-wsgi-library-in-python-3 FastCGI WSGI library in Python 3?] |
| 8 | * https://pypi.python.org/pypi/flup6 |
| 9 | = Installing = |
| 10 | * [https://packaging.python.org/installing/ Installing Packages] |
| 11 | * [DebianPackage:python-virtualenv], [DebianPackage:python3-venv] |
| 12 | {{{#!sh |
| 13 | $ virtualenv <DIR> |
| 14 | }}} |
| 15 | {{{#!sh |
| 16 | $ python3 -m venv <DIR> |
| 17 | }}} |
| 18 | * [DebianPackage:python-pip], [DebianPackage:python-pip] |
| 19 | {{{#!sh |
| 20 | $ pip install 'SomeProject' |
| 21 | $ pip install 'SomeProject' --upgrade |
| 22 | $ pip install -r <requirements file> |
| 23 | $ pip install -r <requirements file> --upgrade |
| 24 | $ pip list |
| 25 | $ pip list --outdated |
| 26 | $ pip show 'SomeProject' |
| 27 | }}} |
| 28 | * [https://packaging.python.org/installing/#id22 Installing from local archives] |
| 29 | {{{#!sh |
| 30 | $ pip install --no-index --find-links=file:///local/dir/ SomeProject |
| 31 | $ pip install --no-index --find-links=/local/dir/ SomeProject |
| 32 | $ pip install --no-index --find-links=relative/dir/ SomeProject |
| 33 | }}} |
| 34 | = Web Applications = |
| 35 | == Kotti == |
| 36 | * https://pypi.python.org/pypi/Kotti |
| 37 | * http://kotti.pylonsproject.org/ |
| 38 | * https://github.com/Kotti/Kotti |
| 39 | * http://danielnouri.org/notes/2010/01/25/16-hours-into-a-new-cms-with-pyramid/ |
| 40 | * http://davidemoro.blogspot.ca/2015/07/kotti-cms-successful-story-part-1.html |
| 41 | * http://fr.slideshare.net/avoinea/kotti-cms-101 |
| 42 | === Pyramid documentation for Kotti installation === |
| 43 | * [DebianPackage:python-pyramid], [DebianPackage:python3-pyramid] |
| 44 | * [http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/startup.html Startup] |
| 45 | * [http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/paste.html PasteDeploy Configuration Files] |
| 46 | == Pyramid == |
| 47 | === Pyramid Sessions === |
| 48 | * [http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/pylons/sessions.html Sessions] |
| 49 | * [http://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/ pyramid_beaker] |
| 50 | * [DebianPackage:python-pyramid-beaker], ([DebianPackage:python3-pyramid-beaker] not yet) |
| 51 | * [DebianPackage:python-beaker], [DebianPackage:python3-beaker] |
| 52 | * [https://pypi.python.org/pypi/dogpile.cache dogpile.cache] |
| 53 | * [DebianPackage:python-dogpile.cache], [DebianPackage:python3-dogpile.cache] |
| 54 | * [https://pypi.python.org/pypi/pyramid-dogpile-cache2 pyramid-dogpile-cache2] |
| 55 | * [https://pypi.python.org/pypi/pyramid_dogpile_cache pyramid_dogpile_cache] |
| 56 | === Pyramid at Debian === |
| 57 | https://packages.debian.org/fr/pyramid |
| 58 | * [DebianPackage:python-pyramid], [DebianPackage:python3-pyramid] |
| 59 | * [DebianPackage:python-pyramid-multiauth], [DebianPackage:python3-pyramid-multiauth] |
| 60 | ... |