File tree Expand file tree Collapse file tree 4 files changed +7
-20
lines changed
Expand file tree Collapse file tree 4 files changed +7
-20
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased] ( https://github.com/dermatologist/fhiry/tree/HEAD )
44
5- [ Full Changelog] ( https://github.com/dermatologist/fhiry/compare/5.0 .0...HEAD )
5+ [ Full Changelog] ( https://github.com/dermatologist/fhiry/compare/v5.1 .0...HEAD )
66
77** Implemented enhancements:**
88
3939- add utf-8 encoding [ \# 134] ( https://github.com/dermatologist/fhiry/pull/134 ) ([ fhirfly] ( https://github.com/fhirfly ) )
4040- Feature/fix-warnings-1 [ \# 113] ( https://github.com/dermatologist/fhiry/pull/113 ) ([ dermatologist] ( https://github.com/dermatologist ) )
4141
42+ ## [ v5.1.0] ( https://github.com/dermatologist/fhiry/tree/v5.1.0 ) (2025-08-15)
43+
44+ [ Full Changelog] ( https://github.com/dermatologist/fhiry/compare/5.0.0...v5.1.0 )
45+
4246## [ 5.0.0] ( https://github.com/dermatologist/fhiry/tree/5.0.0 ) (2025-06-15)
4347
4448[ Full Changelog] ( https://github.com/dermatologist/fhiry/compare/4.2.1...5.0.0 )
Original file line number Diff line number Diff line change 11# 🔥 fhiry — FHIR to Pandas DataFrame for Data Analytics, AI, and ML
22
33[ ![ Release] ( https://img.shields.io/github/v/release/dermatologist/fhiry )] ( https://img.shields.io/github/v/release/dermatologist/fhiry )
4- [ ![ Build status] ( https://img.shields.io/github/actions/workflow/status/dermatologist/fhiry/main .yml?branch=main )] ( https://github.com/dermatologist/fhiry/actions/workflows/main .yml?query=branch%3Amain )
5- [ ![ codecov] ( https://codecov.io/gh/dermatologist/fhiry/branch/main /graph/badge.svg )] ( https://codecov.io/gh/dermatologist/fhiry )
4+ [ ![ Build status] ( https://img.shields.io/github/actions/workflow/status/dermatologist/fhiry/pytest .yml?branch=develop )] ( https://github.com/dermatologist/fhiry/actions/workflows/pytest .yml?query=branch%3Adevelop )
5+ [ ![ codecov] ( https://codecov.io/gh/dermatologist/fhiry/branch/master /graph/badge.svg )] ( https://codecov.io/gh/dermatologist/fhiry )
66[ ![ Commit activity] ( https://img.shields.io/github/commit-activity/m/dermatologist/fhiry )] ( https://img.shields.io/github/commit-activity/m/dermatologist/fhiry )
77[ ![ License] ( https://img.shields.io/github/license/dermatologist/fhiry )] ( https://img.shields.io/github/license/dermatologist/fhiry )
88[ ![ Downloads] ( https://img.shields.io/pypi/dm/fhiry )] ( https://pypi.org/project/fhiry )
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ def delete_unwanted_cols(self):
107107 if len (self .config ["REMOVE" ]) == 0 :
108108 logger .warning ("No columns to remove defined in config" )
109109 return
110- logger .info ("Removing columns: {}" .format (self .config ["REMOVE" ]))
111110 for col in self .config ["REMOVE" ]:
112111 cols_to_remove = [
113112 c for c in self ._df .columns if c == col or c .startswith (f"{ col } ." )
Original file line number Diff line number Diff line change @@ -53,22 +53,6 @@ def cli(
5353 query ,
5454 config_file ,
5555):
56- """Process FHIR data from folder or server and output a dataframe.
57-
58- This command can either read FHIR Bundles/NDJSON from a local folder or
59- perform a FHIR search against a server, then optionally flatten resources
60- and write to CSV/XLSX/Parquet.
61-
62- Args:
63- input_path (str | None): Path to a folder with FHIR files.
64- output_path (str | None): Destination file path for dataframe output.
65- flatten (bool): Whether to add a flattened text column for resources.
66- url (str | None): FHIR server base URL for search.
67- search_type (str | None): Resource type to search when using --url.
68- resource_types (str | None): CSV string of resource types to filter.
69- query (str | None): JSON string of search parameters for the server.
70- config_file (str | None): Path to config JSON file for column transforms.
71- """
7256 if url :
7357 from fhiry .fhirsearch import Fhirsearch
7458
You can’t perform that action at this time.
0 commit comments