Differences between revisions 5 and 15 (spanning 10 versions)
Revision 5 as of 2016-12-10 06:02:39
Size: 691
Editor: PieterSmit
Comment:
Revision 15 as of 2020-01-23 19:33:55
Size: 1513
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
 * [[SplitSyslogInPython]]  * pyenv - shell tool for selecting Python interpret
 * [[SplitSyslogInPython]] , [[Python/AsyncIo]] [[https://dbader.org/blog/python-dunder-methods|__Dunders__]]

 * Retry with [[https://julien.danjou.info/python-tenacity/]]
Line 11: Line 14:
 * Decorators - http://thecodeship.com/patterns/guide-to-python-function-decorators/,
Line 12: Line 16:
== 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]]
 
 * $ pip3 install timeloop [[https://medium.com/greedygame-engineering/an-elegant-way-to-run-periodic-tasks-in-python-61b7c477b679]]

 * [[https://github.com/pallets/click/blob/master/README.rst|click]]

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)