Rodrigo Girão Serrão: TIL #135 – Build the Python documentation
Link: https://mathspp.com/blog/til/build-the-python-documentation
Today I learned how to build the Python documentation to preview changes I wanted to make.
If you're not on Windows, all it takes is to run make -C Doc venv htmllive to build the Python documentation
Link: https://mathspp.com/blog/til/build-the-python-documentation
Today I learned how to build the Python documentation to preview changes I wanted to make.
If you're not on Windows, all it takes is to run make -C Doc venv htmllive to build the Python documentation
Mathspp
TIL 135 – Build the Python documentation
Today I learned how to build the Python documentation to preview changes I wanted to make.
Brian Okken: Polite lazy imports for Python package maintainers
Link: https://pythontest.com/polite-lazy-imports-python-packages/
If you are a maintainer of a Python package, it’s nice if you pay attention to the time it takes to import your package.
Further, if you’ve got a Python package with multiple components where it’s pro
Link: https://pythontest.com/polite-lazy-imports-python-packages/
If you are a maintainer of a Python package, it’s nice if you pay attention to the time it takes to import your package.
Further, if you’ve got a Python package with multiple components where it’s pro
Pythontest
Polite lazy imports for Python package maintainers | PythonTest
Allow people to import just the part of your package that they need, when they need it.