Socket
Socket
Sign inDemoInstall

confluence-calendar-api

Package Overview
Dependencies
2
Maintainers
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    confluence-calendar-api

Confluence Calendar API Python Wrapper


Maintainers
1

Readme

Confluence Calendar API

Version: 0.3.0

Confluence Calendar API Python Wrapper

API Calls:

  • Get Calendars
  • Add Event

Usage:

#!/usr/bin/python
# coding: utf-8
import confluence_calendar_api

username = "<CONFLUENCE USERNAME>"
password = "<CONFLUENCE PASSWORD>"
confluence_url = "<CONFLUENCE URL>"
client = confluence_calendar_api.Api(url=confluence_url, username=username, password=password)

calendar = client.get_calendars(sub_calendar_id=12341)
print(calendar)
Install Instructions

Install Python Package

python -m pip install confluence-calendar-api
Build Instructions

Build Python Package

sudo chmod +x ./*.py
pip install .
python setup.py bdist_wheel --universal
# Test Pypi
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose -u "Username" -p "Password"
# Prod Pypi
twine upload dist/* --verbose -u "Username" -p "Password"

FAQs


Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc