-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
36 lines (32 loc) · 957 Bytes
/
__init__.py
File metadata and controls
36 lines (32 loc) · 957 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
26
27
28
29
30
31
32
33
34
35
36
# pip install -r requirements.txt
# pytest --html=tests/report/test-report.html
# coverage report -m
# coverage html -d coveragereport
"""
__author__, __status__, __version__, __endpoint__ and __email__
`Your code has been rated at 10.00/10`
"""
from contentstack_utils.embedded.item_type import ItemType
from contentstack_utils.embedded.styletype import StyleType
from contentstack_utils.helper.metadata import Metadata
from contentstack_utils.helper.node_to_html import NodeToHtml
from contentstack_utils.render.options import Options
from contentstack_utils.utils import Utils
from contentstack_utils.gql import GQL
from contentstack_utils.automate import Automate
__all__ = (
"Utils",
"Options",
"Metadata",
"GQL",
"Automate",
"StyleType",
"ItemType",
"NodeToHtml"
)
__title__ = 'contentstack_utils'
__author__ = 'contentstack'
__status__ = 'debug'
__version__ = '1.3.1'
__endpoint__ = 'cdn.contentstack.io'
__contact__ = '[email protected]'