7th April 2021
Coding⚑
Python⚑
-
New: Add interesting links on how to write good documentation.
I would like to refactor divio's and Vue's guidelines and apply it to my projects.
DeepDiff⚑
-
Improvement: Add warning that regular expressions are not yet supported.
Until #239 is merged, the official library doesn't support searching for regular expressions. You can use my fork instead.
Python Snippets⚑
-
New: Explain how to install dependencies from git repositories.
With pip you can:
pip install git+git://github.com/path/to/repository@master
If you want to hard code it in your
setup.py
, you need to:install_requires = [ 'some-pkg @ git+ssh://git@github.com/someorgname/pkg-repo-name@v1.1#egg=some-pkg', ]