This repo is all about reusable python code blocks by Zekun Lou.
You can find more infomation in file pyproject.toml.
WARNING: this repo is experimental, please do mind the potential module version conflicts!
To install the package, please download the repo and install by pip
python -m pip install -e .- Minimal dependencies
- When using jupyter, please consider add
autoreloadto reload modules automatically.- For details, see here.
%load_ext autoreload
%autoreload 1 # Reload all modules imported with %aimport every time before executing the Python code typed.
%aimport [my_module]