forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.py
More file actions
25 lines (17 loc) · 641 Bytes
/
base.py
File metadata and controls
25 lines (17 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# coding=utf-8
import logging
from ..base import ConfluenceBase
log = logging.getLogger(__name__)
class ConfluenceCloudBase(ConfluenceBase):
"""
Base class for Confluence Cloud API operations.
"""
def __init__(self, url, *args, **kwargs):
"""
Init the rest api wrapper
:param url: string: The base url used for the rest api.
:param *args: list: The fixed arguments for the AtlassianRestApi.
:param **kwargs: dict: The keyword arguments for the AtlassianRestApi.
:return: nothing
"""
super(ConfluenceCloudBase, self).__init__(url, *args, **kwargs)