Skip to content

Commit

Permalink
Merge pull request #464 from onc-healthit/LANTERN-804-Add-webscraper-…
Browse files Browse the repository at this point in the history
…fhirpt-url

LANTERN-804: Adding bundleparser for fhirpt
  • Loading branch information
vishnu-mettles authored Dec 16, 2024
2 parents 81d9061 + 93faccd commit ca043b3
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ var curemdURL = "https://www.curemd.com/developer/base-fhir-urls/"
var emdscloudURL = "https://identity.emdscloud.com/api/api-resource/fhir"
var betaAfoundriaURL = "https://beta.afoundria.com/api/fhir/urls"
var ehealthlineURL = "http://ehealthline.com/dev/pdf/FHIR%20API%20Endpoints.htm"
var fhirptURL = "https://fhirpt-stage.officeally.com/fhir/r4/endpoints"
var chntechURL = "https://onc.chntechsolutions.com/ic-ehr-fhir-api/"
var zoobooksystemsURL = "https://zoobooksystems.com/api-documentation/"

Expand Down Expand Up @@ -587,6 +588,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) {
CSVParser(chplURL, fileToWriteTo, "./endpoints.csv", -1, 0, true, 1, 0)
} else if URLsEqual(chplURL, ehealthlineURL) {
EhealthlineWebscraper(ehealthlineURL, fileToWriteTo)
} else if URLsEqual(chplURL, fhirptURL) {
BundleQuerierParser(chplURL, fileToWriteTo)
} else if URLsEqual(chplURL, chntechURL) {
ChntechsolutionsWebscraper(chplURL, fileToWriteTo)
} else if URLsEqual(chplURL, zoobooksystemsURL) {
Expand Down

0 comments on commit ca043b3

Please sign in to comment.