You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@rudolphpienaar ModuleNotFoundError: No module named 'fcntl'
this is the error when executing the code provided and when u try to install the module it doesn't install, from what i found online that "fcntl" library doesn't work on windows and only on unix based operating systems
Oh, yes. That module is used in the smdb.py (SiMple DataBase) module. It is on the roadmap to overhaul that entire infrastructure, but not anytime too soon, I'm afraid. I don' t use Windows, I'm afraid.
However, you can use pypx and all its features from its dockerized builds on Windows. HTH
from my research this tool works only on unix based operating systems, so no luck on windows, here is my code for reference:
import pypx
pacs_settings = {
'aet': 'ABC',
'server_ip': '127.0.0.2',
'server_port': '11112',
}
query parameters
query_settings = {
'StudyInstaneUID': "1223"
}
output = pypx.find({**pacs_settings, **query_settings})
print(output)
obvsly i have replaced the original credentials with dummy ones
The text was updated successfully, but these errors were encountered: