'cryptography.hazmat.bindings._constant_time'이라는 모듈이 없습니다. - Exchangelib 모듈 - Python

'cryptography.hazmat.bindings._constant_time'이라는 모듈이 없습니다. - Exchangelib 모듈 - Python

다음과 같은 문제가 있습니다. 저는 win32에서 Python 32비트를 사용하고 있습니다. Exchangelib 1.12.5를 설치했지만 모듈을 가져오려고 하면 다음 오류가 발생합니다.

File "C:\Users\adu-amponan\AppData\Local\Python\lib\site-packages\cryptography\x509\extensions.py", line 19, in <module>
    from cryptography.hazmat.primitives import constant_time, serialization
File "C:\Users\adu-amponan\AppData\Local\Python\lib\site-packages\cryptography\hazmat\primitives\constant_time.py", line 11, in <module>
    from cryptography.hazmat.bindings._constant_time import lib
ModuleNotFoundError: No module named 'cryptography.hazmat.bindings._constant_time'

"cryptography/hazmat/bindings" 디렉터리로 이동하면 _constant_time 파일을 찾을 수 있지만 해당 파일의 파일 확장자는 ".cp37-win_amd64"입니다.

win32에서 Python 32비트로 작업할 때 이것이 이 오류의 원인이 될 수 있습니까, 아니면 다른 문제가 있습니까? 버전 불일치와 관련된 문제가 발생하는 경우 win32 버전의 exchangelib를 다운로드할 수 있습니까?

관련 정보