New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

coziepy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coziepy

A package for processing and visualizing data collected with the Cozie-Apple app

0.0.22
PyPI
Maintainers
1

CoziePy

CoziePy is a Python package to retrieve, process, and plot data from the Cozie iOS app for human comfort data collection.

Features

TBD

Documentation and tutorials

TBD

Quick start

  • Installation

    pip install coziepy
    
  • Download Cozie data using the web API and CoziePy

    from coziepy import Cozie
    
    cozie = Cozie()
    
    df = cozie.load(
      id_experiment = "AppStore",
      participant_list = ['participant_01', 'participant_02'],
      timezone = 'Asia/Singapore',
      api_url='https://m7cy76lxmi.execute-api.ap-southeast-1.amazonaws.com/default/cozie-apple-researcher-read-influx', 
      api_key='XXX' # Please reach out to cozie.app@gmail.com for an API_KEY
    ) 
    df.head()
    
  • Plot Cozie data using CoziePy

    from coziepy import Cozie
    
    cp = CoziePlot(df=df, ws_questions=ws_questions)
    
    fig = cp.cohort_survey_count_bar(mode='plotly')
    fig.show()
    

Contribute

We would love you for the contribution to our project, check the LICENSE file for more info.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts