foundry-code-descript


Namefoundry-code-descript JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://AH45055@bitbucket.elevancehealth.com/scm/~ah45055/foundry-code-descript.git
SummaryA simple python library for medica and pharmacy codes
upload_time2023-06-13 16:30:52
maintainer
docs_urlNone
authorTeja Kanchinadam
requires_python>=3
license
keywords icd-10-cm cpt hcpcs gpi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # foundry-code-descript
A simple python library for medica and pharmacy codes

## Introduction
The objective of this library is to provide a simple instrument for dealing with codes such as **ICD-10-CM**, **CPT(HCPCS level 1)** and **GPI6** codes  in Python. It provides ways to check whether a code exists and returns its english description.

The data used in this library was taken from the websites of CMS, AMA and other internal company databases.

## Setup
You can install the package with pip, using this command:
```bash
pip install git+https://<username>@bitbucket.elevancehealth.com/scm/~ah45055/foundry_code_descript.git --trusted-host pypi.org --trusted-host files.pythonhosted.org
```

## Usage

```python
>>> from foundry_code_descript.descript import Descript
>>> descript = Descript()
>>> descript.describe("G8377")
#{'code_type': 'CPT', 
#'code_description': 'clinician documentation that colon cancer patient is not eligible for chemotherapy measure'}

>>> descript.describe("000000")
#{'code_type': 'NA', 'code_description': 'NA'}

```




            

Raw data

            {
    "_id": null,
    "home_page": "https://AH45055@bitbucket.elevancehealth.com/scm/~ah45055/foundry-code-descript.git",
    "name": "foundry-code-descript",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "",
    "keywords": "ICD-10-CM CPT HCPCS GPI",
    "author": "Teja Kanchinadam",
    "author_email": "teja.kanchinadam@carelon.com",
    "download_url": "",
    "platform": null,
    "description": "# foundry-code-descript\nA simple python library for medica and pharmacy codes\n\n## Introduction\nThe objective of this library is to provide a simple instrument for dealing with codes such as **ICD-10-CM**, **CPT(HCPCS level 1)** and **GPI6** codes  in Python. It provides ways to check whether a code exists and returns its english description.\n\nThe data used in this library was taken from the websites of CMS, AMA and other internal company databases.\n\n## Setup\nYou can install the package with pip, using this command:\n```bash\npip install git+https://<username>@bitbucket.elevancehealth.com/scm/~ah45055/foundry_code_descript.git --trusted-host pypi.org --trusted-host files.pythonhosted.org\n```\n\n## Usage\n\n```python\n>>> from foundry_code_descript.descript import Descript\n>>> descript = Descript()\n>>> descript.describe(\"G8377\")\n#{'code_type': 'CPT', \n#'code_description': 'clinician documentation that colon cancer patient is not eligible for chemotherapy measure'}\n\n>>> descript.describe(\"000000\")\n#{'code_type': 'NA', 'code_description': 'NA'}\n\n```\n\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A simple python library for medica and pharmacy codes",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://AH45055@bitbucket.elevancehealth.com/scm/~ah45055/foundry-code-descript.git"
    },
    "split_keywords": [
        "icd-10-cm",
        "cpt",
        "hcpcs",
        "gpi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c40eaacdc876cb427b480f29aff676a7d89ddf4cb52d1af51cef4f951225f753",
                "md5": "c3201ec18f6fa4b13200bc8772a7a8e1",
                "sha256": "8e41979c1b4b9563f9aa01083841bbfcf259953d551ef700535cf2159557e401"
            },
            "downloads": -1,
            "filename": "foundry_code_descript-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c3201ec18f6fa4b13200bc8772a7a8e1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 3619457,
            "upload_time": "2023-06-13T16:30:52",
            "upload_time_iso_8601": "2023-06-13T16:30:52.581310Z",
            "url": "https://files.pythonhosted.org/packages/c4/0e/aacdc876cb427b480f29aff676a7d89ddf4cb52d1af51cef4f951225f753/foundry_code_descript-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-13 16:30:52",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "foundry-code-descript"
}
        
Elapsed time: 0.08359s