Python interface to the MDwalks CLUE.
Project description
py-clue
The Python interface to the MDwalks CLUE.
Description
To be defined..
Getting Started
Install
pip install python-clue
Usage
Basic Usage
from pyclue import CLUE
clue = CLUE(
"localhost", # CLUE server host
9999, # CLUE server port
"test@linewalks.com", # test account name
"password" # test account password
)
conn = clue.connect()
cohort_list = conn.get_cohort_list()
result = conn.get_cohort_person_table(123) # cohort_id: 123
person_list = result.fetchall()
With pandas
import pandas as pd
result = conn.get_cohort_person_table(123)
df = pd.DataFrame(person_list)
Contribution
To be defined...
Contact
- Chae Jungwoo - jungwoo@linewalks.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file python_clue-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: python_clue-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42b2eed7b51a9e56755cbea33bd23a9870c1795390665c7713fe3514229f5419 |
|
MD5 | 81408d0b1c09fcff8c48d6d12c41fd49 |
|
BLAKE2b-256 | ba808e197f5e0a98454069b4aa39e541de068ab2164af73909e997969caf1ff0 |