open-ortho-codes


Nameopen-ortho-codes JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/open-ortho/codes
SummaryA package for managing orthodontic codes and namespaces.
upload_time2024-03-27 22:05:40
maintainerNone
docs_urlNone
authorToni Magni
requires_python>=3.6
licenseNone
keywords orthodontics codes fhir healthcare snomed
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![LinkedIn][linkedin-shield]][linkedin-url]

<!-- PROJECT LOGO -->
<br />
<p align="center">
  <a href="https://github.com/open-ortho/codes">
    <img src="https://raw.githubusercontent.com/open-ortho/dicom4ortho/master/images/open-ortho.png" alt="Logo" width="80" height="80">
  </a>

  <h3 align="center">open-ortho codes</h3>

  <p align="center">
    A collection of codes and terms from various terminologies, specifically tailored for software development within the orthodontic domain.
    <br />
    <a href="https://open-ortho.github.io/codes/"><strong>Explore the docs »</strong></a>
    <br />
    <br />
    <a href="https://github.com/open-ortho/codes">View Demo</a>
    ·
    <a href="https://github.com/open-ortho/codes/issues">Report Bug</a>
    ·
    <a href="https://github.com/open-ortho/codes/issues">Request Feature</a>
  </p>
</p>

## About The Project

This project serves as a centralized repository for orthodontic software developers, offering a curated collection of essential codes required for implementing healthcare standards like DICOM or HL7. Navigating through various terminologies to find the right codes can be challenging. Our project aims to simplify this process by providing a go-to source for these codes, readily available in JSON and CSV formats. Users can access these directly through GitHub releases or utilize them as a Python package on PyPI.

## Using The Codes

### Python

If you want to use the codes directly in your Python project:

    pip install open-ortho-codes

Then

    from ortho_codes import hl7 as codes_hl7

    print(f"{codes_hl7.orthodontic.system}")
    print(codes_hl7.orthodontic.code)
    print(codes_hl7.orthodontic.display)

Convert codes to JSON

    from ortho_codes import hl7 as codes_hl7

    print(f"{codes_hl7.orthodontic.to_json()}")

### JSON

Just point your code to any of the following:


## Releases

- Each new release must be git tagged with v*.*.*. This triggers the Github actions to publish to PyPi and release in GitHub releases.
- 

