Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Useful Tools for Python Developing
Hash Password Using Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Using the Python Package crypt¶
Format Python Code Using Black
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Installation
pip3 install -U black[jupter]
Usage
The following code formats Python files and Jupyter/Lab Notebooks under the current directory.
black ./
References
Read CSV Using Polars in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Hands on the Polars Library in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
polars.DataFrame.unique
andpolars.Series.unique
do not maintain the original order by default. To maintain the original order, pass the optionmaintain_order=True
.