A simple REST API implementation for Radiology Nuance PowerScribe 360 dictation system
Project description
PyPowerscribe360
This is a REST API implementation for Radiology Nuance PowerScribe 360 dictation system. This API will allow you to send and retrieve data points into pre-built custom fields that populates radiologist final report. For example, you can push radiation dose information into custom field that will populate the radiologist final report.
Sample Implementation
The following will allow you to connect to PowerScribe 360 server and send custom field to the radiologist report.
from powerscribe import Powerscribe
if __name__ == '__main__':
url = 'http://ps360ServerName/RadPortal'
username = "PowerScribe USERNAME"
password = "PowerScribe Password"
accession = "12345"
field_name = "CTRAD"
field_value = "29997"
with Powerscribe(url) as ps:
if ps.sign_in(username, password):
print("Signin successfully")
if ps.set_custom_field(accession, field_name, field_value):
print(f"Sent field name {field_name} and value {field_value} into accession {accession})
else:
print(f"Error sending field name {field_name} and value {field_value} into accession {accession}")
else:
print("Signin failed")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file powerscribe-1.3-py3-none-any.whl.
File metadata
- Download URL: powerscribe-1.3-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ac85c6ca54c6db703db1d8e0652ac4757a61fc147e74f9b947c1940b99bc494
|
|
| MD5 |
3a9a654f11386c27caee180a22be98f6
|
|
| BLAKE2b-256 |
088d832eeae659345e84aba7efe46f889be7372a4fed8785a8df90ef38a38ab7
|