Skip to main content

No project description provided

Project description

Health Universe Python Client

PyPI - Python Version

This Python package provides a simple way to interact with the healthuniverse.com API. Specifically, it allows you to add applications to HealthUniverse through a simple python interface.

Installation

You can install the package via pip: pip install healthuniverse

Quick Start

from healthuniverse.client import HealthUniverseClient

client = HealthUniverseClient()
response_status, response_data = client.create_app(
    app_name='My App', 
    app_desc='An awesome app', 
    app_category='0', 
    app_sdk='SL', 
    gh_account='<github_account>', 
    gh_repo='<github_repo>', 
    main_file='main.py'
    )

Documentation

HealthUniverseClient

client = HealthUniverseClient(base_url='https://healthuniverse.com/')

This creates a new HealthUniverse client. The base_url parameter is optional and defaults to 'https://healthuniverse.com/'.

create_app

status, response = client.create_app(
    app_name, 
    app_desc, 
    app_category, 
    app_sdk, 
    gh_account, 
    gh_repo, 
    main_file)

This sends a POST request to the HealthUniverse API to add a new app. Returns the HTTP status code and the JSON response.

Parameters:

  • app_name (str): The name of the app.
  • app_desc (str): The description of the app.
  • app_category (str): The category of the app. (0-10)
  • app_sdk (str): The SDK version used by the app: 'SL' or 'FA' are acceptable.
  • gh_account (str): The GitHub account where the app's source code is hosted.
  • gh_repo (str): The GitHub repository where the app's source code is hosted.
  • main_file (str): The main file of the app in the repository.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

healthuniverse-0.1.2.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

healthuniverse-0.1.2-py3-none-any.whl (2.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page