some problems of using Python's Cryptography on Windows

Advertisements I would like to use the cryptography’s module on Windows, I am using version 1.12 and Python 3.10.6, and I have some problems. Actually, when I run my script, I receive the error : ` Traceback (most recent call last): File "C:/Users/edoua/Documents/cryptographie.py", line 1, in <module> from cryptography.fernet import Fernet File "C:\Users\edoua\AppData\Local\Programs\Python\Python310\lib\site-packages\cryptography\fernet.py", line 16,… Read More some problems of using Python's Cryptography on Windows

Python docs: confusing terminology of modules and submodules

Advertisements The docs say: Packages are a way of structuring Python’s module namespace by using “dotted module names”. For example, the module name A.B designates a submodule named B in a package named A. A package is defined in the docs a dir with some either subdirs or files. Those subdirs would be subpackages, following… Read More Python docs: confusing terminology of modules and submodules