Metadata-Version: 2.1
Name: cuapi_wrapper
Version: 0.0.1
Summary: A wrapper for working with the Copper CRM API
Home-page: https://github.com/cooper-richason/cuapi-wrapper
Author: Cooper Richason
Author-email: copperrichason@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
License-File: LICENSE
Requires-Dist: fastcore
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: tqdm
Provides-Extra: dev

# copper_crm


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

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

## Install

You can install the `cuapi_wrapper` package through PyPI:

``` sh
pip install cuapi_wrapper
```

## How to use

Start by importing all the modules you’ll need for your project. The
`cuapi_wrapper` package is broken down into seperate modules for working
with companies, tasks, opportunities, users, etc.

For example, if we wanted to look at **companies** in copper, we should
start by importing the **copper_crm.companies** module. We can then
search these companies for those who are in California:

``` python
import cuapi_wrapper.companies as coppper

copper.set_headers(os.environ['MY_COPPER_KEY'],'myemail@email.com)
copper.search(search_params{'state':'CA'})
```
