{ "info": { "author": "Arkadiusz Lalo", "author_email": "alalo@soldevelo.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 2.1", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# openIMIS Backend FHIR API reference module\n\n| Note |\n| --- |\n|This repository currently supports basic functionality of FHIR API and might miss some openIMIS specific validations. Please use it with caution if you want to connect it to a production database.|\n\n[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)\n\n[![Maintainability](https://img.shields.io/codeclimate/maintainability/openimis/openimis-be-api_fhir_py.svg)](https://codeclimate.com/github/openimis/openimis-be-api_fhir_py/maintainability)\n[![Test Coverage](https://img.shields.io/codeclimate/coverage/openimis/openimis-be-api_fhir_py.svg)](https://codeclimate.com/github/openimis/openimis-be-api_fhir_py)\n\n## Description\nThis repository holds the files of the openIMIS Backend FHIR API reference module. \nIt is dedicated to be deployed as a module of [openimis-be_py](https://github.com/openimis/openimis-be_py).\n\nThe module is mapping objects between openIMIS and FHIR representation, \nand allows external applications to use HL7 FHIR standardised communication protocol \nwhen interacting with openIMIS.\n\n## Documentation\nThe documentation for this module can be found at [openIMIS Wiki page](https://openimis.atlassian.net/wiki/spaces/OP/pages/868417563).\n\n## Implementation setup\nThis module is published on Python Package Index as [openimis-be-api-fhir](https://pypi.org/project/openimis-be-api-fhir).\n\nThe FHIR API will be available after the module is deployed on [openimis-be_py](https://github.com/openimis/openimis-be_py). \nCheck the [openimis-be_py](https://github.com/openimis/openimis-be_py)'s readme file on how to activate the module \n(add the 'api_fhir' module to [openimis.json](https://github.com/openimis/openimis-be_py/blob/master/openimis.json)) \nand start the openIMIS backend. \n\n## Configurations Options\n| Configuration key | Description | Default value |\n|------------------------------------------------|------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| default_audit_user_id | default value which will be used for 'audit_user_id' field | \"default_audit_user_id\": 1 |\n| gender_codes | configuration of codes used by the openIMIS to represent gender (male, female, other) | \"gender_codes\": { \"male\": \"M\", \"female\": \"F\", \"other\": \"O\" } |\n| stu3_fhir_identifier_type_config | configuration of system and codes used to represent the specific types of identifiers | \"stu3_fhir_identifier_type_config\":{ \"system\":\"https://hl7.org/fhir/valueset-identifier-type.html\", \"fhir_code_for_imis_db_id_type\":\"ACSN\", \"fhir_code_for_imis_chfid_type\":\"SB\", \"fhir_code_for_imis_passport_type\":\"PPN\", \"fhir_code_for_imis_facility_id_type\":\"FI\", \"fhir_code_for_imis_claim_admin_code_type\":\"FILL\", \"fhir_code_for_imis_claim_code_type\":\"MR\"} |\n| stu3_fhir_marital_status_config | configuration of system and codes used to represent the specific types of marital status | \"stu3_fhir_marital_status_config\":{ \"system\":\"https://www.hl7.org/fhir/STU3/valueset-marital-status.html\", \"fhir_code_for_married\":\"M\", \"fhir_code_for_never_married\":\"S\",\"fhir_code_for_divorced\":\"D\",\"fhir_code_for_widowed\":\"W\",\"fhir_code_for_unknown\":\"U\"}, |\n| default_value_of_patient_head_attribute | default value for 'head' attribute used for creating new Insuree object | \"default_value_of_patient_head_attribute\": False, |\n| default_value_of_patient_card_issued_attribute | default value for 'card_issued' attribute used for creating new Insuree object | \"default_value_of_patient_card_issued_attribute\": False, |\n\n## Example of usage\nTo fetch information about all openIMIS Insurees (as FHIR Patients), send a **GET** request on:\n```bash\nhttp://127.0.0.1:8000/api_fhir/Patient/\n```\n`127.0.0.1:8000` is the server address (if run on your local host).\n\nExample of response ([mapping description](https://openimis.atlassian.net/wiki/spaces/OP/pages/929562664)):\n```json\n{\n \"resourceType\": \"Bundle\",\n \"entry\": [\n {\n \"fullUrl\": \"http://127.0.0.1:8000/api_fhir/Patient/1D464C09-5334-407F-9882-14C097B89BBD\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"address\": [\n {\n \"text\": \"address\",\n \"type\": \"physical\",\n \"use\": \"home\"\n },\n {\n \"text\": \"geolocation\",\n \"type\": \"both\",\n \"use\": \"home\"\n }\n ],\n \"birthDate\": \"2000-01-02\",\n \"gender\": \"female\",\n \"id\": \"1D464C09-5334-407F-9882-14C097B89BBD\",\n \"identifier\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"ACSN\",\n \"system\": \"https://hl7.org/fhir/valueset-identifier-type.html\"\n }\n ]\n },\n \"use\": \"usual\",\n \"value\": \"1D464C09-5334-407F-9882-14C097B89BBD\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"SB\",\n \"system\": \"https://hl7.org/fhir/valueset-identifier-type.html\"\n }\n ]\n },\n \"use\": \"usual\",\n \"value\": \"Insuree ID (e.g. 123456789)\"\n },\n {\n \"type\": {\n \"coding\": [\n {\n \"code\": \"PPN\",\n \"system\": \"https://hl7.org/fhir/valueset-identifier-type.html\"\n }\n ]\n },\n \"use\": \"usual\",\n \"value\": \"passport number\"\n }\n ],\n \"maritalStatus\": {\n \"coding\": [\n {\n \"code\": \"U\",\n \"system\": \"https://www.hl7.org/fhir/STU3/valueset-marital-status.html\"\n }\n ]\n },\n \"name\": [\n {\n \"family\": \"test patient\",\n \"given\": [\n \"test patient\"\n ],\n \"use\": \"usual\"\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"use\": \"home\",\n \"value\": \"phone number\"\n },\n {\n \"system\": \"email\",\n \"use\": \"home\",\n \"value\": \"email@email.com\"\n }\n ]\n }\n }\n ],\n \"link\": [\n {\n \"relation\": \"self\",\n \"url\": \"http://127.0.0.1:8000/api_fhir/Patient/?_count=2\"\n },\n {\n \"relation\": \"next\",\n \"url\": \"http://127.0.0.1:8000/api_fhir/Patient/?_count=2&page-offset=2\"\n }\n ],\n \"total\": 9,\n \"type\": \"searchset\"\n}\n```\n\n# Dependencies\nAll required dependencies can be found in the [setup.py](https://github.com/openimis/openimis-be-claim_py/blob/master/setup.py) file.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://openimis.org/", "keywords": "", "license": "GNU AGPL v3", "maintainer": "", "maintainer_email": "", "name": "openimis-be-api-fhir", "package_url": "https://pypi.org/project/openimis-be-api-fhir/", "platform": "", "project_url": "https://pypi.org/project/openimis-be-api-fhir/", "project_urls": { "Homepage": "https://openimis.org/" }, "release_url": "https://pypi.org/project/openimis-be-api-fhir/1.1.0/", "requires_dist": [ "django", "django-db-signals", "djangorestframework", "openimis-be-claim", "openimis-be-core", "openimis-be-insuree", "openimis-be-location", "openimis-be-policy" ], "requires_python": "", "summary": "The openIMIS Backend FHIR API reference module.", "version": "1.1.0", "yanked": false, "yanked_reason": null }, "last_serial": 7354100, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "7000d578008fc135cbd2c7e95395ddd1", "sha256": "3dad0f3d5a05bf8c26c6edfb9d75c0211fc86669c5a8a9f6730e1170e566ae5d" }, "downloads": -1, "filename": "openimis_be_api_fhir-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7000d578008fc135cbd2c7e95395ddd1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25740, "upload_time": "2019-05-29T09:25:24", "upload_time_iso_8601": "2019-05-29T09:25:24.970554Z", "url": "https://files.pythonhosted.org/packages/b1/e8/2879d88cc8b4e09fd522ca3a81892c5ec9605cb2e4264ad91c2cf2f66306/openimis_be_api_fhir-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "3686e40efd8d688fb1f119199bdef36d", "sha256": "e537eb3937c26c4284d0192c497eb612fcd8566ed8e0eee15a278a0ac5c989f6" }, "downloads": -1, "filename": "openimis_be_api_fhir-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "3686e40efd8d688fb1f119199bdef36d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53569, "upload_time": "2019-07-01T08:41:43", "upload_time_iso_8601": "2019-07-01T08:41:43.860555Z", "url": "https://files.pythonhosted.org/packages/b2/21/4f0cd916627fc7d7c7c2f05c0f94e08b045d3a14c0b20e4db50bed2bb389/openimis_be_api_fhir-0.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "c8304516fdeb9964e31f45773bb9cacc", "sha256": "1e5139f7fc08a5ab2fbddeedd29a102c0206d275c2b6937c603981d6830b303e" }, "downloads": -1, "filename": "openimis_be_api_fhir-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c8304516fdeb9964e31f45773bb9cacc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 92041, "upload_time": "2019-07-22T08:47:16", "upload_time_iso_8601": "2019-07-22T08:47:16.208350Z", "url": "https://files.pythonhosted.org/packages/f1/59/d7eb5b2b026c0f3435fcd85042ff70055c92d4d96152696418a45af1f329/openimis_be_api_fhir-0.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "4815c0f88fc861ff9c65e52e78642110", "sha256": "0279e913432515b0b2eed2d702e97d3996c647368accbd270eff3a00fb93a50d" }, "downloads": -1, "filename": "openimis_be_api_fhir-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "4815c0f88fc861ff9c65e52e78642110", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 92400, "upload_time": "2019-07-24T09:40:33", "upload_time_iso_8601": "2019-07-24T09:40:33.220333Z", "url": "https://files.pythonhosted.org/packages/e9/b8/a60960ce04b75445ab8f8f716b94cd4d232b17354c6f3af007c150c92a47/openimis_be_api_fhir-0.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "388bb129f7f57204c72584a656e0ddaa", "sha256": "5051cb71293025d91070ebd52f90557370e5dc8c8c11b5c500d4a5757af2ec3b" }, "downloads": -1, "filename": "openimis_be_api_fhir-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "388bb129f7f57204c72584a656e0ddaa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93967, "upload_time": "2019-10-03T08:32:18", "upload_time_iso_8601": "2019-10-03T08:32:18.061836Z", "url": "https://files.pythonhosted.org/packages/32/ac/c901f820b4d988bf9c9f6200c71a6982003aa4346fb5122093e903e7c9d8/openimis_be_api_fhir-0.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "1602f70fd8dd3b260f60ef6dd6b756e7", "sha256": "c7183010479c75bbbe47e9421ac8a87d7213415a9f6ea6a493870ebf3f9429c2" }, "downloads": -1, "filename": "openimis_be_api_fhir-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "1602f70fd8dd3b260f60ef6dd6b756e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93972, "upload_time": "2019-10-24T09:43:32", "upload_time_iso_8601": "2019-10-24T09:43:32.956446Z", "url": "https://files.pythonhosted.org/packages/22/de/1f0dd66124cbd04e07d214668a85295ede4e5b35248c4569edd8e456eeaf/openimis_be_api_fhir-0.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "06a2e96939c5e08f85e78c6ac0997973", "sha256": "a1b837d37090035f662ab427f88aa27c6e95ceef32b7c69f27ddf5c883e80653" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "06a2e96939c5e08f85e78c6ac0997973", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93965, "upload_time": "2019-10-14T12:50:59", "upload_time_iso_8601": "2019-10-14T12:50:59.746057Z", "url": "https://files.pythonhosted.org/packages/fb/e1/a00f4bfabb39e44b966a96441703dad81bfb8b69600586fdad2679844d28/openimis_be_api_fhir-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "3aa4f9310f0a6317516f353e0f6b077c", "sha256": "2824d8d73ffdc9c0f049b426652ec605abfab6b872fe517f3b1a42845f30e766" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3aa4f9310f0a6317516f353e0f6b077c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93969, "upload_time": "2019-11-03T07:41:31", "upload_time_iso_8601": "2019-11-03T07:41:31.545997Z", "url": "https://files.pythonhosted.org/packages/80/90/95e17d8ff1ef2e7c2ef013bf62788d8be580f507b800a688a258afd9df89/openimis_be_api_fhir-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "17703b6e0e5ce8a0ab5ad37ec99c28f6", "sha256": "b7f3f9434e33c6aa7397a98aa8866e2bf6f56cd164d1966397ceae0294333f42" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "17703b6e0e5ce8a0ab5ad37ec99c28f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93971, "upload_time": "2019-11-25T12:27:58", "upload_time_iso_8601": "2019-11-25T12:27:58.731268Z", "url": "https://files.pythonhosted.org/packages/e9/cf/e6076993d3a964c4dd45487fc4cc9e14408f2a1a5330556d4b8784f486eb/openimis_be_api_fhir-1.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "de60fab67885451a3fb97d4babd3990b", "sha256": "6c097a12a31b5ddf85f4e1f167c2273573b889ee425e53e5606cfc328fee3b34" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "de60fab67885451a3fb97d4babd3990b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94179, "upload_time": "2019-11-26T15:34:18", "upload_time_iso_8601": "2019-11-26T15:34:18.486439Z", "url": "https://files.pythonhosted.org/packages/da/2f/0e4adf7265452c5bab4638310cb3e74f5db141de4020f967336c71e8f170/openimis_be_api_fhir-1.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "110a68d9f0024bc30fc0f55998d80dba", "sha256": "2808c5b96cab14dd371fe0bfddf42039b314d0e2eab41d5729d7a995cd8e4ded" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "110a68d9f0024bc30fc0f55998d80dba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94165, "upload_time": "2019-12-19T11:36:25", "upload_time_iso_8601": "2019-12-19T11:36:25.260011Z", "url": "https://files.pythonhosted.org/packages/64/20/08e6a4a356c067e63c971f7337b6ad4da440b819e53407d7189ea0965ad2/openimis_be_api_fhir-1.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "2ba6a0fb0d7b356f5e38b690ae072eb2", "sha256": "51b7363f30ecfe1aaf2c01997a729c5297842c51b8503d5347ba0545e7bc1888" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "2ba6a0fb0d7b356f5e38b690ae072eb2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 98391, "upload_time": "2020-02-04T15:13:54", "upload_time_iso_8601": "2020-02-04T15:13:54.918782Z", "url": "https://files.pythonhosted.org/packages/0d/4f/fbf18b3b1094cb0bfe33474071f59a2998da382fc9e559195e56f01aceb7/openimis_be_api_fhir-1.0.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efa8ff9e3af77882520b56b5158a286e", "sha256": "d95988fd00093df10e3e1bcdb670bb70b0002d24db4cd2bbb8c45d69a97a3da1" }, "downloads": -1, "filename": "openimis-be-api_fhir-1.0.5.tar.gz", "has_sig": false, "md5_digest": "efa8ff9e3af77882520b56b5158a286e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52166, "upload_time": "2020-02-04T15:13:57", "upload_time_iso_8601": "2020-02-04T15:13:57.213488Z", "url": "https://files.pythonhosted.org/packages/38/00/73beacd81ba3a41b1654d027b9ff15dcb20daa4d4ac6889e9128f480e600/openimis-be-api_fhir-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "efebd76febc449ab32d0d1188f659163", "sha256": "d4900a655d20a7615445ea5b0efb92a454524da2332a5bff1838823b3589fe08" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "efebd76febc449ab32d0d1188f659163", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 98423, "upload_time": "2020-02-04T16:08:26", "upload_time_iso_8601": "2020-02-04T16:08:26.528563Z", "url": "https://files.pythonhosted.org/packages/53/8b/8ec4a9e6b2d4a234eb5e70e233d921bf3a6ae95700c6bd51d44180e4eec0/openimis_be_api_fhir-1.0.6-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09a778c554354758f5d0f0c75380ab21", "sha256": "8c987d59f692055bd760f933a7e316945f9e037a81d4fffd7b44db0135f40f0a" }, "downloads": -1, "filename": "openimis-be-api_fhir-1.0.6.tar.gz", "has_sig": false, "md5_digest": "09a778c554354758f5d0f0c75380ab21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52193, "upload_time": "2020-02-04T16:08:28", "upload_time_iso_8601": "2020-02-04T16:08:28.773189Z", "url": "https://files.pythonhosted.org/packages/a3/19/30283e244ef2290fe13670ee74caf499f1162e76fd95545af38abda9d880/openimis-be-api_fhir-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "695511c556f08cfec7e5e70c389a2ae3", "sha256": "13f0bc3bfe383550b9249123b9f223f72f4c04eb2c1a54f8f8e81d50cbbd8ba7" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "695511c556f08cfec7e5e70c389a2ae3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101690, "upload_time": "2020-04-08T20:15:30", "upload_time_iso_8601": "2020-04-08T20:15:30.270970Z", "url": "https://files.pythonhosted.org/packages/58/0f/23ea8ad5c39b8aa1bf773d4a7870677f0a6e6b30fbeab06fdfcd36a26927/openimis_be_api_fhir-1.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "d4ce05ed77be52d4f181fb7b4d36cc53", "sha256": "3c55b6ec525db1d6be13239d9b3f71183e7f97732946b51920cf586e64c94f0b" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d4ce05ed77be52d4f181fb7b4d36cc53", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101690, "upload_time": "2020-04-20T18:40:28", "upload_time_iso_8601": "2020-04-20T18:40:28.947991Z", "url": "https://files.pythonhosted.org/packages/04/05/5564ae4bbcf9b2cd69017bdde65a8ff6ca52077442ec73bbc34dc58353d5/openimis_be_api_fhir-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.2.0rc1": [ { "comment_text": "", "digests": { "md5": "a10e723707175aeee81ab581594021b3", "sha256": "cd798bb1b5eb21b90589ff1380e30e09f7a1141d0b4d0fe7194490d6968e9818" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.2.0rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "a10e723707175aeee81ab581594021b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101746, "upload_time": "2020-05-29T16:29:45", "upload_time_iso_8601": "2020-05-29T16:29:45.977288Z", "url": "https://files.pythonhosted.org/packages/92/63/32210e496e342bfa8a9e6d6b23a813459265976993af57e90cdaf570226b/openimis_be_api_fhir-1.2.0rc1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df119b2b69ace2243b295f2ae6570c61", "sha256": "7bd6f993d489e803a652a8cc6dc87f0a7af45c44910b17d79bf4596507a8d210" }, "downloads": -1, "filename": "openimis-be-api_fhir-1.2.0rc1.tar.gz", "has_sig": false, "md5_digest": "df119b2b69ace2243b295f2ae6570c61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59360, "upload_time": "2020-05-29T16:29:47", "upload_time_iso_8601": "2020-05-29T16:29:47.326863Z", "url": "https://files.pythonhosted.org/packages/59/4e/f58243d6e3a5897c52116ce58f676ead52aa33eab8fe17fdffa836c672f7/openimis-be-api_fhir-1.2.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d4ce05ed77be52d4f181fb7b4d36cc53", "sha256": "3c55b6ec525db1d6be13239d9b3f71183e7f97732946b51920cf586e64c94f0b" }, "downloads": -1, "filename": "openimis_be_api_fhir-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d4ce05ed77be52d4f181fb7b4d36cc53", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101690, "upload_time": "2020-04-20T18:40:28", "upload_time_iso_8601": "2020-04-20T18:40:28.947991Z", "url": "https://files.pythonhosted.org/packages/04/05/5564ae4bbcf9b2cd69017bdde65a8ff6ca52077442ec73bbc34dc58353d5/openimis_be_api_fhir-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }