SDK for Commercetools
Project description
# Python SDK for Commercetools
[![Travis Build Status](https://travis-ci.org/labd/commercetools-python-sdk.svg?branch=master)](https://travis-ci.org/labd/commercetools-python-sdk)
[![codecov](https://codecov.io/gh/LabD/commercetools-python-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/LabD/commercetools-python-sdk)
[![PyPI](https://img.shields.io/pypi/v/commercetools.svg)](https://pypi-hypernode.com/project/commercetools/)
This is an unofficial Python SDK for the Commercetools platform. It only
supports Python 3.6+ and uses type annotation for an improved development
experience.
The API is mostly generated using the commercetools api RAML file and uses the
attr library for the dataobjects and marshmallow for the serialization and
deserialization steps.
# Example
```python
from commercetools import Client
client = Client(
project_key="<your-project-key>",
client_id="<your-client-id>",
client_secret="<your-client-secret>",
scope=["<scopes>"],
url="https://api.sphere.io",
token_url="https://auth.sphere.io",
)
product = client.products.get_by_id("00633d11-c5bb-434e-b132-73f7e130b4e3")
print(product)
```
The client can also be configured by setting the following environment variables:
```bash
export CTP_PROJECT_KEY="<project key>"
export CTP_CLIENT_SECRET="<client secret>"
export CTP_CLIENT_ID="<client id>"
export CTP_AUTH_URL="https://auth.sphere.io"
export CTP_API_URL="https://api.sphere.io"
export CTP_SCOPES="<comma seperated list of scopes>"
```
And then constructing a client without arguments:
```python
from commercetools import Client
client = Client()
product = client.products.get_by_id("00633d11-c5bb-434e-b132-73f7e130b4e3")
print(product)
```
[![Travis Build Status](https://travis-ci.org/labd/commercetools-python-sdk.svg?branch=master)](https://travis-ci.org/labd/commercetools-python-sdk)
[![codecov](https://codecov.io/gh/LabD/commercetools-python-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/LabD/commercetools-python-sdk)
[![PyPI](https://img.shields.io/pypi/v/commercetools.svg)](https://pypi-hypernode.com/project/commercetools/)
This is an unofficial Python SDK for the Commercetools platform. It only
supports Python 3.6+ and uses type annotation for an improved development
experience.
The API is mostly generated using the commercetools api RAML file and uses the
attr library for the dataobjects and marshmallow for the serialization and
deserialization steps.
# Example
```python
from commercetools import Client
client = Client(
project_key="<your-project-key>",
client_id="<your-client-id>",
client_secret="<your-client-secret>",
scope=["<scopes>"],
url="https://api.sphere.io",
token_url="https://auth.sphere.io",
)
product = client.products.get_by_id("00633d11-c5bb-434e-b132-73f7e130b4e3")
print(product)
```
The client can also be configured by setting the following environment variables:
```bash
export CTP_PROJECT_KEY="<project key>"
export CTP_CLIENT_SECRET="<client secret>"
export CTP_CLIENT_ID="<client id>"
export CTP_AUTH_URL="https://auth.sphere.io"
export CTP_API_URL="https://api.sphere.io"
export CTP_SCOPES="<comma seperated list of scopes>"
```
And then constructing a client without arguments:
```python
from commercetools import Client
client = Client()
product = client.products.get_by_id("00633d11-c5bb-434e-b132-73f7e130b4e3")
print(product)
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
commercetools-1.0.0.tar.gz
(237.7 kB
view details)
Built Distribution
commercetools-1.0.0-py3-none-any.whl
(127.0 kB
view details)
File details
Details for the file commercetools-1.0.0.tar.gz
.
File metadata
- Download URL: commercetools-1.0.0.tar.gz
- Upload date:
- Size: 237.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4c879c6652734c53b9fecf0a1ee8ef2952d6530c075b0ccd517eac0c26e778a |
|
MD5 | 90dcd243ad8eb6dd47de9c9bac126106 |
|
BLAKE2b-256 | 5ab45f8bffba03c533e0e9a5c9cc66d50eda0fdb298cee8c2f2093f485c7b7e4 |
File details
Details for the file commercetools-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: commercetools-1.0.0-py3-none-any.whl
- Upload date:
- Size: 127.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c96b62f3d632899ebc2b0439395043f4631db9e5001e8fb98b51ddbe0f8f805a |
|
MD5 | 8098dfcbb8bf0dd244f98a7afda36de2 |
|
BLAKE2b-256 | cbb1051a96a676014accd27a66322a034c7e2aaa81c4bbf68d16773be1a925d3 |