<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
[contributors-shield]: https://img.shields.io/github/contributors/open-ortho/codes.svg?style=for-the-badge
[contributors-url]: https://github.com/open-ortho/codes/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/open-ortho/codes.svg?style=for-the-badge
[forks-url]: https://github.com/open-ortho/codes/network/members
[stars-shield]: https://img.shields.io/github/stars/open-ortho/codes.svg?style=for-the-badge
[stars-url]: https://github.com/open-ortho/codes/stargazers
[issues-shield]: https://img.shields.io/github/issues/open-ortho/codes.svg?style=for-the-badge
[issues-url]: https://github.com/open-ortho/codes/issues
[license-shield]: https://img.shields.io/github/license/open-ortho/codes.svg?style=for-the-badge
[license-url]: https://github.com/open-ortho/codes/blob/master/LICENSE
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://linkedin.com/in/open-ortho
[product-screenshot]: images/screenshot.png
[example-csv-url]: resources/example/input_from.csv

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/open-ortho/codes",
    "name": "open-ortho-codes",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "orthodontics codes fhir healthcare snomed",
    "author": "Toni Magni",
    "author_email": "open-ortho@case.edu",
    "download_url": "https://files.pythonhosted.org/packages/b9/b7/ceec59549314292dc44d994a4426de6346bc9008ce3501342f711cff7fc4/open-ortho-codes-0.2.0.tar.gz",
    "platform": null,
    "description": "[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n[![LinkedIn][linkedin-shield]][linkedin-url]\n\n<!-- PROJECT LOGO -->\n<br />\n<p align=\"center\">\n  <a href=\"https://github.com/open-ortho/codes\">\n    <img src=\"https://raw.githubusercontent.com/open-ortho/dicom4ortho/master/images/open-ortho.png\" alt=\"Logo\" width=\"80\" height=\"80\">\n  </a>\n\n  <h3 align=\"center\">open-ortho codes</h3>\n\n  <p align=\"center\">\n    A collection of codes and terms from various terminologies, specifically tailored for software development within the orthodontic domain.\n    <br />\n    <a href=\"https://open-ortho.github.io/codes/\"><strong>Explore the docs \u00bb</strong></a>\n    <br />\n    <br />\n    <a href=\"https://github.com/open-ortho/codes\">View Demo</a>\n    \u00b7\n    <a href=\"https://github.com/open-ortho/codes/issues\">Report Bug</a>\n    \u00b7\n    <a href=\"https://github.com/open-ortho/codes/issues\">Request Feature</a>\n  </p>\n</p>\n\n## About The Project\n\nThis project serves as a centralized repository for orthodontic software developers, offering a curated collection of essential codes required for implementing healthcare standards like DICOM or HL7. Navigating through various terminologies to find the right codes can be challenging. Our project aims to simplify this process by providing a go-to source for these codes, readily available in JSON and CSV formats. Users can access these directly through GitHub releases or utilize them as a Python package on PyPI.\n\n## Using The Codes\n\n### Python\n\nIf you want to use the codes directly in your Python project:\n\n    pip install open-ortho-codes\n\nThen\n\n    from ortho_codes import hl7 as codes_hl7\n\n    print(f\"{codes_hl7.orthodontic.system}\")\n    print(codes_hl7.orthodontic.code)\n    print(codes_hl7.orthodontic.display)\n\nConvert codes to JSON\n\n    from ortho_codes import hl7 as codes_hl7\n\n    print(f\"{codes_hl7.orthodontic.to_json()}\")\n\n### JSON\n\nJust point your code to any of the following:\n\n\n## Releases\n\n- Each new release must be git tagged with v*.*.*. This triggers the Github actions to publish to PyPi and release in GitHub releases.\n- \n\n<!-- MARKDOWN LINKS & IMAGES -->\n<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->\n[contributors-shield]: https://img.shields.io/github/contributors/open-ortho/codes.svg?style=for-the-badge\n[contributors-url]: https://github.com/open-ortho/codes/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/open-ortho/codes.svg?style=for-the-badge\n[forks-url]: https://github.com/open-ortho/codes/network/members\n[stars-shield]: https://img.shields.io/github/stars/open-ortho/codes.svg?style=for-the-badge\n[stars-url]: https://github.com/open-ortho/codes/stargazers\n[issues-shield]: https://img.shields.io/github/issues/open-ortho/codes.svg?style=for-the-badge\n[issues-url]: https://github.com/open-ortho/codes/issues\n[license-shield]: https://img.shields.io/github/license/open-ortho/codes.svg?style=for-the-badge\n[license-url]: https://github.com/open-ortho/codes/blob/master/LICENSE\n[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555\n[linkedin-url]: https://linkedin.com/in/open-ortho\n[product-screenshot]: images/screenshot.png\n[example-csv-url]: resources/example/input_from.csv\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A package for managing orthodontic codes and namespaces.",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/open-ortho/codes"
    },
    "split_keywords": [
        "orthodontics",
        "codes",
        "fhir",
        "healthcare",
        "snomed"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb89c00744d788145ec6f147f09df50d07e1cdaff3788c75acefe3165ae3120d",
                "md5": "df6b3ada7363f5f64525daf415ea7b38",
                "sha256": "adaa41cdacc1d2e0510209157ae30cfffa5a415f2161658de6e522c709fa690e"
            },
            "downloads": -1,
            "filename": "open_ortho_codes-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "df6b3ada7363f5f64525daf415ea7b38",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 6793,
            "upload_time": "2024-03-27T22:05:38",
            "upload_time_iso_8601": "2024-03-27T22:05:38.733910Z",
            "url": "https://files.pythonhosted.org/packages/fb/89/c00744d788145ec6f147f09df50d07e1cdaff3788c75acefe3165ae3120d/open_ortho_codes-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9b7ceec59549314292dc44d994a4426de6346bc9008ce3501342f711cff7fc4",
                "md5": "2717984f1e9b4bca4a723d195f71a103",
                "sha256": "f7b167cbbb8dba9f937bba60764265437accb5d61cca15da96b5e6fb98a3a846"
            },
            "downloads": -1,
            "filename": "open-ortho-codes-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2717984f1e9b4bca4a723d195f71a103",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 6069,
            "upload_time": "2024-03-27T22:05:40",
            "upload_time_iso_8601": "2024-03-27T22:05:40.314826Z",
            "url": "https://files.pythonhosted.org/packages/b9/b7/ceec59549314292dc44d994a4426de6346bc9008ce3501342f711cff7fc4/open-ortho-codes-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-27 22:05:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "open-ortho",
    "github_project": "codes",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "open-ortho-codes"
}
        
Elapsed time: 0.21964s