Contentstack API Client Library for Python
Project description
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)
Helpful Links
The MIT License (MIT)
Copyright © 2012-2023 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
Built Distribution
Hashes for contentstack-management-1.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30f1f1f5fbb2aa67c474ae4f9973570933790b7ed11aaf0af41223db048ffa5e |
|
MD5 | b15b06c6e98bf814c5ed2f177176a073 |
|
BLAKE2b-256 | 204e6ad1460ac9e4dd8b64be956c724603744f6ad1d8169793d040b38a4a1650 |
Hashes for contentstack_management-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb54d4b9e0a68d08df5bc2195737b40a16d4a6ca554bd3935fd060cb335b3f74 |
|
MD5 | 9d40bd6c6efee5ac8efbd2362b649229 |
|
BLAKE2b-256 | 5f0a3cb0d133e566ec54831b6a7ec3c98df648b9082413bcd8ca3c288c5a212e |