New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

agility-cms

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agility-cms

Python Fetch SDK for Agility CMS

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

Agility CMS Python SDK

This package is a Python library for calling the Agility CMS Rest API.

Installation

Use the package manager pip to install agility-cms.

pip install agility-cms

Initialization

import Client from agility_cms

client = Client(
    '<your guid>', 
    '<your api key>', 
    locale="en-us", 
    preview=True, 
    url="api.aglty.io"
)

Required Arguments

  • guid (str)
  • api_key (str)

Optional Arguments

  • locale (str)
  • preview (bool)
  • url (str)
client.gallery('<gallery id>')

Required Arguments

  • gallery_id (int)

Item

client.item(
    '<item id>', 
    content_link_depth=1, 
    expand_all_content_links=False
)

Required Arguments

  • item_id (int)

Optional Arguments

  • content_link_depth (int)
  • expand_all_content_links (bool)

List

client.list(
    '<reference name>', 
    fields="", 
    take=10, 
    skip=0, 
    filter_="", 
    sort="", 
    direction='asc', 
    content_link_depth=1, 
    expand_all_content_links=False
)

Required Arguments

  • reference_name (str)

Optional Arguments

  • fields (str)
  • take (int)
  • skip (int)
  • filter (str)
  • sort (str)
  • direction (str)
  • content_link_depth (int)
  • expand_all_content_links (bool)

Page

client.page(
    '<page id>', 
    content_link_depth=2, 
    expand_all_content_links=False
)

Required Arguments

  • page_id (int)

Optional Arguments

  • content_link_depth (int)
  • expand_all_content_links (bool)

Sitemap

client.sitemap('<channel name>', nested=False)

Required Arguments

  • channel_name (str)

Optional Arguments

  • nested (bool)

Sync Items

client.sync_items(sync_token=0, page_size=500)

Optional Arguments

  • sync_token (int)
  • page_size (int)

Sync Pages

client.sync_pages(sync_token=0, page_size=500)

Optional Arguments

  • sync_token (int)
  • page_size (int)

Url Redirections

client.url_redirections(last_access_date="")

Optional Arguments

  • last_access_date (str)

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc