xpt2csv-cli

CLI app to convert xpt file to csv


Install
pip install xpt2csv-cli==0.1.4

Documentation

Install

pip install xpt2csv-cli

convert xpt files to csv

Let's assume user have one directory that have xpt files


- study_one/
    - bw.xpt
    - dm.xpt
    - lb.xpt
    - mi.xpt
    - om.xpt
    - ts.xpt
    - tx.xpt

make a directory where to save csv files

mkdir directory_to_save_csv/

now convert xpt files to csv files using 'to_csv' command

to_csv study_one/ directory_to_save_csv/

this command will convert all xpt files to csv files and will save in following directory structure

- directory_to_save_csv/
    - study_one/
        - bw.csv
        - dm.csv
        - lb.csv
        - mi.csv
        - om.csv
        - ts.csv
        - tx.csv

Let's say user have few study in a directory all_study/.

- all_study/
    - study_one/
        - bw.xpt
        - dm.xpt
        - lb.xpt
        - mi.xpt
        - om.xpt
        - ts.xpt
        - tx.xpt
    - study_one/
        - bw.xpt
        - dm.xpt
        - lb.xpt
        - mi.xpt
        - om.xpt
        - ts.xpt
        - tx.xpt
to_csv all_study/ directory_to_save_csv/

this will convert and save all xpt files in following directory structure

- directory_to_save_csv/
        - study_one/
            - bw.csv
            - dm.csv
            - lb.csv
            - mi.csv
            - om.csv
            - ts.csv
            - tx.csv
        - study_one/
            - bw.csv
            - dm.csv
            - lb.csv
            - mi.csv
            - om.csv
            - ts.csv
            - tx.csv

NOTE/warning: Metadata in xpt file will lost be when converting to csv.

project in github
pypi link