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.10.0.tar.gz (60.9 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.10.0-py3-none-any.whl (90.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: contentstack_management-1.10.0.tar.gz
  • Upload date:
  • Size: 60.9 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.10.0.tar.gz
Algorithm Hash digest
SHA256 558fdc2013513496b0cfe09a67c61bd92a55347a7f30b92ae95e59be2e805caf
MD5 a94d6cf7cb3b547b903867f84c578eac
BLAKE2b-256 17230738f5efb259f207a35d09f3ce38fa5ee04cd29c3dbdfba1be40adae521c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for contentstack_management-1.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fb3e7a6af23d1de785c196c3bb14fb7aa800cd56cf78fb45aed735d373d19882
MD5 206c12e9f8cb47971f9647981b8b90a8
BLAKE2b-256 a39c8118afa679bcf460d84b1e91eb513742dfba2417f379b39087755a7d85c7

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