Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release. See tutorial on generating distribution archives.

Built Distribution

powerscribe-1.3-py3-none-any.whl (3.8 kB view hashes)

Uploaded py3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page