Differences between revisions 6 and 9 (spanning 3 versions)
Revision 6 as of 2016-12-13 00:24:46
Size: 775
Editor: PieterSmit
Comment:
Revision 9 as of 2019-02-09 09:40:46
Size: 1028
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
 * [[SplitSyslogInPython]]  * [[SplitSyslogInPython]] , [[Python/AsyncIo]]
 * Retry with [[https://julien.danjou.info/python-tenacity/]]
Line 11: Line 12:
 * Decorators - http://thecodeship.com/patterns/guide-to-python-function-decorators/  * Decorators - http://thecodeship.com/patterns/guide-to-python-function-decorators/,

== Python Virtual Environments ==
 * Since python 3.5 use pyton to create {{{
   python3 -m venv myproject/
   #activate
   source myproject/bin/activate
}}}

PYTHON links

Python Virtual Environments

  • Since python 3.5 use pyton to create

       python3 -m venv myproject/
       #activate
       source myproject/bin/activate

...


CategoryDevelopement

Python (last edited 2023-10-10 00:31:07 by PieterSmit)