Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Python Tips and Traps
Misc¶
https://docs.python-guide.org/writing/gotchas/
https://stackoverflow.com/questions/101268/hidden-features-of-python
- The
int
type in Python 3 is unbounded, which means that there is no limit on the range of integer numbers that anint
can represent. However, there are still various integer related limits in Python 3 due to the interpreter's word size (sys.maxsize
Hands on the Python Library pdfplumber
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Stirling-PDF is is a robust, locally hosted web-based PDF manipulation tool using Docker.
Tips on asyncio in Python
async http client¶
Tips on Python Module
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Import a Module
-
There are 3 different ways to import Python modules.
import module_name import module_name as alias from module import pkg_mod_or_fun
-
The module
importlib.resources
(since Python 3.7+) leverages …