## How to add?

### Installation:

#### NodeJS

```shell
npm i shipday
```

#### Python

```shell
pip install shipday
```

### Basic Usage:

#### NodeJS

```javascript
const Shipday = require('shipday/integration')

const shipdayClient = new Shipday('**** api key', 10000);
```

#### Python

```python
from shipday import Shipday

API_KEY = '##########.#######################'
my_shipday = Shipday(api_key=API_KEY)
```

### Git Repo:

Shipday SDK open-source git repositories provide convenient access to the packages. You can keep track of the newest releases, bug fixes and new features.

[Node](https://github.com/shipday/shipday-node-sdk) [Python](https://github.com/shipday/shipday-python-sdk)

### SDK Links:

SDKs are published on convenient platforms so it can easily be installed on your machine.

[Node](https://www.npmjs.com/package/shipday) [Python](https://pypi.org/project/shipday)
