Metadata-Version: 2.1
Name: cjm-pandas-utils
Version: 0.0.3
Summary: Some utility functions for working with Pandas.
Home-page: https://github.com/cj-mills/cjm-pandas-utils
Author: cj-mills
Author-email: millscj.mills2@gmail.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# cjm-pandas-utils

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

This file will become your README and also the index of your
documentation.

## Install

``` sh
pip install cjm_pandas_utils
```

## How to use

### markdown_to_pandas

``` python
from cjm_pandas_utils.core import markdown_to_pandas
```

``` python
md_table_str = """
| Name | Age | Occupation |
| ---- | --- | ---------- |
| John | 35  | Engineer    |
| Jane | 29  | Teacher     |
| Bob  | 42  | Doctor      |
"""
```

``` python
markdown_df = markdown_to_pandas(md_table_str)
markdown_df.iloc[1]
```

    Name             Jane
    Age                29
    Occupation    Teacher
    Name: 1, dtype: object
