# Confluence Calendar API
*Version: 0.3.0*
Confluence Calendar API Python Wrapper
### API Calls:
- Get Calendars
- Add Event
### Usage:
```python
#!/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
```bash
python -m pip install confluence-calendar-api
```
#### Build Instructions
Build Python Package
```bash
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"
```
Raw data
{
"_id": null,
"home_page": "https://github.com/Knuckles-Team/confluence-calendar-api",
"name": "confluence-calendar-api",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "Audel Rouhi",
"author_email": "knucklessg1@gmail.com",
"download_url": "",
"platform": null,
"description": "# Confluence Calendar API\n*Version: 0.3.0*\n\nConfluence Calendar API Python Wrapper\n\n### API Calls:\n- Get Calendars\n- Add Event\n\n### Usage:\n```python\n#!/usr/bin/python\n# coding: utf-8\nimport confluence_calendar_api\n\nusername = \"<CONFLUENCE USERNAME>\"\npassword = \"<CONFLUENCE PASSWORD>\"\nconfluence_url = \"<CONFLUENCE URL>\"\nclient = confluence_calendar_api.Api(url=confluence_url, username=username, password=password)\n\ncalendar = client.get_calendars(sub_calendar_id=12341)\nprint(calendar)\n```\n\n#### Install Instructions\nInstall Python Package\n\n```bash\npython -m pip install confluence-calendar-api\n```\n\n#### Build Instructions\nBuild Python Package\n\n```bash\nsudo chmod +x ./*.py\npip install .\npython setup.py bdist_wheel --universal\n# Test Pypi\ntwine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose -u \"Username\" -p \"Password\"\n# Prod Pypi\ntwine upload dist/* --verbose -u \"Username\" -p \"Password\"\n```\n\n\n",
"bugtrack_url": null,
"license": "Unlicense",
"summary": "Confluence Calendar API Python Wrapper",
"version": "0.3.0",
"project_urls": {
"Homepage": "https://github.com/Knuckles-Team/confluence-calendar-api"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8983b1b2e2c25b640272e753784422f5168a2ef5e174e4dc558336b2ee70d833",
"md5": "478e3ef286e94a0519e9c3674d3217b5",
"sha256": "5b73d359e06b35565caef205218decf6ed15785fb52e5218cc1a352038d244b6"
},
"downloads": -1,
"filename": "confluence_calendar_api-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "478e3ef286e94a0519e9c3674d3217b5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 5288,
"upload_time": "2023-10-28T03:19:31",
"upload_time_iso_8601": "2023-10-28T03:19:31.873282Z",
"url": "https://files.pythonhosted.org/packages/89/83/b1b2e2c25b640272e753784422f5168a2ef5e174e4dc558336b2ee70d833/confluence_calendar_api-0.3.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-10-28 03:19:31",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Knuckles-Team",
"github_project": "confluence-calendar-api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "requests",
"specs": [
[
">=",
"2.28.1"
]
]
},
{
"name": "urllib3",
"specs": [
[
">=",
"1.26.13"
]
]
}
],
"lcname": "confluence-calendar-api"
}