Skip to main content

Contentstack API Client Library for Python

Project description

Contentstack

Contentstack Management Python SDK

Contentstack is a headless CMS with an API-first approach. It is a CMS that developers can use to build powerful cross-platform applications in their favorite languages. All you have to do is build your application frontend, and Contentstack will take care of the rest. Read More.

This SDK uses the Content Management API (CMA). The CMA is used to manage the content of your Contentstack account. This includes creating, updating, deleting, and fetching content of your account. To use the CMA, you will need to authenticate your users with a Management Token or an Authtoken. Read more about it in Authentication.

Note: By using CMA, you can execute GET requests for fetching content. However, we strongly recommend that you always use the Content Delivery API to deliver content to your web or mobile properties.

Prerequisite

You will need python 3 installed on your machine. You can install it from here.

Installation

Install contentstack pip

pip install contentstack_management

To import the SDK, use the following command:

import contentstack_management

client = contentstack_management.Client(authtoken='your_authtoken')

Authentication

To use this SDK, you need to authenticate your users by using the Authtoken, credentials, or Management Token (stack-level token).

Authtoken

An Authtoken is a read-write token used to make authorized CMA requests, and it is a user-specific token.

client = contentstack_management.Client(authtoken= 'your_authtoken')

Login

To Login to Contentstack by using credentials, you can use the following lines of code:

client.login(email="email", password="password")

Management Token

Management Tokens are stack-level tokens, with no users attached to them.

result = client.stack(api_key = 'api_key', management_token= 'management_token' ).content_type('content_type_uid')
.fetch().json()
print(result)

Contentstack Management Python SDK: 5-minute Quickstart

Initializing Your SDK:

To use the Python CMA SDK, you need to first initialize it. To do this, use the following code:

import contentstack_management

client = contentstack_management.Client(authtoken= 'your_authtoken')

Fetch Stack Detail

Use the following lines of code to fetch your stack detail using this SDK:

result = client.stack(api_key= 'api_key').fetch().json()
print(result)

Create Entry

To create an entry in a specific content type of a stack, use the following lines of code:

entry  = {
  title: 'Sample Entry',
  url: '/sampleEntry'
}

result = client.stack(api_key= 'api_key').content_types('content_type_uid').entry().create(entry)
print(result.json())

Create Asset

The following lines of code can be used to upload assets to your stack:

asset  = {
   upload: 'path/to/file',
   title: 'Asset Title'
}
asset = client().stack(api_key='api_key').assets()
result = asset.upload(asset)

Development Setup

This repository includes Husky-style pre-commit hooks for security scanning and code quality checks. To set up the development environment:

# Install required tools
brew install talisman
brew install snyk/tap/snyk

# Set up Snyk authentication
export SNYK_TOKEN=your_snyk_token_here
snyk auth

# Install git hooks
chmod +x .husky/pre-commit .husky/pre-push .husky/hooks/*.sh .husky/hooks/*.py
cp .husky/pre-commit .git/hooks/pre-commit
cp .husky/pre-push .git/hooks/pre-push
chmod +x .git/hooks/pre-commit .git/hooks/pre-push

Security Features

  • Talisman: Detects secrets and sensitive data in commits
  • Snyk: Scans Python dependencies for vulnerabilities
  • Code Quality: Black, isort, flake8 for consistent code style

Helpful Links

The MIT License (MIT)

Copyright © 2012-2026 Contentstack. All Rights Reserved

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

contentstack_management-1.7.2.tar.gz (56.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

contentstack_management-1.7.2-py3-none-any.whl (85.7 kB view details)

Uploaded Python 3

File details

Details for the file contentstack_management-1.7.2.tar.gz.

File metadata

  • Download URL: contentstack_management-1.7.2.tar.gz
  • Upload date:
  • Size: 56.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for contentstack_management-1.7.2.tar.gz
Algorithm Hash digest
SHA256 00fa4414f6711845d485bb55505aae7e87e2c788bb3522d11ee4143b7c0f2881
MD5 19022098117eb3716e5c78a085f84333
BLAKE2b-256 f2e2203e2749a000820b71aff04b950626123053d71de3819dff36b7596f4325

See more details on using hashes here.

File details

Details for the file contentstack_management-1.7.2-py3-none-any.whl.

File metadata

File hashes

Hashes for contentstack_management-1.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 13c35e0825a46ce4d59e8a32ac1126adc277b19f64aead98a0996559ce05c202
MD5 4db7cf42bbe8aa7f77c20df7f07f22d2
BLAKE2b-256 e5c05ce78486e10e86a0043fecea20a350b4131607aeecbddf95915502d9f16d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page