Ben Chuanlong Du's Blog

It is never too late to learn.

Python Packaging Tools

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Python packaging:

https://python-packaging.readthedocs.io/en/latest/minimal.html

  1. It is recommended to use PyBuilder to manager Python projects.

pyinstaller

setuptools

pip

pip can install a package from a GitHub …

Function Programming in Python

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. The built-in function map applies a function to each element of an iterable. map is not useful mostly of time as Python has list comprehension, etc. map support iterating multiple iterables …