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