Contentstack


NameContentstack JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/contentstack/contentstack-python
SummaryContentstack is a headless CMS with an API-first approach.
upload_time2025-07-14 09:43:47
maintainerNone
docs_urlNone
authorContentstack
requires_python>=3.6
licenseMIT
keywords contentstack-python
VCS
bugtrack_url
requirements twython setuptools contentstack-utils python-dateutil requests coverage tox virtualenv Sphinx sphinxcontrib-websupport pip build wheel lxml utils keyring docutils pyparsing config colorama attrs argparse toml Jinja2 env filelock pluggy six packaging pytest dill pytz Babel pep517 tomli Werkzeug Flask click MarkupSafe blinker itsdangerous isort pkginfo ruff astroid mccabe platformdirs imagesize snowballstemmer Pygments wrapt certifi oauthlib idna chardet alabaster zipp distlib cachetools tomlkit urllib3 exceptiongroup iniconfig
Travis-CI No Travis.
coveralls test coverage No coveralls.
            #[![Contentstack](https://www.contentstack.com/docs/static/images/contentstack.png)](https://www.contentstack.com/)

<!-- ![Python package](https://github.com/contentstack/contentstack-python/workflows/Python%20package/badge.svg?branch=master) -->

![build](https://img.shields.io/badge/build-passing-green?style=plastic)
![Coverage](https://raw.githubusercontent.com/contentstack/contentstack-python/b4edf799276f586dce3e57fa5502036cd5fd8da3/coverage.svg) ![pip](https://img.shields.io/badge/pip-v1.8.0-blue?style=plastic) ![python](https://img.shields.io/badge/python-3.5|3.6|3.7|3.8-blue?style=plastic) [![GitHub license](https://img.shields.io/github/license/contentstack/contentstack-python?style=plastic)](https://github.com/contentstack/contentstack-python/blob/master/LICENSE) [![GitHub stars](https://img.shields.io/github/stars/contentstack/contentstack-python?style=plastic)](https://github.com/contentstack/contentstack-python/stargazers)

## Python SDK for Contentstack

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. Build your application frontend, and Contentstack will take
care of the rest. [Read More](https://www.contentstack.com/).

Contentstack provides Python SDK to build application on top of Python. Given below is the detailed guide and helpful
resources to get started with our Python SDK.

### Prerequisite

You will need python 3 installed on your machine. You can install it
from [here](https://www.python.org/ftp/python/3.7.4/python-3.7.4-macosx10.9.pkg).

### Setup and Installation

To use the Contentstack Python SDK to your existing project, perform the steps given below:

### Install contentstack pip

```pyhton
pip install contentstack
```

Install latest [contentstack](https://pypi.org/project/Contentstack) package from the [PyPI](https://pypi.org)

This is the preferred method to install contentstack, as it will always install the most recent stable release. If you
don't have [pip](https://pip.pypa.io/) installed,
this [Python installation guide](http://docs.python-guide.org/en/latest/starting/installation/) can guide you through
the process

### Key Concepts for using Contentstack

#### Stack

A stack is like a container that holds the content of your app. Learn more
about [Stacks](https://www.contentstack.com/docs/developers/set-up-stack).

#### Content Type

Content type lets you define the structure or blueprint of a page or a section of your digital property. It is a
form-like page that gives Content Managers an interface to input and upload
content. [Read more](https://www.contentstack.com/docs/developers/create-content-types).

#### Entry

An entry is the actual piece of content created using one of the defined content types. Learn more
about [Entries](https://www.contentstack.com/docs/content-managers/work-with-entries).

#### Asset

Assets refer to all the media files (images, videos, PDFs, audio files, and so on) uploaded to Contentstack. These files
can be used in multiple entries. Read more
about [Assets](https://www.contentstack.com/docs/content-managers/work-with-assets).

#### Environment

A publishing environment corresponds to one or more deployment servers or a content delivery destination where the
entries need to be published. Learn how to work
with [Environments](https://www.contentstack.com/docs/developers/set-up-environments).

### Contentstack Python SDK: 5-minute Quickstart

#### Initializing your SDK

To initialize the SDK, specify application API key, access token, and environment name of the stack as shown in the
snippet given below, You can provide optional parameters for config:

```python
stack = contentstack.Stack('api_key', 'delivery_token', 'environment')
```

To get the API credentials mentioned above, log in to your Contentstack account and then in your top panel navigation,
go to Settings &gt; Stack to view the API Key and Access Token.

#### Querying content from your stack

To retrieve a single entry from a content type use the code snippet given below:

```python
stack = contentstack.Stack('api_key', 'delivery_token', 'environment')
content_type = stack.content_type("content_type_uid")
entry = content_type.entry("entry_uid")
result = entry.fetch()
```

##### Get Multiple Entries

To retrieve multiple entries of a particular content type, use the code snippet given below:

```python
stack = contentstack.Stack('api_key', 'delivery_token', 'environment')
query = stack.content_type("content_type_uid").query()
result = query.find()
```

### Advanced Queries

You can query for content types, entries, assets and more using our Python API Reference.

[Python API Reference Doc](https://www.contentstack.com/docs/platforms/python/api-reference/)

### Working with Images

We have introduced Image Delivery APIs that let you retrieve images and then manipulate and optimize them for your
digital properties. It lets you perform a host of other actions such as crop, trim, resize, rotate, overlay, and so on.

For example, if you want to crop an image (with width as 300 and height as 400), you simply need to append query
parameters at the end of the image URL, such as, `https://images.contentstack.io/v3/assets/download?crop=300,400`. There
are several more parameters that you can use for your images.

[Read Image Delivery API documentation](https://www.contentstack.com/docs/platforms/python/api-reference/).

You can use the Image Delivery API functions in this SDK as well. Here are a few examples of its usage in the SDK.

```python
image = stack.image_transform(url, {'quality': 100}).get_url()
image = stack.image_transform(url, {'width': 100, 'height': 100}).get_url()
image = stack.image_transform(url, {'auto': 'webp'}).get_url()
```

### Using the Sync API with Python SDK

The Sync API takes care of syncing your Contentstack data with your application and ensures that the data is always
up-to-date by providing delta updates. Contentstack’s Python SDK supports Sync API, which you can use to build powerful
applications.

```python
stack = contentstack.Stack('api_key', 'delivery_token', 'environment')  # initialize sync
response = stack.sync_init()  # sycn using sync token
response = stack.sync_token('sync_token')  # sycn using pagination token
response = stack.pagination('pagination_token')  # sync using multiple parameters
response = stack.sync_init(publish_type='entry_published', content_type_uid='content_type_uid')
```

Read through to understand how to use the Sync API with Contentstack Python SDK.

[Using the Sync API with Python SDK](https://www.contentstack.com/docs/developers/python/using-the-sync-api-with-python-sdk)

### Helpful Links

- [Contentstack Website](https://www.contentstack.com)
- [Official Documentation](https://contentstack.com/docs)
- [Content Delivery API Docs](https://www.contentstack.com/docs/developers/apis/content-delivery-api/)

### The MIT License (MIT)

Copyright © 2012-2025 [Contentstack](https://www.contentstack.com/). 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.

- [Content Delivery API Docs](https://contentstack.com/docs/apis/content-delivery-api/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/contentstack/contentstack-python",
    "name": "Contentstack",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "contentstack-python",
    "author": "Contentstack",
    "author_email": "shailesh.mishra@contentstack.com, sunil.lakshman@contentstack.com",
    "download_url": "https://files.pythonhosted.org/packages/23/d4/5133b30bebd02069b4e6a18c0fc19c9ed98c5419de325860e0d2a34cc88a/contentstack-2.2.0.tar.gz",
    "platform": null,
    "description": "#[![Contentstack](https://www.contentstack.com/docs/static/images/contentstack.png)](https://www.contentstack.com/)\n\n<!-- ![Python package](https://github.com/contentstack/contentstack-python/workflows/Python%20package/badge.svg?branch=master) -->\n\n![build](https://img.shields.io/badge/build-passing-green?style=plastic)\n![Coverage](https://raw.githubusercontent.com/contentstack/contentstack-python/b4edf799276f586dce3e57fa5502036cd5fd8da3/coverage.svg) ![pip](https://img.shields.io/badge/pip-v1.8.0-blue?style=plastic) ![python](https://img.shields.io/badge/python-3.5|3.6|3.7|3.8-blue?style=plastic) [![GitHub license](https://img.shields.io/github/license/contentstack/contentstack-python?style=plastic)](https://github.com/contentstack/contentstack-python/blob/master/LICENSE) [![GitHub stars](https://img.shields.io/github/stars/contentstack/contentstack-python?style=plastic)](https://github.com/contentstack/contentstack-python/stargazers)\n\n## Python SDK for Contentstack\n\nContentstack is a headless CMS with an API-first approach. It is a CMS that developers can use to build powerful\ncross-platform applications in their favorite languages. Build your application frontend, and Contentstack will take\ncare of the rest. [Read More](https://www.contentstack.com/).\n\nContentstack provides Python SDK to build application on top of Python. Given below is the detailed guide and helpful\nresources to get started with our Python SDK.\n\n### Prerequisite\n\nYou will need python 3 installed on your machine. You can install it\nfrom [here](https://www.python.org/ftp/python/3.7.4/python-3.7.4-macosx10.9.pkg).\n\n### Setup and Installation\n\nTo use the Contentstack Python SDK to your existing project, perform the steps given below:\n\n### Install contentstack pip\n\n```pyhton\npip install contentstack\n```\n\nInstall latest [contentstack](https://pypi.org/project/Contentstack) package from the [PyPI](https://pypi.org)\n\nThis is the preferred method to install contentstack, as it will always install the most recent stable release. If you\ndon't have [pip](https://pip.pypa.io/) installed,\nthis [Python installation guide](http://docs.python-guide.org/en/latest/starting/installation/) can guide you through\nthe process\n\n### Key Concepts for using Contentstack\n\n#### Stack\n\nA stack is like a container that holds the content of your app. Learn more\nabout [Stacks](https://www.contentstack.com/docs/developers/set-up-stack).\n\n#### Content Type\n\nContent type lets you define the structure or blueprint of a page or a section of your digital property. It is a\nform-like page that gives Content Managers an interface to input and upload\ncontent. [Read more](https://www.contentstack.com/docs/developers/create-content-types).\n\n#### Entry\n\nAn entry is the actual piece of content created using one of the defined content types. Learn more\nabout [Entries](https://www.contentstack.com/docs/content-managers/work-with-entries).\n\n#### Asset\n\nAssets refer to all the media files (images, videos, PDFs, audio files, and so on) uploaded to Contentstack. These files\ncan be used in multiple entries. Read more\nabout [Assets](https://www.contentstack.com/docs/content-managers/work-with-assets).\n\n#### Environment\n\nA publishing environment corresponds to one or more deployment servers or a content delivery destination where the\nentries need to be published. Learn how to work\nwith [Environments](https://www.contentstack.com/docs/developers/set-up-environments).\n\n### Contentstack Python SDK: 5-minute Quickstart\n\n#### Initializing your SDK\n\nTo initialize the SDK, specify application API key, access token, and environment name of the stack as shown in the\nsnippet given below, You can provide optional parameters for config:\n\n```python\nstack = contentstack.Stack('api_key', 'delivery_token', 'environment')\n```\n\nTo get the API credentials mentioned above, log in to your Contentstack account and then in your top panel navigation,\ngo to Settings &gt; Stack to view the API Key and Access Token.\n\n#### Querying content from your stack\n\nTo retrieve a single entry from a content type use the code snippet given below:\n\n```python\nstack = contentstack.Stack('api_key', 'delivery_token', 'environment')\ncontent_type = stack.content_type(\"content_type_uid\")\nentry = content_type.entry(\"entry_uid\")\nresult = entry.fetch()\n```\n\n##### Get Multiple Entries\n\nTo retrieve multiple entries of a particular content type, use the code snippet given below:\n\n```python\nstack = contentstack.Stack('api_key', 'delivery_token', 'environment')\nquery = stack.content_type(\"content_type_uid\").query()\nresult = query.find()\n```\n\n### Advanced Queries\n\nYou can query for content types, entries, assets and more using our Python API Reference.\n\n[Python API Reference Doc](https://www.contentstack.com/docs/platforms/python/api-reference/)\n\n### Working with Images\n\nWe have introduced Image Delivery APIs that let you retrieve images and then manipulate and optimize them for your\ndigital properties. It lets you perform a host of other actions such as crop, trim, resize, rotate, overlay, and so on.\n\nFor example, if you want to crop an image (with width as 300 and height as 400), you simply need to append query\nparameters at the end of the image URL, such as, `https://images.contentstack.io/v3/assets/download?crop=300,400`. There\nare several more parameters that you can use for your images.\n\n[Read Image Delivery API documentation](https://www.contentstack.com/docs/platforms/python/api-reference/).\n\nYou can use the Image Delivery API functions in this SDK as well. Here are a few examples of its usage in the SDK.\n\n```python\nimage = stack.image_transform(url, {'quality': 100}).get_url()\nimage = stack.image_transform(url, {'width': 100, 'height': 100}).get_url()\nimage = stack.image_transform(url, {'auto': 'webp'}).get_url()\n```\n\n### Using the Sync API with Python SDK\n\nThe Sync API takes care of syncing your Contentstack data with your application and ensures that the data is always\nup-to-date by providing delta updates. Contentstack\u2019s Python SDK supports Sync API, which you can use to build powerful\napplications.\n\n```python\nstack = contentstack.Stack('api_key', 'delivery_token', 'environment')  # initialize sync\nresponse = stack.sync_init()  # sycn using sync token\nresponse = stack.sync_token('sync_token')  # sycn using pagination token\nresponse = stack.pagination('pagination_token')  # sync using multiple parameters\nresponse = stack.sync_init(publish_type='entry_published', content_type_uid='content_type_uid')\n```\n\nRead through to understand how to use the Sync API with Contentstack Python SDK.\n\n[Using the Sync API with Python SDK](https://www.contentstack.com/docs/developers/python/using-the-sync-api-with-python-sdk)\n\n### Helpful Links\n\n- [Contentstack Website](https://www.contentstack.com)\n- [Official Documentation](https://contentstack.com/docs)\n- [Content Delivery API Docs](https://www.contentstack.com/docs/developers/apis/content-delivery-api/)\n\n### The MIT License (MIT)\n\nCopyright \u00a9 2012-2025 [Contentstack](https://www.contentstack.com/). All Rights Reserved\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the\nSoftware.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n- [Content Delivery API Docs](https://contentstack.com/docs/apis/content-delivery-api/)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Contentstack is a headless CMS with an API-first approach.",
    "version": "2.2.0",
    "project_urls": {
        "Homepage": "https://github.com/contentstack/contentstack-python"
    },
    "split_keywords": [
        "contentstack-python"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19502e7595830105310821a428258aae413cd6981e60908fdb491c3d3c16e1c4",
                "md5": "6a17b7b5cfa836e4f82c1c9794b27327",
                "sha256": "80b0a00b98a51b503efe0a4155f6d315c2036e1098c5a6a1abb1fe57dbe2d4f9"
            },
            "downloads": -1,
            "filename": "contentstack-2.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6a17b7b5cfa836e4f82c1c9794b27327",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 30353,
            "upload_time": "2025-07-14T09:43:46",
            "upload_time_iso_8601": "2025-07-14T09:43:46.570340Z",
            "url": "https://files.pythonhosted.org/packages/19/50/2e7595830105310821a428258aae413cd6981e60908fdb491c3d3c16e1c4/contentstack-2.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23d45133b30bebd02069b4e6a18c0fc19c9ed98c5419de325860e0d2a34cc88a",
                "md5": "16a453aaed3615cbfda33fb01cd8daea",
                "sha256": "071800607be046fc94b6b725a90195334259ff1a35df934f75eb5a9da0797eb6"
            },
            "downloads": -1,
            "filename": "contentstack-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "16a453aaed3615cbfda33fb01cd8daea",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 31958,
            "upload_time": "2025-07-14T09:43:47",
            "upload_time_iso_8601": "2025-07-14T09:43:47.709615Z",
            "url": "https://files.pythonhosted.org/packages/23/d4/5133b30bebd02069b4e6a18c0fc19c9ed98c5419de325860e0d2a34cc88a/contentstack-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-14 09:43:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "contentstack",
    "github_project": "contentstack-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "twython",
            "specs": [
                [
                    "==",
                    "3.9.1"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    "==",
                    "80.3.1"
                ]
            ]
        },
        {
            "name": "contentstack-utils",
            "specs": [
                [
                    "==",
                    "1.3.0"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    "==",
                    "2.8.2"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.32.4"
                ]
            ]
        },
        {
            "name": "coverage",
            "specs": [
                [
                    "==",
                    "7.6.0"
                ]
            ]
        },
        {
            "name": "tox",
            "specs": [
                [
                    "==",
                    "4.5.1"
                ]
            ]
        },
        {
            "name": "virtualenv",
            "specs": [
                [
                    "==",
                    "20.26.6"
                ]
            ]
        },
        {
            "name": "Sphinx",
            "specs": [
                [
                    "==",
                    "7.3.7"
                ]
            ]
        },
        {
            "name": "sphinxcontrib-websupport",
            "specs": [
                [
                    "==",
                    "1.2.7"
                ]
            ]
        },
        {
            "name": "pip",
            "specs": [
                [
                    "==",
                    "23.3.1"
                ]
            ]
        },
        {
            "name": "build",
            "specs": [
                [
                    "==",
                    "0.10.0"
                ]
            ]
        },
        {
            "name": "wheel",
            "specs": [
                [
                    "==",
                    "0.45.1"
                ]
            ]
        },
        {
            "name": "lxml",
            "specs": [
                [
                    "==",
                    "5.3.1"
                ]
            ]
        },
        {
            "name": "utils",
            "specs": [
                [
                    "~=",
                    "1.0.2"
                ]
            ]
        },
        {
            "name": "keyring",
            "specs": [
                [
                    "==",
                    "23.13.1"
                ]
            ]
        },
        {
            "name": "docutils",
            "specs": [
                [
                    "==",
                    "0.21.2"
                ]
            ]
        },
        {
            "name": "pyparsing",
            "specs": [
                [
                    "~=",
                    "3.1.2"
                ]
            ]
        },
        {
            "name": "config",
            "specs": [
                [
                    "~=",
                    "0.5.1"
                ]
            ]
        },
        {
            "name": "colorama",
            "specs": [
                [
                    "~=",
                    "0.4.6"
                ]
            ]
        },
        {
            "name": "attrs",
            "specs": [
                [
                    "==",
                    "23.2.0"
                ]
            ]
        },
        {
            "name": "argparse",
            "specs": [
                [
                    "~=",
                    "1.4.0"
                ]
            ]
        },
        {
            "name": "toml",
            "specs": [
                [
                    "~=",
                    "0.10.2"
                ]
            ]
        },
        {
            "name": "Jinja2",
            "specs": [
                [
                    "~=",
                    "3.1.4"
                ]
            ]
        },
        {
            "name": "env",
            "specs": [
                [
                    "~=",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "filelock",
            "specs": [
                [
                    "~=",
                    "3.13.4"
                ]
            ]
        },
        {
            "name": "pluggy",
            "specs": [
                [
                    "~=",
                    "1.5.0"
                ]
            ]
        },
        {
            "name": "six",
            "specs": [
                [
                    "~=",
                    "1.16.0"
                ]
            ]
        },
        {
            "name": "packaging",
            "specs": [
                [
                    "~=",
                    "23.1"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    "==",
                    "7.3.1"
                ]
            ]
        },
        {
            "name": "dill",
            "specs": [
                [
                    "~=",
                    "0.3.8"
                ]
            ]
        },
        {
            "name": "pytz",
            "specs": [
                [
                    "==",
                    "2024.1"
                ]
            ]
        },
        {
            "name": "Babel",
            "specs": [
                [
                    "==",
                    "2.14.0"
                ]
            ]
        },
        {
            "name": "pep517",
            "specs": [
                [
                    "==",
                    "0.13.1"
                ]
            ]
        },
        {
            "name": "tomli",
            "specs": [
                [
                    "~=",
                    "2.0.1"
                ]
            ]
        },
        {
            "name": "Werkzeug",
            "specs": [
                [
                    "==",
                    "3.0.6"
                ]
            ]
        },
        {
            "name": "Flask",
            "specs": [
                [
                    "~=",
                    "2.3.2"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    "~=",
                    "8.1.7"
                ]
            ]
        },
        {
            "name": "MarkupSafe",
            "specs": [
                [
                    "==",
                    "2.1.5"
                ]
            ]
        },
        {
            "name": "blinker",
            "specs": [
                [
                    "~=",
                    "1.8.2"
                ]
            ]
        },
        {
            "name": "itsdangerous",
            "specs": [
                [
                    "~=",
                    "2.2.0"
                ]
            ]
        },
        {
            "name": "isort",
            "specs": [
                [
                    "==",
                    "5.13.2"
                ]
            ]
        },
        {
            "name": "pkginfo",
            "specs": [
                [
                    "==",
                    "1.11.1"
                ]
            ]
        },
        {
            "name": "ruff",
            "specs": [
                [
                    "==",
                    "0.11.5"
                ]
            ]
        },
        {
            "name": "astroid",
            "specs": [
                [
                    "==",
                    "3.2.4"
                ]
            ]
        },
        {
            "name": "mccabe",
            "specs": [
                [
                    "==",
                    "0.7.0"
                ]
            ]
        },
        {
            "name": "platformdirs",
            "specs": [
                [
                    "==",
                    "3.9.1"
                ]
            ]
        },
        {
            "name": "imagesize",
            "specs": [
                [
                    "==",
                    "1.4.1"
                ]
            ]
        },
        {
            "name": "snowballstemmer",
            "specs": [
                [
                    "~=",
                    "2.2.0"
                ]
            ]
        },
        {
            "name": "Pygments",
            "specs": [
                [
                    "~=",
                    "2.18.0"
                ]
            ]
        },
        {
            "name": "wrapt",
            "specs": [
                [
                    "==",
                    "1.16.0"
                ]
            ]
        },
        {
            "name": "certifi",
            "specs": [
                [
                    "==",
                    "2024.8.30"
                ]
            ]
        },
        {
            "name": "oauthlib",
            "specs": [
                [
                    "==",
                    "3.2.2"
                ]
            ]
        },
        {
            "name": "idna",
            "specs": [
                [
                    "==",
                    "3.10"
                ]
            ]
        },
        {
            "name": "chardet",
            "specs": [
                [
                    "~=",
                    "5.2.0"
                ]
            ]
        },
        {
            "name": "alabaster",
            "specs": [
                [
                    "==",
                    "0.7.16"
                ]
            ]
        },
        {
            "name": "zipp",
            "specs": [
                [
                    "==",
                    "3.20.1"
                ]
            ]
        },
        {
            "name": "distlib",
            "specs": [
                [
                    "~=",
                    "0.3.8"
                ]
            ]
        },
        {
            "name": "cachetools",
            "specs": [
                [
                    "~=",
                    "5.4.0"
                ]
            ]
        },
        {
            "name": "tomlkit",
            "specs": [
                [
                    "~=",
                    "0.13.2"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "==",
                    "2.5.0"
                ]
            ]
        },
        {
            "name": "exceptiongroup",
            "specs": [
                [
                    "~=",
                    "1.2.2"
                ]
            ]
        },
        {
            "name": "iniconfig",
            "specs": [
                [
                    "~=",
                    "2.0.0"
                ]
            ]
        }
    ],
    "lcname": "contentstack"
}
        
Elapsed time: 1.77517s