Differences between revisions 7 and 10 (spanning 3 versions)
Revision 7 as of 2018-02-04 06:15:05
Size: 796
Editor: PieterSmit
Comment:
Revision 10 as of 2019-05-08 09:34:45
Size: 1187
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
 * 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 libraries ==

=== Python command line ==
 * $ pip install [[https://github.com/kennethreitz/delegator.py/blob/master/README.rst|delegator.py]]

PYTHON links

Python Virtual Environments

  • Since python 3.5 use pyton to create

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

Python libraries

=== Python command line ==

...


CategoryDevelopement

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