Pyra
Importing docx
yes, both docx and python-docx have the same module called docx that you can import.
python-docx is newer project and I believe naming was chosen for better compatibility for people who migrate from docx to python-docx.
Just try this:
14 replies
Importing docx
I believe not. The library you are trying to pin (https://pypi.org/project/docx/) is not maintained since 2014 and been moved to another project. The more up-to-date version would be https://pypi.org/project/python-docx/
14 replies
Can't get Python to work with TLS Interception, always UnknownIssuer
Thank you for information @huschplay . Original Issue is solved, so it is ok.
You asked for announcement when we remove fallback to pip. So fallback to pip since 1.466.0 is no more.
28 replies
Can't get Python to work with TLS Interception, always UnknownIssuer
@huschplay Hello again 👋
Would you mind helping us a little bit? We have to verify if uv can work with self-signed certificates or not. :) Are you using self-signed certificates or they are signed by someone else?
28 replies
Can't get Python to work with TLS Interception, always UnknownIssuer
@huschplay Hello, I think issue should be resolved on latest. If you have installed certs to system store, you can try to set
PY_NATIVE_CERT=true
so uv uses it (by default it uses it's own).
If it does not work, you can try PY_INDEX_CERT=/custom-certs/root-ca.crt
If that does work neither, you can whitelist your domain PY_TRUSTED_HOST=pypi.org
I hope that works 😊
Let me know if it does or not28 replies