Metadata-Version: 2.1
Name: 42di
Version: 0.2.5
Summary: 42di is the python sdk for 42di.com
Home-page: https://42di.com
Author-email: support@42di.com
License: UNKNOWN
Keywords: 42DI,42di Python SDK,42di.com,42di.cn
Platform: UNKNOWN
Description-Content-Type: text/markdown



    # 42di Python SDK

    **42di is the python sdk for 42di.com**

    **42di.com is a platform for data science.**


    ## Install

    ```bash

    pip install 42di

    ```

    OR

    ```bash
    pip install git+https://github.com/42di/python-sdk
    ```

    ## Put to / read from 42di

    ```python
    import di #42di

    import pandas_datareader as pdr

    di.TOKEN = "<YOUR_ACCESS_TOKEN>"

    df = pdr.get_data_fred('GDP')


    di.put("42di.cn/shellc/testing/my_dataset", df, create=True, update_schema=True)

    df = di.read("42di.cn/shellc/testing/my_dataset")

    print(df.head(100))
    ```

    

