From 09afc59b9d99fc2e4a2d30c6f74906ae89294b29 Mon Sep 17 00:00:00 2001 From: Justaus3r <72691864+Justaus3r@users.noreply.github.com> Date: Wed, 1 Mar 2023 19:44:42 +0000 Subject: [PATCH] release: bump to 0.5.1(Api fixes) --- ceg/api.py | 13 +- ceg/misc.py | 2 +- docs/ceg/api.html | 848 +++++++++++++++++++++++----------------------- docs/ceg/ceg.html | 12 +- docs/search.js | 2 +- 5 files changed, 450 insertions(+), 427 deletions(-) diff --git a/ceg/api.py b/ceg/api.py index bf6f39a..9d32466 100644 --- a/ceg/api.py +++ b/ceg/api.py @@ -33,6 +33,7 @@ Object instantiation: ``` cgi = CegApi(secret_key="abcd") +# note that for using an instance for unauthenticated user, set secret_key to `None` ``` For creating a gist: ``` @@ -60,12 +61,16 @@ For downloading a gist: ``` response_str = cgi.get("gistid1", "gistid2") +# or for unauthenticated users +response_str = ceg.get("gistid1", "gistid2", username="myusername") # note that gist-ids are typically hashes like 'aa5a315d61ae9438b18d' ``` For creating a backup: ``` response_str = cgi.backup() +# or for unauthenticated users +response_str = cgi.backup(username="myusername") ``` For deleting a gist: @@ -107,7 +112,7 @@ def __init__(self, secret_key: str) -> None: gist_id="", ) - def get(self, *args: str) -> str: + def get(self, *args: str, username: Optional[str] = None) -> str: """Downloads a gist. Receives arbitrary amount gist-ids and downloads them. @@ -120,7 +125,7 @@ def get(self, *args: str) -> str: Returns HTTP call response status in string format. """ self.ceg_instance.http_operation = "get" - self.ceg_instance.arg_val = args + self.ceg_instance.arg_val = list(("user:" + username, ) + args) if username else list(args) self.ceg_instance.get() return self.ceg_instance.response_status_str @@ -205,7 +210,7 @@ def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]: self.ceg_instance.arg_val = user_name return self.ceg_instance.list_other() - def backup(self) -> str: + def backup(self, username: Optional[str] = None) -> str: """Create backup of all gists on local media. Returns: @@ -213,5 +218,7 @@ def backup(self) -> str: """ self.ceg_instance.http_operation = "get" self.ceg_instance.is_recursive_op = True + if username: + self.ceg_instance.arg_val = "user:" + username self.ceg_instance.backup() return self.ceg_instance.response_status_str diff --git a/ceg/misc.py b/ceg/misc.py index f3969ed..870a775 100644 --- a/ceg/misc.py +++ b/ceg/misc.py @@ -59,7 +59,7 @@ class UtilInfo: DESCRIPTION: str = "An all in one github's gist manager." # Caution(message to myself): Be careful when updating the version because # wrong updates can be a mess. - VERSION: str = "0.5.0" + VERSION: str = "0.5.1" def exception_executioner(exception_obj) -> None: diff --git a/docs/ceg/api.html b/docs/ceg/api.html index 361cd16..8d929a8 100644 --- a/docs/ceg/api.html +++ b/docs/ceg/api.html @@ -94,6 +94,7 @@

Typical usage example

Object instantiation:

cgi = CegApi(secret_key="abcd")
+# note that for using an instance for unauthenticated user, set secret_key to `None`
 

For creating a gist:

@@ -122,12 +123,16 @@

Typical usage example

For downloading a gist:

response_str = cgi.get("gistid1", "gistid2")
+# or for unauthenticated users
+response_str = ceg.get("gistid1", "gistid2", username="myusername")
 # note that gist-ids are typically hashes like 'aa5a315d61ae9438b18d'
 

For creating a backup:

response_str = cgi.backup()
+# or for unauthenticated users
+response_str = cgi.backup(username="myusername")
 

For deleting a gist:

@@ -178,188 +183,195 @@

Api Reference

33Object instantiation: 34``` 35cgi = CegApi(secret_key="abcd") - 36``` - 37For creating a gist: - 38``` - 39gist_url = cgi.post("file1.py", "file2.py", "dirty_secrets.verysecurefile", is_private=False, gist_description="bla") - 40# note that if a file provided as argument does not exist,ceg will automatically create it and open - 41# it in your default file editor. - 42``` - 43 - 44For modifying an existing gist: - 45``` - 46response_str = cgi.patch("file2.py", gist_id="abc") - 47# you can optionally also modify the gist description using 'gist_description="whatever"' - 48``` - 49 - 50For listing gists for authenticated user: - 51``` - 52user_gist_list = cgi.list() - 53``` - 54 - 55For list gist for unauthenticated user: - 56``` - 57user_gist_list = cgi.list_other("username") - 58``` - 59 - 60For downloading a gist: - 61``` - 62response_str = cgi.get("gistid1", "gistid2") - 63# note that gist-ids are typically hashes like 'aa5a315d61ae9438b18d' - 64``` - 65 - 66For creating a backup: + 36# note that for using an instance for unauthenticated user, set secret_key to `None` + 37``` + 38For creating a gist: + 39``` + 40gist_url = cgi.post("file1.py", "file2.py", "dirty_secrets.verysecurefile", is_private=False, gist_description="bla") + 41# note that if a file provided as argument does not exist,ceg will automatically create it and open + 42# it in your default file editor. + 43``` + 44 + 45For modifying an existing gist: + 46``` + 47response_str = cgi.patch("file2.py", gist_id="abc") + 48# you can optionally also modify the gist description using 'gist_description="whatever"' + 49``` + 50 + 51For listing gists for authenticated user: + 52``` + 53user_gist_list = cgi.list() + 54``` + 55 + 56For list gist for unauthenticated user: + 57``` + 58user_gist_list = cgi.list_other("username") + 59``` + 60 + 61For downloading a gist: + 62``` + 63response_str = cgi.get("gistid1", "gistid2") + 64# or for unauthenticated users + 65response_str = ceg.get("gistid1", "gistid2", username="myusername") + 66# note that gist-ids are typically hashes like 'aa5a315d61ae9438b18d' 67``` - 68response_str = cgi.backup() - 69``` - 70 - 71For deleting a gist: - 72``` - 73cgi.delete("gistid") - 74# doesn't support batch operation for now - 75``` - 76 - 77Api Reference - 78------------- - 79""" - 80 - 81from .ceg import Ceg - 82from typing import List, Dict, Optional - 83 - 84 - 85class CegApi: - 86 """Main interface for api. - 87 - 88 Provides the main interface open for api.contains all - 89 the methods needed to perform all basic operations on gists. - 90 - 91 Attributes: - 92 ceg_instance: its an instance of Ceg class.which contains the main - 93 implementation of ceg utility. - 94 """ + 68 + 69For creating a backup: + 70``` + 71response_str = cgi.backup() + 72# or for unauthenticated users + 73response_str = cgi.backup(username="myusername") + 74``` + 75 + 76For deleting a gist: + 77``` + 78cgi.delete("gistid") + 79# doesn't support batch operation for now + 80``` + 81 + 82Api Reference + 83------------- + 84""" + 85 + 86from .ceg import Ceg + 87from typing import List, Dict, Optional + 88 + 89 + 90class CegApi: + 91 """Main interface for api. + 92 + 93 Provides the main interface open for api.contains all + 94 the methods needed to perform all basic operations on gists. 95 - 96 def __init__(self, secret_key: str) -> None: - 97 """Inits CegApi with github secret key""" - 98 self.ceg_instance: Ceg = Ceg( - 99 operation="", -100 arg_value="", -101 is_recursive_operation=False, -102 is_other_user=False, -103 secret_key=secret_key, -104 do_logging=False, -105 gist_no_public=False, -106 gist_desc="", -107 gist_id="", -108 ) -109 -110 def get(self, *args: str) -> str: -111 """Downloads a gist. -112 -113 Receives arbitrary amount gist-ids and downloads them. + 96 Attributes: + 97 ceg_instance: its an instance of Ceg class.which contains the main + 98 implementation of ceg utility. + 99 """ +100 +101 def __init__(self, secret_key: str) -> None: +102 """Inits CegApi with github secret key""" +103 self.ceg_instance: Ceg = Ceg( +104 operation="", +105 arg_value="", +106 is_recursive_operation=False, +107 is_other_user=False, +108 secret_key=secret_key, +109 do_logging=False, +110 gist_no_public=False, +111 gist_desc="", +112 gist_id="", +113 ) 114 -115 Args: -116 *args: Variable lenght argument list containing gist-ids. +115 def get(self, *args: str, username: Optional[str] = None) -> str: +116 """Downloads a gist. 117 -118 -119 Returns: -120 Returns HTTP call response status in string format. -121 """ -122 self.ceg_instance.http_operation = "get" -123 self.ceg_instance.arg_val = args -124 self.ceg_instance.get() -125 return self.ceg_instance.response_status_str -126 -127 def post( -128 self, -129 *args: str, -130 is_private: bool = False, -131 gist_description: Optional[str] = None -132 ) -> str: -133 """Create arbitrary number of gists. -134 -135 Args: -136 *args: variable lenght arguments list containing gist-ids. -137 is_private: indicates whether to make gist private. -138 gist_description: Description for the gist. +118 Receives arbitrary amount gist-ids and downloads them. +119 +120 Args: +121 *args: Variable lenght argument list containing gist-ids. +122 +123 +124 Returns: +125 Returns HTTP call response status in string format. +126 """ +127 self.ceg_instance.http_operation = "get" +128 self.ceg_instance.arg_val = list(("user:" + username, ) + args) if username else list(args) +129 self.ceg_instance.get() +130 return self.ceg_instance.response_status_str +131 +132 def post( +133 self, +134 *args: str, +135 is_private: bool = False, +136 gist_description: Optional[str] = None +137 ) -> str: +138 """Create arbitrary number of gists. 139 -140 Returns: -141 Returns HTML url for newly created gist. -142 """ -143 self.ceg_instance.http_operation = "post" -144 self.ceg_instance.arg_val = args -145 self.ceg_instance.gist_no_public = is_private -146 self.ceg_instance.gist_description = gist_description -147 # type casting because of distinct variable types(i.e Optional[str] and str) -148 # and so so mypy will complain if not type casted -149 gist_html_url: str = str(self.ceg_instance.post()) -150 return gist_html_url -151 -152 def patch( -153 self, *args: str, gist_id: str, gist_description: Optional[str] = None -154 ) -> str: -155 """Modify arbitrary number of existing gists. +140 Args: +141 *args: variable lenght arguments list containing gist-ids. +142 is_private: indicates whether to make gist private. +143 gist_description: Description for the gist. +144 +145 Returns: +146 Returns HTML url for newly created gist. +147 """ +148 self.ceg_instance.http_operation = "post" +149 self.ceg_instance.arg_val = args +150 self.ceg_instance.gist_no_public = is_private +151 self.ceg_instance.gist_description = gist_description +152 # type casting because of distinct variable types(i.e Optional[str] and str) +153 # and so so mypy will complain if not type casted +154 gist_html_url: str = str(self.ceg_instance.post()) +155 return gist_html_url 156 -157 Args: -158 *args: variable lenght arguments list containing gist-names. -159 gist_id: gist-id for the gist,that is to be modified. -160 gist_description: (Optional) Description for the gist. +157 def patch( +158 self, *args: str, gist_id: str, gist_description: Optional[str] = None +159 ) -> str: +160 """Modify arbitrary number of existing gists. 161 -162 Returns: -163 Returns HTTP call response status in string format. -164 """ -165 self.ceg_instance.http_operation = "patch" -166 self.ceg_instance.arg_val = list(args) # type: ignore -167 self.ceg_instance.gist_description = gist_description -168 self.ceg_instance.gist_id = gist_id -169 self.ceg_instance.patch() -170 return self.ceg_instance.response_status_str -171 -172 def delete(self, *args) -> str: -173 """Delete an existing gist. -174 -175 Args: -176 gist_id = arbitrary amount of gist-ids. -177 -178 Returns: -179 Returns HTTP call response status in string format. -180 """ -181 self.ceg_instance.http_operation = "delete" -182 self.ceg_instance.arg_val = args -183 self.ceg_instance.delete() -184 return self.ceg_instance.response_status_str -185 -186 def list(self) -> Optional[List[Dict[str, str]]]: -187 """Return gist data for authenticated user. -188 -189 Returns: -190 Returns a sequence containing list of all the gists of user with some info. -191 """ -192 self.ceg_instance.http_operation = "get" -193 return self.ceg_instance.list() -194 -195 def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]: -196 """Return gist data for unauthenticated user. -197 -198 Args: -199 user_name: username for the user. -200 -201 Returns: -202 Returns a sequence containing list of all the gists of user with some info. -203 """ -204 self.ceg_instance.http_operation = "get" -205 self.ceg_instance.arg_val = user_name -206 return self.ceg_instance.list_other() -207 -208 def backup(self) -> str: -209 """Create backup of all gists on local media. -210 -211 Returns: -212 Returns HTTP call response status in string format. -213 """ -214 self.ceg_instance.http_operation = "get" -215 self.ceg_instance.is_recursive_op = True -216 self.ceg_instance.backup() -217 return self.ceg_instance.response_status_str +162 Args: +163 *args: variable lenght arguments list containing gist-names. +164 gist_id: gist-id for the gist,that is to be modified. +165 gist_description: (Optional) Description for the gist. +166 +167 Returns: +168 Returns HTTP call response status in string format. +169 """ +170 self.ceg_instance.http_operation = "patch" +171 self.ceg_instance.arg_val = list(args) # type: ignore +172 self.ceg_instance.gist_description = gist_description +173 self.ceg_instance.gist_id = gist_id +174 self.ceg_instance.patch() +175 return self.ceg_instance.response_status_str +176 +177 def delete(self, *args) -> str: +178 """Delete an existing gist. +179 +180 Args: +181 gist_id = arbitrary amount of gist-ids. +182 +183 Returns: +184 Returns HTTP call response status in string format. +185 """ +186 self.ceg_instance.http_operation = "delete" +187 self.ceg_instance.arg_val = args +188 self.ceg_instance.delete() +189 return self.ceg_instance.response_status_str +190 +191 def list(self) -> Optional[List[Dict[str, str]]]: +192 """Return gist data for authenticated user. +193 +194 Returns: +195 Returns a sequence containing list of all the gists of user with some info. +196 """ +197 self.ceg_instance.http_operation = "get" +198 return self.ceg_instance.list() +199 +200 def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]: +201 """Return gist data for unauthenticated user. +202 +203 Args: +204 user_name: username for the user. +205 +206 Returns: +207 Returns a sequence containing list of all the gists of user with some info. +208 """ +209 self.ceg_instance.http_operation = "get" +210 self.ceg_instance.arg_val = user_name +211 return self.ceg_instance.list_other() +212 +213 def backup(self, username: Optional[str] = None) -> str: +214 """Create backup of all gists on local media. +215 +216 Returns: +217 Returns HTTP call response status in string format. +218 """ +219 self.ceg_instance.http_operation = "get" +220 self.ceg_instance.is_recursive_op = True +221 if username: +222 self.ceg_instance.arg_val = "user:" + username +223 self.ceg_instance.backup() +224 return self.ceg_instance.response_status_str @@ -375,139 +387,141 @@

Api Reference

-
 86class CegApi:
- 87    """Main interface for api.
- 88
- 89    Provides the main interface open for api.contains all
- 90    the methods needed to perform all basic operations on gists.
- 91
- 92    Attributes:
- 93        ceg_instance: its an instance of Ceg class.which contains the main
- 94                      implementation of ceg utility.
- 95    """
+            
 91class CegApi:
+ 92    """Main interface for api.
+ 93
+ 94    Provides the main interface open for api.contains all
+ 95    the methods needed to perform all basic operations on gists.
  96
- 97    def __init__(self, secret_key: str) -> None:
- 98        """Inits CegApi with github secret key"""
- 99        self.ceg_instance: Ceg = Ceg(
-100            operation="",
-101            arg_value="",
-102            is_recursive_operation=False,
-103            is_other_user=False,
-104            secret_key=secret_key,
-105            do_logging=False,
-106            gist_no_public=False,
-107            gist_desc="",
-108            gist_id="",
-109        )
-110
-111    def get(self, *args: str) -> str:
-112        """Downloads a gist.
-113
-114        Receives arbitrary amount gist-ids and downloads them.
+ 97    Attributes:
+ 98        ceg_instance: its an instance of Ceg class.which contains the main
+ 99                      implementation of ceg utility.
+100    """
+101
+102    def __init__(self, secret_key: str) -> None:
+103        """Inits CegApi with github secret key"""
+104        self.ceg_instance: Ceg = Ceg(
+105            operation="",
+106            arg_value="",
+107            is_recursive_operation=False,
+108            is_other_user=False,
+109            secret_key=secret_key,
+110            do_logging=False,
+111            gist_no_public=False,
+112            gist_desc="",
+113            gist_id="",
+114        )
 115
-116        Args:
-117            *args: Variable lenght argument list containing gist-ids.
+116    def get(self, *args: str, username: Optional[str] = None) -> str:
+117        """Downloads a gist.
 118
-119
-120        Returns:
-121            Returns HTTP call response status in string format.
-122        """
-123        self.ceg_instance.http_operation = "get"
-124        self.ceg_instance.arg_val = args
-125        self.ceg_instance.get()
-126        return self.ceg_instance.response_status_str
-127
-128    def post(
-129        self,
-130        *args: str,
-131        is_private: bool = False,
-132        gist_description: Optional[str] = None
-133    ) -> str:
-134        """Create arbitrary number of gists.
-135
-136        Args:
-137            *args: variable lenght arguments list containing gist-ids.
-138            is_private: indicates whether to make gist private.
-139            gist_description: Description for the gist.
+119        Receives arbitrary amount gist-ids and downloads them.
+120
+121        Args:
+122            *args: Variable lenght argument list containing gist-ids.
+123
+124
+125        Returns:
+126            Returns HTTP call response status in string format.
+127        """
+128        self.ceg_instance.http_operation = "get"
+129        self.ceg_instance.arg_val = list(("user:" + username, ) + args) if username else list(args)
+130        self.ceg_instance.get()
+131        return self.ceg_instance.response_status_str
+132
+133    def post(
+134        self,
+135        *args: str,
+136        is_private: bool = False,
+137        gist_description: Optional[str] = None
+138    ) -> str:
+139        """Create arbitrary number of gists.
 140
-141        Returns:
-142            Returns HTML url for newly created gist.
-143        """
-144        self.ceg_instance.http_operation = "post"
-145        self.ceg_instance.arg_val = args
-146        self.ceg_instance.gist_no_public = is_private
-147        self.ceg_instance.gist_description = gist_description
-148        # type casting because of distinct variable types(i.e Optional[str] and str)
-149        # and so so mypy will complain if not type casted
-150        gist_html_url: str = str(self.ceg_instance.post())
-151        return gist_html_url
-152
-153    def patch(
-154        self, *args: str, gist_id: str, gist_description: Optional[str] = None
-155    ) -> str:
-156        """Modify arbitrary number of existing gists.
+141        Args:
+142            *args: variable lenght arguments list containing gist-ids.
+143            is_private: indicates whether to make gist private.
+144            gist_description: Description for the gist.
+145
+146        Returns:
+147            Returns HTML url for newly created gist.
+148        """
+149        self.ceg_instance.http_operation = "post"
+150        self.ceg_instance.arg_val = args
+151        self.ceg_instance.gist_no_public = is_private
+152        self.ceg_instance.gist_description = gist_description
+153        # type casting because of distinct variable types(i.e Optional[str] and str)
+154        # and so so mypy will complain if not type casted
+155        gist_html_url: str = str(self.ceg_instance.post())
+156        return gist_html_url
 157
-158        Args:
-159             *args: variable lenght arguments list containing gist-names.
-160             gist_id: gist-id for the gist,that is to be modified.
-161             gist_description: (Optional) Description for the gist.
+158    def patch(
+159        self, *args: str, gist_id: str, gist_description: Optional[str] = None
+160    ) -> str:
+161        """Modify arbitrary number of existing gists.
 162
-163        Returns:
-164            Returns HTTP call response status in string format.
-165        """
-166        self.ceg_instance.http_operation = "patch"
-167        self.ceg_instance.arg_val = list(args)  # type: ignore
-168        self.ceg_instance.gist_description = gist_description
-169        self.ceg_instance.gist_id = gist_id
-170        self.ceg_instance.patch()
-171        return self.ceg_instance.response_status_str
-172
-173    def delete(self, *args) -> str:
-174        """Delete an existing gist.
-175
-176        Args:
-177        gist_id = arbitrary amount of gist-ids.
-178
-179        Returns:
-180            Returns HTTP call response status in string format.
-181        """
-182        self.ceg_instance.http_operation = "delete"
-183        self.ceg_instance.arg_val = args
-184        self.ceg_instance.delete()
-185        return self.ceg_instance.response_status_str
-186
-187    def list(self) -> Optional[List[Dict[str, str]]]:
-188        """Return gist data for authenticated user.
-189
-190        Returns:
-191            Returns a sequence containing list of all the gists of user with some info.
-192        """
-193        self.ceg_instance.http_operation = "get"
-194        return self.ceg_instance.list()
-195
-196    def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]:
-197        """Return gist data for unauthenticated user.
-198
-199        Args:
-200            user_name: username for the user.
-201
-202        Returns:
-203            Returns a sequence containing list of all the gists of user with some info.
-204        """
-205        self.ceg_instance.http_operation = "get"
-206        self.ceg_instance.arg_val = user_name
-207        return self.ceg_instance.list_other()
-208
-209    def backup(self) -> str:
-210        """Create backup of all gists on local media.
-211
-212        Returns:
-213            Returns HTTP call response status in string format.
-214        """
-215        self.ceg_instance.http_operation = "get"
-216        self.ceg_instance.is_recursive_op = True
-217        self.ceg_instance.backup()
-218        return self.ceg_instance.response_status_str
+163        Args:
+164             *args: variable lenght arguments list containing gist-names.
+165             gist_id: gist-id for the gist,that is to be modified.
+166             gist_description: (Optional) Description for the gist.
+167
+168        Returns:
+169            Returns HTTP call response status in string format.
+170        """
+171        self.ceg_instance.http_operation = "patch"
+172        self.ceg_instance.arg_val = list(args)  # type: ignore
+173        self.ceg_instance.gist_description = gist_description
+174        self.ceg_instance.gist_id = gist_id
+175        self.ceg_instance.patch()
+176        return self.ceg_instance.response_status_str
+177
+178    def delete(self, *args) -> str:
+179        """Delete an existing gist.
+180
+181        Args:
+182        gist_id = arbitrary amount of gist-ids.
+183
+184        Returns:
+185            Returns HTTP call response status in string format.
+186        """
+187        self.ceg_instance.http_operation = "delete"
+188        self.ceg_instance.arg_val = args
+189        self.ceg_instance.delete()
+190        return self.ceg_instance.response_status_str
+191
+192    def list(self) -> Optional[List[Dict[str, str]]]:
+193        """Return gist data for authenticated user.
+194
+195        Returns:
+196            Returns a sequence containing list of all the gists of user with some info.
+197        """
+198        self.ceg_instance.http_operation = "get"
+199        return self.ceg_instance.list()
+200
+201    def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]:
+202        """Return gist data for unauthenticated user.
+203
+204        Args:
+205            user_name: username for the user.
+206
+207        Returns:
+208            Returns a sequence containing list of all the gists of user with some info.
+209        """
+210        self.ceg_instance.http_operation = "get"
+211        self.ceg_instance.arg_val = user_name
+212        return self.ceg_instance.list_other()
+213
+214    def backup(self, username: Optional[str] = None) -> str:
+215        """Create backup of all gists on local media.
+216
+217        Returns:
+218            Returns HTTP call response status in string format.
+219        """
+220        self.ceg_instance.http_operation = "get"
+221        self.ceg_instance.is_recursive_op = True
+222        if username:
+223            self.ceg_instance.arg_val = "user:" + username
+224        self.ceg_instance.backup()
+225        return self.ceg_instance.response_status_str
 
@@ -535,19 +549,19 @@
Attributes:
-
 97    def __init__(self, secret_key: str) -> None:
- 98        """Inits CegApi with github secret key"""
- 99        self.ceg_instance: Ceg = Ceg(
-100            operation="",
-101            arg_value="",
-102            is_recursive_operation=False,
-103            is_other_user=False,
-104            secret_key=secret_key,
-105            do_logging=False,
-106            gist_no_public=False,
-107            gist_desc="",
-108            gist_id="",
-109        )
+            
102    def __init__(self, secret_key: str) -> None:
+103        """Inits CegApi with github secret key"""
+104        self.ceg_instance: Ceg = Ceg(
+105            operation="",
+106            arg_value="",
+107            is_recursive_operation=False,
+108            is_other_user=False,
+109            secret_key=secret_key,
+110            do_logging=False,
+111            gist_no_public=False,
+112            gist_desc="",
+113            gist_id="",
+114        )
 
@@ -561,28 +575,28 @@
Attributes:
def - get(self, *args: str) -> str: + get(self, *args: str, username: Optional[str] = None) -> str:
-
111    def get(self, *args: str) -> str:
-112        """Downloads a gist.
-113
-114        Receives arbitrary amount gist-ids and downloads them.
-115
-116        Args:
-117            *args: Variable lenght argument list containing gist-ids.
+            
116    def get(self, *args: str, username: Optional[str] = None) -> str:
+117        """Downloads a gist.
 118
-119
-120        Returns:
-121            Returns HTTP call response status in string format.
-122        """
-123        self.ceg_instance.http_operation = "get"
-124        self.ceg_instance.arg_val = args
-125        self.ceg_instance.get()
-126        return self.ceg_instance.response_status_str
+119        Receives arbitrary amount gist-ids and downloads them.
+120
+121        Args:
+122            *args: Variable lenght argument list containing gist-ids.
+123
+124
+125        Returns:
+126            Returns HTTP call response status in string format.
+127        """
+128        self.ceg_instance.http_operation = "get"
+129        self.ceg_instance.arg_val = list(("user:" + username, ) + args) if username else list(args)
+130        self.ceg_instance.get()
+131        return self.ceg_instance.response_status_str
 
@@ -616,30 +630,30 @@
Returns:
-
128    def post(
-129        self,
-130        *args: str,
-131        is_private: bool = False,
-132        gist_description: Optional[str] = None
-133    ) -> str:
-134        """Create arbitrary number of gists.
-135
-136        Args:
-137            *args: variable lenght arguments list containing gist-ids.
-138            is_private: indicates whether to make gist private.
-139            gist_description: Description for the gist.
+            
133    def post(
+134        self,
+135        *args: str,
+136        is_private: bool = False,
+137        gist_description: Optional[str] = None
+138    ) -> str:
+139        """Create arbitrary number of gists.
 140
-141        Returns:
-142            Returns HTML url for newly created gist.
-143        """
-144        self.ceg_instance.http_operation = "post"
-145        self.ceg_instance.arg_val = args
-146        self.ceg_instance.gist_no_public = is_private
-147        self.ceg_instance.gist_description = gist_description
-148        # type casting because of distinct variable types(i.e Optional[str] and str)
-149        # and so so mypy will complain if not type casted
-150        gist_html_url: str = str(self.ceg_instance.post())
-151        return gist_html_url
+141        Args:
+142            *args: variable lenght arguments list containing gist-ids.
+143            is_private: indicates whether to make gist private.
+144            gist_description: Description for the gist.
+145
+146        Returns:
+147            Returns HTML url for newly created gist.
+148        """
+149        self.ceg_instance.http_operation = "post"
+150        self.ceg_instance.arg_val = args
+151        self.ceg_instance.gist_no_public = is_private
+152        self.ceg_instance.gist_description = gist_description
+153        # type casting because of distinct variable types(i.e Optional[str] and str)
+154        # and so so mypy will complain if not type casted
+155        gist_html_url: str = str(self.ceg_instance.post())
+156        return gist_html_url
 
@@ -673,25 +687,25 @@
Returns:
-
153    def patch(
-154        self, *args: str, gist_id: str, gist_description: Optional[str] = None
-155    ) -> str:
-156        """Modify arbitrary number of existing gists.
-157
-158        Args:
-159             *args: variable lenght arguments list containing gist-names.
-160             gist_id: gist-id for the gist,that is to be modified.
-161             gist_description: (Optional) Description for the gist.
+            
158    def patch(
+159        self, *args: str, gist_id: str, gist_description: Optional[str] = None
+160    ) -> str:
+161        """Modify arbitrary number of existing gists.
 162
-163        Returns:
-164            Returns HTTP call response status in string format.
-165        """
-166        self.ceg_instance.http_operation = "patch"
-167        self.ceg_instance.arg_val = list(args)  # type: ignore
-168        self.ceg_instance.gist_description = gist_description
-169        self.ceg_instance.gist_id = gist_id
-170        self.ceg_instance.patch()
-171        return self.ceg_instance.response_status_str
+163        Args:
+164             *args: variable lenght arguments list containing gist-names.
+165             gist_id: gist-id for the gist,that is to be modified.
+166             gist_description: (Optional) Description for the gist.
+167
+168        Returns:
+169            Returns HTTP call response status in string format.
+170        """
+171        self.ceg_instance.http_operation = "patch"
+172        self.ceg_instance.arg_val = list(args)  # type: ignore
+173        self.ceg_instance.gist_description = gist_description
+174        self.ceg_instance.gist_id = gist_id
+175        self.ceg_instance.patch()
+176        return self.ceg_instance.response_status_str
 
@@ -725,19 +739,19 @@
Returns:
-
173    def delete(self, *args) -> str:
-174        """Delete an existing gist.
-175
-176        Args:
-177        gist_id = arbitrary amount of gist-ids.
-178
-179        Returns:
-180            Returns HTTP call response status in string format.
-181        """
-182        self.ceg_instance.http_operation = "delete"
-183        self.ceg_instance.arg_val = args
-184        self.ceg_instance.delete()
-185        return self.ceg_instance.response_status_str
+            
178    def delete(self, *args) -> str:
+179        """Delete an existing gist.
+180
+181        Args:
+182        gist_id = arbitrary amount of gist-ids.
+183
+184        Returns:
+185            Returns HTTP call response status in string format.
+186        """
+187        self.ceg_instance.http_operation = "delete"
+188        self.ceg_instance.arg_val = args
+189        self.ceg_instance.delete()
+190        return self.ceg_instance.response_status_str
 
@@ -766,14 +780,14 @@
Returns:
-
187    def list(self) -> Optional[List[Dict[str, str]]]:
-188        """Return gist data for authenticated user.
-189
-190        Returns:
-191            Returns a sequence containing list of all the gists of user with some info.
-192        """
-193        self.ceg_instance.http_operation = "get"
-194        return self.ceg_instance.list()
+            
192    def list(self) -> Optional[List[Dict[str, str]]]:
+193        """Return gist data for authenticated user.
+194
+195        Returns:
+196            Returns a sequence containing list of all the gists of user with some info.
+197        """
+198        self.ceg_instance.http_operation = "get"
+199        return self.ceg_instance.list()
 
@@ -799,18 +813,18 @@
Returns:
-
196    def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]:
-197        """Return gist data for unauthenticated user.
-198
-199        Args:
-200            user_name: username for the user.
-201
-202        Returns:
-203            Returns a sequence containing list of all the gists of user with some info.
-204        """
-205        self.ceg_instance.http_operation = "get"
-206        self.ceg_instance.arg_val = user_name
-207        return self.ceg_instance.list_other()
+            
201    def list_other(self, user_name: str) -> Optional[List[Dict[str, str]]]:
+202        """Return gist data for unauthenticated user.
+203
+204        Args:
+205            user_name: username for the user.
+206
+207        Returns:
+208            Returns a sequence containing list of all the gists of user with some info.
+209        """
+210        self.ceg_instance.http_operation = "get"
+211        self.ceg_instance.arg_val = user_name
+212        return self.ceg_instance.list_other()
 
@@ -836,22 +850,24 @@
Returns:
def - backup(self) -> str: + backup(self, username: Optional[str] = None) -> str:
-
209    def backup(self) -> str:
-210        """Create backup of all gists on local media.
-211
-212        Returns:
-213            Returns HTTP call response status in string format.
-214        """
-215        self.ceg_instance.http_operation = "get"
-216        self.ceg_instance.is_recursive_op = True
-217        self.ceg_instance.backup()
-218        return self.ceg_instance.response_status_str
+            
214    def backup(self, username: Optional[str] = None) -> str:
+215        """Create backup of all gists on local media.
+216
+217        Returns:
+218            Returns HTTP call response status in string format.
+219        """
+220        self.ceg_instance.http_operation = "get"
+221        self.ceg_instance.is_recursive_op = True
+222        if username:
+223            self.ceg_instance.arg_val = "user:" + username
+224        self.ceg_instance.backup()
+225        return self.ceg_instance.response_status_str
 
diff --git a/docs/ceg/ceg.html b/docs/ceg/ceg.html index e92d2ac..22d3fc9 100644 --- a/docs/ceg/ceg.html +++ b/docs/ceg/ceg.html @@ -469,8 +469,8 @@

381 self.end_point, 382 ) 383 no_header = True -384 if isinstance(self.arg_val, List): -385 self.arg_val.pop(0) +384 if isinstance(self.arg_val, List): +385 self.arg_val.pop(0) 386 387 if gist_id is not None: 388 self.logger.info( @@ -959,8 +959,8 @@

382 self.end_point, 383 ) 384 no_header = True -385 if isinstance(self.arg_val, List): -386 self.arg_val.pop(0) +385 if isinstance(self.arg_val, List): +386 self.arg_val.pop(0) 387 388 if gist_id is not None: 389 self.logger.info( @@ -1424,8 +1424,8 @@
Returns:
382 self.end_point, 383 ) 384 no_header = True -385 if isinstance(self.arg_val, List): -386 self.arg_val.pop(0) +385 if isinstance(self.arg_val, List): +386 self.arg_val.pop(0) 387 388 if gist_id is not None: 389 self.logger.info( diff --git a/docs/search.js b/docs/search.js index c8a8a6d..a562c77 100644 --- a/docs/search.js +++ b/docs/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oIntroduction

\n\n

Ceg (as in create gist and pronounced Keg) is a command-line utility as well as a library for \ninteracting with github gists.it uses github's official api for performing all operations.it can:

\n\n
    \n
  • Create gists.
  • \n
  • Modify existing gists.
  • \n
  • Download gists.
  • \n
  • List public/private(secret) gists for authenticated users as well as list public gists for unauthenticated users.
  • \n
  • Delete a gist.
  • \n
  • Create local backup of all the gists.
  • \n
\n\n

Installation

\n\n

There are multiple ways to install ceg,the simplest one being installing from PYPI:

\n\n
# py instead of python3 on windows\npython3 -m pip install ceg\n
\n\n

You can also install it manually.for that you need to have poetry installed and be on a system with minimal python version being 3.7.after installing poetry,you can just \ndo poetry build and pip install from dist/ceg*.whl or whatever you prefer.please be mindful that installing poetry\nfrom pip is not recommended.

\n\n
# you can also use install/uninstall scripts after cloning the repo, if on *nix.\ncurl -sSL https://install.python-poetry.org | python3 - \ngit clone https://github.com/justaus3r/ceg.git \ncd ceg \npoetry build\n
\n\n

Now wat?

\n\n

After installing ceg you can either do ceg --help in your terminal, check out projects README or refer to api documentation.

\n\n

Note:\nPlease only refer to submodule named api as other files contain reference to main implementation of ceg and such\nmay contain ambiguous documentation which may or maynot be clear unless codebase is understood.

\n"}, "ceg.api": {"fullname": "ceg.api", "modulename": "ceg.api", "kind": "module", "doc": "

Description

\n\n

This is the main api of ceg.it internally uses the main implementation of ceg.interface provided to a developer\nis a single class named CegApi, which contains all the functionality of ceg.it can be instantiated by providing\ngithub secret key, which can be obtained from developers github >> Settings >> Developer settings >> Personal access tokens.

\n\n

Typical usage example

\n\n

Object instantiation:

\n\n
cgi = CegApi(secret_key=\"abcd\")\n
\n\n

For creating a gist:

\n\n
gist_url = cgi.post(\"file1.py\", \"file2.py\", \"dirty_secrets.verysecurefile\", is_private=False, gist_description=\"bla\")\n# note that if a file provided as argument does not exist,ceg will automatically create it and open\n# it in your default file editor.\n
\n\n

For modifying an existing gist:

\n\n
response_str = cgi.patch(\"file2.py\", gist_id=\"abc\")\n# you can optionally also modify the gist description using 'gist_description=\"whatever\"'\n
\n\n

For listing gists for authenticated user:

\n\n
user_gist_list = cgi.list()\n
\n\n

For list gist for unauthenticated user:

\n\n
user_gist_list = cgi.list_other(\"username\")\n
\n\n

For downloading a gist:

\n\n
response_str = cgi.get(\"gistid1\", \"gistid2\")\n# note that gist-ids are typically hashes like 'aa5a315d61ae9438b18d'\n
\n\n

For creating a backup:

\n\n
response_str = cgi.backup()\n
\n\n

For deleting a gist:

\n\n
cgi.delete(\"gistid\")\n# doesn't support batch operation for now \n
\n\n

Api Reference

\n"}, "ceg.api.CegApi": {"fullname": "ceg.api.CegApi", "modulename": "ceg.api", "qualname": "CegApi", "kind": "class", "doc": "

Main interface for api.

\n\n

Provides the main interface open for api.contains all\nthe methods needed to perform all basic operations on gists.

\n\n
Attributes:
\n\n
    \n
  • ceg_instance: its an instance of Ceg class.which contains the main\nimplementation of ceg utility.
  • \n
\n"}, "ceg.api.CegApi.__init__": {"fullname": "ceg.api.CegApi.__init__", "modulename": "ceg.api", "qualname": "CegApi.__init__", "kind": "function", "doc": "

Inits CegApi with github secret key

\n", "signature": "(secret_key: str)"}, "ceg.api.CegApi.get": {"fullname": "ceg.api.CegApi.get", "modulename": "ceg.api", "qualname": "CegApi.get", "kind": "function", "doc": "

Downloads a gist.

\n\n

Receives arbitrary amount gist-ids and downloads them.

\n\n
Arguments:
\n\n
    \n
  • *args: Variable lenght argument list containing gist-ids.
  • \n
\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(self, *args: str) -> str:", "funcdef": "def"}, "ceg.api.CegApi.post": {"fullname": "ceg.api.CegApi.post", "modulename": "ceg.api", "qualname": "CegApi.post", "kind": "function", "doc": "

Create arbitrary number of gists.

\n\n
Arguments:
\n\n
    \n
  • *args: variable lenght arguments list containing gist-ids.
  • \n
  • is_private: indicates whether to make gist private.
  • \n
  • gist_description: Description for the gist.
  • \n
\n\n
Returns:
\n\n
\n

Returns HTML url for newly created gist.

\n
\n", "signature": "(\tself,\t*args: str,\tis_private: bool = False,\tgist_description: Optional[str] = None) -> str:", "funcdef": "def"}, "ceg.api.CegApi.patch": {"fullname": "ceg.api.CegApi.patch", "modulename": "ceg.api", "qualname": "CegApi.patch", "kind": "function", "doc": "

Modify arbitrary number of existing gists.

\n\n
Arguments:
\n\n
    \n
  • *args: variable lenght arguments list containing gist-names.
  • \n
  • gist_id: gist-id for the gist,that is to be modified.
  • \n
  • gist_description: (Optional) Description for the gist.
  • \n
\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(\tself,\t*args: str,\tgist_id: str,\tgist_description: Optional[str] = None) -> str:", "funcdef": "def"}, "ceg.api.CegApi.delete": {"fullname": "ceg.api.CegApi.delete", "modulename": "ceg.api", "qualname": "CegApi.delete", "kind": "function", "doc": "

Delete an existing gist.

\n\n

Args:\ngist_id = arbitrary amount of gist-ids.

\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(self, *args) -> str:", "funcdef": "def"}, "ceg.api.CegApi.list": {"fullname": "ceg.api.CegApi.list", "modulename": "ceg.api", "qualname": "CegApi.list", "kind": "function", "doc": "

Return gist data for authenticated user.

\n\n
Returns:
\n\n
\n

Returns a sequence containing list of all the gists of user with some info.

\n
\n", "signature": "(self) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.api.CegApi.list_other": {"fullname": "ceg.api.CegApi.list_other", "modulename": "ceg.api", "qualname": "CegApi.list_other", "kind": "function", "doc": "

Return gist data for unauthenticated user.

\n\n
Arguments:
\n\n
    \n
  • user_name: username for the user.
  • \n
\n\n
Returns:
\n\n
\n

Returns a sequence containing list of all the gists of user with some info.

\n
\n", "signature": "(self, user_name: str) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.api.CegApi.backup": {"fullname": "ceg.api.CegApi.backup", "modulename": "ceg.api", "qualname": "CegApi.backup", "kind": "function", "doc": "

Create backup of all gists on local media.

\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(self) -> str:", "funcdef": "def"}, "ceg.arg_parser": {"fullname": "ceg.arg_parser", "modulename": "ceg.arg_parser", "kind": "module", "doc": "

Argument parser for ceg

\n"}, "ceg.arg_parser.ArgumentParser": {"fullname": "ceg.arg_parser.ArgumentParser", "modulename": "ceg.arg_parser", "qualname": "ArgumentParser", "kind": "class", "doc": "

Reccord arguments from cli.

\n\n

Argument parser that inherits from argparse.ArgumentParser\nclass and is used for reccording all the arguments from cli.

\n", "bases": "argparse.ArgumentParser"}, "ceg.arg_parser.ArgumentParser.__init__": {"fullname": "ceg.arg_parser.ArgumentParser.__init__", "modulename": "ceg.arg_parser", "qualname": "ArgumentParser.__init__", "kind": "function", "doc": "

Inits (Parent) ArgumentParser with program name and description

\n", "signature": "()"}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"fullname": "ceg.arg_parser.ArgumentParser.reccord_arguments", "modulename": "ceg.arg_parser", "qualname": "ArgumentParser.reccord_arguments", "kind": "function", "doc": "

Record (possibly) conflicting arguments from commandline.

\n\n

arguments that conflict with each other,i.e: not meant to be used\nsimultaneously will be reccorded with add_mutually_exclusive_group()\nmethod while normal arguments will be reccorded with add_argument()\nmethod.

\n\n
Returns:
\n\n
\n

Returns the argparse.Namespace object containing all the arguments.

\n
\n", "signature": "(self) -> argparse.Namespace:", "funcdef": "def"}, "ceg.ceg": {"fullname": "ceg.ceg", "modulename": "ceg.ceg", "kind": "module", "doc": "

Main implementation of ceg

\n"}, "ceg.ceg.Ceg": {"fullname": "ceg.ceg.Ceg", "modulename": "ceg.ceg", "qualname": "Ceg", "kind": "class", "doc": "

Main implementation of ceg.

\n\n

The Ceg class actually contains the main implementation\nof the utility.

\n\n
Attributes:
\n\n
    \n
  • http_operation: A Callable that actually performs the http calls.
  • \n
  • arg_val: A string that is used as argument value as well as a switch for operation resolution.
  • \n
  • is_recursive_op: A boolean indicating if the operation is recursive.
  • \n
  • header: A Dict containing the HTTP header.
  • \n
  • end_point: Endpoint for api calls.
  • \n
  • payload: payload containing data for post requests.
  • \n
  • to_stdout: boolean indicating whether to send data to stdout.
  • \n
  • gist_no_public: boolean indicating if a gist is private.
  • \n
  • is_other: boolean indicating if to list gists for unauth user.
  • \n
  • gist_description: String containing gist description which can be used in patch(),post().
  • \n
  • gist_id: String containing gist-id.
  • \n
  • response_status_str: Contains HTTP call response status in string format.
  • \n
  • logger: Logger object.
  • \n
  • ceg_get_namespace: a namespace containing states and responses relating to Ceg.get()
  • \n
\n"}, "ceg.ceg.Ceg.__init__": {"fullname": "ceg.ceg.Ceg.__init__", "modulename": "ceg.ceg", "qualname": "Ceg.__init__", "kind": "function", "doc": "

Inits Ceg with appropriate attributes

\n", "signature": "(\toperation: str,\targ_value: Union[str, Tuple[str, ...], NoneType],\tis_recursive_operation: bool,\tis_other_user: bool,\tsecret_key: Optional[str],\tdo_logging: bool,\tgist_no_public: bool,\tgist_desc: Optional[str],\tgist_id: Optional[str])"}, "ceg.ceg.Ceg.list": {"fullname": "ceg.ceg.Ceg.list", "modulename": "ceg.ceg", "qualname": "Ceg.list", "kind": "function", "doc": "

lists public/private gists for authenticated user.

\n\n

Performs GET operation on endpoint and retrieves all the public/private gists and propagates the formatted\nresponse to standard stream.

\n\n
Arguments:
\n\n
    \n
  • end_point: optional endpoint string.
  • \n
  • header: optional header for the request.
  • \n
\n\n
Returns:
\n\n
\n

(Optionally) returns a list containing all gists.

\n
\n", "signature": "(\tself,\tend_point: Optional[str] = None,\theader: Optional[Dict[str, str]] = None,\tno_header: bool = False) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.ceg.Ceg.get": {"fullname": "ceg.ceg.Ceg.get", "modulename": "ceg.ceg", "qualname": "Ceg.get", "kind": "function", "doc": "

Download gists using gist-ids as argument.

\n\n

This method downloads all the gists given on cli. backup() also uses this method internally.

\n\n
Arguments:
\n\n
    \n
  • **kwargs = Auxiliary arbitrary keyword arguments.
  • \n
\n", "signature": "(self, **kwargs) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.post": {"fullname": "ceg.ceg.Ceg.post", "modulename": "ceg.ceg", "qualname": "Ceg.post", "kind": "function", "doc": "

Create gists.

\n\n

Creates arbitrary number of gists depending on files given on cli.

\n\n
Arguments:
\n\n
    \n
  • **kwargs: Auxiliary arbitrary keyword arguments.
  • \n
\n\n
Returns:
\n\n
\n

(Optionally) return html url of the newly created gist

\n
\n", "signature": "(self, **kwargs) -> Optional[str]:", "funcdef": "def"}, "ceg.ceg.Ceg.patch": {"fullname": "ceg.ceg.Ceg.patch", "modulename": "ceg.ceg", "qualname": "Ceg.patch", "kind": "function", "doc": "

Modify an existing gist.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.delete": {"fullname": "ceg.ceg.Ceg.delete", "modulename": "ceg.ceg", "qualname": "Ceg.delete", "kind": "function", "doc": "

Delete an existing gist.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.backup": {"fullname": "ceg.ceg.Ceg.backup", "modulename": "ceg.ceg", "qualname": "Ceg.backup", "kind": "function", "doc": "

Create a local backup of all the gists.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.list_other": {"fullname": "ceg.ceg.Ceg.list_other", "modulename": "ceg.ceg", "qualname": "Ceg.list_other", "kind": "function", "doc": "

Get gists for other users

\n\n

This method simply mutates the endpoint and nulls the auth headers and simply calls the list() method.

\n\n
Arguments:
\n\n
    \n
  • user_name: github username for the other user.
  • \n
\n\n
Returns:
\n\n
\n

(Optionally) returns a list containing all gists.

\n
\n", "signature": "(self) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.ceg.Ceg.perform_operation": {"fullname": "ceg.ceg.Ceg.perform_operation", "modulename": "ceg.ceg", "qualname": "Ceg.perform_operation", "kind": "function", "doc": "

Wrapper for all the methods

\n\n

Performs all the http requests,sorts out data and\ndoes all the pretty printing using rich.

\n\n
Returns:
\n\n
\n

Return code used on exit,indicating success or failure.

\n
\n\n
Raises:
\n\n
    \n
  • ConnectionError: raised due to connection error while sending the http request.
  • \n
  • BadCredentials: raised due to bad github secret key.
  • \n
  • ResourceNotFound: raised due to inavailability of inquired resource.
  • \n
\n", "signature": "(self) -> int:", "funcdef": "def"}, "ceg.cli": {"fullname": "ceg.cli", "modulename": "ceg.cli", "kind": "module", "doc": "

Main cli

\n"}, "ceg.cli.ceg_cli": {"fullname": "ceg.cli.ceg_cli", "modulename": "ceg.cli", "qualname": "ceg_cli", "kind": "function", "doc": "

First subroutine to run on execution of utility.

\n\n

The main function which reccords the arguments\nand also partially handles them.

\n", "signature": "() -> None:", "funcdef": "def"}, "ceg.exceptions": {"fullname": "ceg.exceptions", "modulename": "ceg.exceptions", "kind": "module", "doc": "

Cegs exceptions

\n"}, "ceg.exceptions.CegExceptions": {"fullname": "ceg.exceptions.CegExceptions", "modulename": "ceg.exceptions", "qualname": "CegExceptions", "kind": "class", "doc": "

All of Cegs exceptions.

\n"}, "ceg.exceptions.CegExceptions.BadCredentials": {"fullname": "ceg.exceptions.CegExceptions.BadCredentials", "modulename": "ceg.exceptions", "qualname": "CegExceptions.BadCredentials", "kind": "class", "doc": "

raised when a bad response like bad auth is risen.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"fullname": "ceg.exceptions.CegExceptions.BadCredentials.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.BadCredentials.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Bad Credentials!')"}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"fullname": "ceg.exceptions.CegExceptions.ResourceNotFound", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ResourceNotFound", "kind": "class", "doc": "

raised when inquired resource is not found.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"fullname": "ceg.exceptions.CegExceptions.ResourceNotFound.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ResourceNotFound.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Inquired Resource not found!')"}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"fullname": "ceg.exceptions.CegExceptions.ForbiddenResource", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ForbiddenResource", "kind": "class", "doc": "

raised when forbidden resource is inquired.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"fullname": "ceg.exceptions.CegExceptions.ForbiddenResource.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ForbiddenResource.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Forbidden Resource!')"}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"fullname": "ceg.exceptions.CegExceptions.UnprocessableRequest", "modulename": "ceg.exceptions", "qualname": "CegExceptions.UnprocessableRequest", "kind": "class", "doc": "

raised when a syntatically correct (tho possibly semantically wrong) request is unprocessable by the server.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"fullname": "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.UnprocessableRequest.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Unprocessable Request!')"}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"fullname": "ceg.exceptions.CegExceptions.InsufficientSubArguments", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InsufficientSubArguments", "kind": "class", "doc": "

raised when sub-arguments are missing from argument list.

\n\n

Due to nature of handling of arguments from cli,missing sub-arguments\nare not catched by argparse.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"fullname": "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InsufficientSubArguments.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str)"}, "ceg.exceptions.CegExceptions.InternalException": {"fullname": "ceg.exceptions.CegExceptions.InternalException", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InternalException", "kind": "class", "doc": "

raised due to internal errors.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"fullname": "ceg.exceptions.CegExceptions.InternalException.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InternalException.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Unprocessable Resource')"}, "ceg.exceptions.GenericReturnCodes": {"fullname": "ceg.exceptions.GenericReturnCodes", "modulename": "ceg.exceptions", "qualname": "GenericReturnCodes", "kind": "class", "doc": "

Generic Return Codes

\n\n

Contains the commandline return codes.

\n\n
Attributes:
\n\n
    \n
  • SUCCESS: return code for successfull operation.
  • \n
  • FAILURE: return code incase an error occurs.
  • \n
\n"}, "ceg.logger": {"fullname": "ceg.logger", "modulename": "ceg.logger", "kind": "module", "doc": "

Enhanced Logger for Ceg

\n"}, "ceg.logger.Logger": {"fullname": "ceg.logger.Logger", "modulename": "ceg.logger", "qualname": "Logger", "kind": "class", "doc": "

Logger object responsible for logging all the events.

\n\n

Inherits from Logger class of stdlib logging library\nand implements the log propagation validation,i.e whether\nlogs should be logged to the stdout/stderr.

\n\n

Attributes:\nsend_log = boolean indicating whether to log or not\nloglevel = indicates the effective log level.\ndateformat = string represrnting datetime format.\nhandler = Handler used by the logger.

\n", "bases": "logging.Logger"}, "ceg.logger.Logger.__init__": {"fullname": "ceg.logger.Logger.__init__", "modulename": "ceg.logger", "qualname": "Logger.__init__", "kind": "function", "doc": "

Inits the Logger

\n", "signature": "(\tsend_log: bool = True,\tloglevel: Union[int, str] = 20,\tdateformat: str = '[%X]')"}, "ceg.logger.Logger.info": {"fullname": "ceg.logger.Logger.info", "modulename": "ceg.logger", "qualname": "Logger.info", "kind": "function", "doc": "

Log 'msg % args' with severity 'INFO'.

\n\n

To pass exception information, use the keyword argument exc_info with\na true value, e.g.

\n\n

logger.info(\"Houston, we have a %s\", \"interesting problem\", exc_info=1)

\n", "signature": "(self, msg: str, send_log: bool = True, *args: Any, **kwargs: Any) -> None:", "funcdef": "def"}, "ceg.logger.Logger.warning": {"fullname": "ceg.logger.Logger.warning", "modulename": "ceg.logger", "qualname": "Logger.warning", "kind": "function", "doc": "

Log 'msg % args' with severity 'WARNING'.

\n\n

To pass exception information, use the keyword argument exc_info with\na true value, e.g.

\n\n

logger.warning(\"Houston, we have a %s\", \"bit of a problem\", exc_info=1)

\n", "signature": "(self, msg: str, send_log: bool = True, *args: Any, **kwargs: Any) -> None:", "funcdef": "def"}, "ceg.logger.Logger.error": {"fullname": "ceg.logger.Logger.error", "modulename": "ceg.logger", "qualname": "Logger.error", "kind": "function", "doc": "

Log 'msg % args' with severity 'ERROR'.

\n\n

To pass exception information, use the keyword argument exc_info with\na true value, e.g.

\n\n

logger.error(\"Houston, we have a %s\", \"major problem\", exc_info=1)

\n", "signature": "(self, msg: str, send_log: bool = True, *args: Any, **kwargs: Any) -> None:", "funcdef": "def"}, "ceg.misc": {"fullname": "ceg.misc", "modulename": "ceg.misc", "kind": "module", "doc": "

Misc stuff dat i couldn't figure out where to put

\n"}, "ceg.misc.UtilInfo": {"fullname": "ceg.misc.UtilInfo", "modulename": "ceg.misc", "qualname": "UtilInfo", "kind": "class", "doc": "

Metainfo about utility.

\n\n

Class containing all the meta info about\nthe utility.

\n\n
Attributes:
\n\n
    \n
  • UTIL_NAME: The utility name.
  • \n
  • DESCRIPTION: Short description of the utility.
  • \n
  • VERSION: Semantic verson of the utility.
  • \n
\n"}, "ceg.misc.Misc": {"fullname": "ceg.misc.Misc", "modulename": "ceg.misc", "qualname": "Misc", "kind": "class", "doc": "

Misc stuff.

\n\n

Contains all the miscellaneous vars.

\n\n

Attributes:\nhttp_intrinsics: List containing names of all http methods.\nsecret_key: Gitub Secret key extracted from env variable.

\n"}}, "docInfo": {"ceg": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 315}, "ceg.api": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 296}, "ceg.api.CegApi": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 57}, "ceg.api.CegApi.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 8}, "ceg.api.CegApi.get": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 55}, "ceg.api.CegApi.post": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 72, "bases": 0, "doc": 69}, "ceg.api.CegApi.patch": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 76}, "ceg.api.CegApi.delete": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 36}, "ceg.api.CegApi.list": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 33}, "ceg.api.CegApi.list_other": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 51}, "ceg.api.CegApi.backup": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 29}, "ceg.arg_parser": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ceg.arg_parser.ArgumentParser": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 28}, "ceg.arg_parser.ArgumentParser.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 10}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 64}, "ceg.ceg": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ceg.ceg.Ceg": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 234}, "ceg.ceg.Ceg.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 161, "bases": 0, "doc": 7}, "ceg.ceg.Ceg.list": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 77}, "ceg.ceg.Ceg.get": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 43}, "ceg.ceg.Ceg.post": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 55}, "ceg.ceg.Ceg.patch": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "ceg.ceg.Ceg.delete": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "ceg.ceg.Ceg.backup": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 11}, "ceg.ceg.Ceg.list_other": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 65}, "ceg.ceg.Ceg.perform_operation": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 94}, "ceg.cli": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "ceg.cli.ceg_cli": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 26}, "ceg.exceptions": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "ceg.exceptions.CegExceptions": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ceg.exceptions.CegExceptions.BadCredentials": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 13}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 18}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 32}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.InternalException": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.GenericReturnCodes": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 43}, "ceg.logger": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ceg.logger.Logger": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 68}, "ceg.logger.Logger.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 5}, "ceg.logger.Logger.info": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 44}, "ceg.logger.Logger.warning": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 46}, "ceg.logger.Logger.error": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 44}, "ceg.misc": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ceg.misc.UtilInfo": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 57}, "ceg.misc.Misc": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}}, "length": 52, "save": true}, "index": {"qualname": {"root": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 11, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 13}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.logger.Logger.info": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 5}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.warning": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger.error": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.__init__": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.post": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.patch": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.delete": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.backup": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list_other": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.cli": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1.4142135623730951}, "ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}, "ceg.misc": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 52, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 13}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"ceg.cli": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 10}}, "r": {"docs": {}, "df": 0, "g": {"docs": {"ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 4, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.logger.Logger.info": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.4142135623730951}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 15}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger.error": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.warning": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {"ceg.misc": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"2": {"0": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"9": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}}, "df": 6}, "docs": {}, "df": 0}, "docs": {"ceg.api.CegApi.__init__": {"tf": 3.4641016151377544}, "ceg.api.CegApi.get": {"tf": 4.69041575982343}, "ceg.api.CegApi.post": {"tf": 7.681145747868608}, "ceg.api.CegApi.patch": {"tf": 7.280109889280518}, "ceg.api.CegApi.delete": {"tf": 4.242640687119285}, "ceg.api.CegApi.list": {"tf": 5.291502622129181}, "ceg.api.CegApi.list_other": {"tf": 6}, "ceg.api.CegApi.backup": {"tf": 3.4641016151377544}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 2}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 4}, "ceg.ceg.Ceg.__init__": {"tf": 11.180339887498949}, "ceg.ceg.Ceg.list": {"tf": 9.591663046625438}, "ceg.ceg.Ceg.get": {"tf": 4.242640687119285}, "ceg.ceg.Ceg.post": {"tf": 4.795831523312719}, "ceg.ceg.Ceg.patch": {"tf": 3.4641016151377544}, "ceg.ceg.Ceg.delete": {"tf": 3.4641016151377544}, "ceg.ceg.Ceg.backup": {"tf": 3.4641016151377544}, "ceg.ceg.Ceg.list_other": {"tf": 5.291502622129181}, "ceg.ceg.Ceg.perform_operation": {"tf": 3.4641016151377544}, "ceg.cli.ceg_cli": {"tf": 3}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 3.4641016151377544}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 4.47213595499958}, "ceg.logger.Logger.__init__": {"tf": 8.06225774829855}, "ceg.logger.Logger.info": {"tf": 7.3484692283495345}, "ceg.logger.Logger.warning": {"tf": 7.3484692283495345}, "ceg.logger.Logger.error": {"tf": 7.3484692283495345}}, "df": 30, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 19}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1.7320508075688772}, "ceg.api.CegApi.patch": {"tf": 2}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1.7320508075688772}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 2.449489742783178}, "ceg.ceg.Ceg.list": {"tf": 2.23606797749979}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 22}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1.4142135623730951}}, "df": 2}, "d": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 2}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.__init__": {"tf": 1.7320508075688772}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 8}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 3}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 9}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}}}, "bases": {"root": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 6}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 6}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}, "doc": {"root": {"1": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}, "3": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "7": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "docs": {"ceg": {"tf": 8.602325267042627}, "ceg.api": {"tf": 9.273618495495704}, "ceg.api.CegApi": {"tf": 4.123105625617661}, "ceg.api.CegApi.__init__": {"tf": 1.4142135623730951}, "ceg.api.CegApi.get": {"tf": 5.0990195135927845}, "ceg.api.CegApi.post": {"tf": 5.744562646538029}, "ceg.api.CegApi.patch": {"tf": 5.744562646538029}, "ceg.api.CegApi.delete": {"tf": 3.872983346207417}, "ceg.api.CegApi.list": {"tf": 3.4641016151377544}, "ceg.api.CegApi.list_other": {"tf": 4.795831523312719}, "ceg.api.CegApi.backup": {"tf": 3.4641016151377544}, "ceg.arg_parser": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser": {"tf": 2.449489742783178}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 3.872983346207417}, "ceg.ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 9.055385138137417}, "ceg.ceg.Ceg.__init__": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 5.656854249492381}, "ceg.ceg.Ceg.get": {"tf": 3.872983346207417}, "ceg.ceg.Ceg.post": {"tf": 5.0990195135927845}, "ceg.ceg.Ceg.patch": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.delete": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.backup": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list_other": {"tf": 5.0990195135927845}, "ceg.ceg.Ceg.perform_operation": {"tf": 5.916079783099616}, "ceg.cli": {"tf": 1.4142135623730951}, "ceg.cli.ceg_cli": {"tf": 2.449489742783178}, "ceg.exceptions": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 2.449489742783178}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.GenericReturnCodes": {"tf": 4.58257569495584}, "ceg.logger": {"tf": 1.4142135623730951}, "ceg.logger.Logger": {"tf": 3}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 3.1622776601683795}, "ceg.logger.Logger.warning": {"tf": 3.1622776601683795}, "ceg.logger.Logger.error": {"tf": 3.1622776601683795}, "ceg.misc": {"tf": 1.4142135623730951}, "ceg.misc.UtilInfo": {"tf": 5.196152422706632}, "ceg.misc.Misc": {"tf": 3}}, "df": 52, "i": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 3, "n": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 7, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.info": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 2}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 4}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 2}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}, "ceg.misc.UtilInfo": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.23606797749979}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 10, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 2}}, "df": 2, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}, "f": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}}, "df": 3}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "s": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 5}}}, "c": {"docs": {"ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 2.6457513110645907}, "ceg.api": {"tf": 2}, "ceg.api.CegApi": {"tf": 1.7320508075688772}, "ceg.arg_parser": {"tf": 1}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 2}}}}}}}}, "/": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"3": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.23606797749979}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 11}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1.4142135623730951}}, "df": 2, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "n": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 2.23606797749979}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 6, "d": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}, "s": {"docs": {"ceg.ceg.Ceg.post": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}}, "df": 6}}}, "i": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.cli": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 5}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api": {"tf": 2.8284271247461903}}, "df": 1}}}, "a": {"docs": {"ceg": {"tf": 2}, "ceg.api": {"tf": 2.6457513110645907}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.6457513110645907}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.7320508075688772}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 14, "s": {"docs": {"ceg": {"tf": 2.449489742783178}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 7}}}}}}}}}, "n": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 6, "d": {"docs": {"ceg": {"tf": 2}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 11}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 4}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 17}, "s": {"docs": {}, "df": 0, "o": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 4}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}}, "df": 3}, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 11, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.7320508075688772}}, "df": 12}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1.7320508075688772}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ceg.misc.UtilInfo": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"5": {"docs": {}, "df": 0, "a": {"3": {"1": {"5": {"docs": {}, "df": 0, "d": {"6": {"1": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"9": {"4": {"3": {"8": {"docs": {}, "df": 0, "b": {"1": {"8": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 8, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 2}}, "df": 5, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.delete": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.api.CegApi.backup": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 12}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 3, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 7}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ceg": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 6}}}}}, "t": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {"ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 3, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3, "s": {"docs": {"ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.logger": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 5}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 3.605551275463989}, "ceg.api.CegApi.get": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 2.23606797749979}, "ceg.api.CegApi.patch": {"tf": 2.449489742783178}, "ceg.api.CegApi.delete": {"tf": 1.7320508075688772}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.449489742783178}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 13, "s": {"docs": {"ceg": {"tf": 2.6457513110645907}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 14}, "i": {"docs": {}, "df": 0, "d": {"1": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}, "2": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}, "docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {"ceg.api": {"tf": 2.449489742783178}}, "df": 1}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}, "t": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}, "y": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.7320508075688772}}, "df": 2, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"3": {"docs": {"ceg": {"tf": 1.7320508075688772}}, "df": 1}, "docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ceg": {"tf": 1.7320508075688772}}, "df": 1}}, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 2.449489742783178}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 2}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "y": {"docs": {"ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 4, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 5}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 2.23606797749979}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 3}}}, "g": {"docs": {"ceg.logger.Logger": {"tf": 2}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.7320508075688772}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}, "d": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger": {"tf": 1.4142135623730951}}, "df": 1}}}}, "s": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}}, "df": 3}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 2.23606797749979}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "s": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 3}, "r": {"docs": {"ceg.api": {"tf": 2}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 2}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 6, "s": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 3}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 10}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.warning": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 5}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.4142135623730951}}, "df": 3}}}}, "n": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 5}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 2.23606797749979}, "ceg.api": {"tf": 3.1622776601683795}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 16, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1.7320508075688772}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"1": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}, "2": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 5}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {"ceg.misc": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}, "ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1.4142135623730951}, "ceg.misc.Misc": {"tf": 1}}, "df": 21, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 4, "s": {"docs": {"ceg": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}}}}}}}, "n": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 8, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 3, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"ceg": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1.7320508075688772}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.cli": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 7}}, "y": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger.error": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {"ceg.misc": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"ceg.api.CegApi.backup": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 2, "n": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api": {"tf": 2}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.misc.UtilInfo": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.post": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1, "a": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 4}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 3}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1.4142135623730951}}, "df": 2, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}, "y": {"docs": {"ceg.api": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "a": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg": {"tf": 2}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg.logger.Logger.warning": {"tf": 1}}, "df": 1}}}, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 2}, "ceg.api.CegApi": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 2.449489742783178}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 2}, "ceg.ceg.Ceg.perform_operation": {"tf": 2}, "ceg.cli.ceg_cli": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger.Logger": {"tf": 2.23606797749979}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 2.23606797749979}, "ceg.misc.Misc": {"tf": 1}}, "df": 26, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "m": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 6}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}}, "o": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}, "o": {"docs": {"ceg": {"tf": 2.23606797749979}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.23606797749979}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 17, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"ceg": {"tf": 2.449489742783178}, "ceg.api": {"tf": 1}}, "df": 2, "r": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "t": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 6, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}}, "df": 2}}, "w": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1.4142135623730951}}, "df": 4, "d": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}, "s": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}, "r": {"docs": {"ceg.logger.Logger": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.4142135623730951}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}, "l": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"ceg": {"fullname": "ceg", "modulename": "ceg", "kind": "module", "doc": "

Introduction

\n\n

Ceg (as in create gist and pronounced Keg) is a command-line utility as well as a library for \ninteracting with github gists.it uses github's official api for performing all operations.it can:

\n\n
    \n
  • Create gists.
  • \n
  • Modify existing gists.
  • \n
  • Download gists.
  • \n
  • List public/private(secret) gists for authenticated users as well as list public gists for unauthenticated users.
  • \n
  • Delete a gist.
  • \n
  • Create local backup of all the gists.
  • \n
\n\n

Installation

\n\n

There are multiple ways to install ceg,the simplest one being installing from PYPI:

\n\n
# py instead of python3 on windows\npython3 -m pip install ceg\n
\n\n

You can also install it manually.for that you need to have poetry installed and be on a system with minimal python version being 3.7.after installing poetry,you can just \ndo poetry build and pip install from dist/ceg*.whl or whatever you prefer.please be mindful that installing poetry\nfrom pip is not recommended.

\n\n
# you can also use install/uninstall scripts after cloning the repo, if on *nix.\ncurl -sSL https://install.python-poetry.org | python3 - \ngit clone https://github.com/justaus3r/ceg.git \ncd ceg \npoetry build\n
\n\n

Now wat?

\n\n

After installing ceg you can either do ceg --help in your terminal, check out projects README or refer to api documentation.

\n\n

Note:\nPlease only refer to submodule named api as other files contain reference to main implementation of ceg and such\nmay contain ambiguous documentation which may or maynot be clear unless codebase is understood.

\n"}, "ceg.api": {"fullname": "ceg.api", "modulename": "ceg.api", "kind": "module", "doc": "

Description

\n\n

This is the main api of ceg.it internally uses the main implementation of ceg.interface provided to a developer\nis a single class named CegApi, which contains all the functionality of ceg.it can be instantiated by providing\ngithub secret key, which can be obtained from developers github >> Settings >> Developer settings >> Personal access tokens.

\n\n

Typical usage example

\n\n

Object instantiation:

\n\n
cgi = CegApi(secret_key=\"abcd\")\n# note that for using an instance for unauthenticated user, set secret_key to `None`\n
\n\n

For creating a gist:

\n\n
gist_url = cgi.post(\"file1.py\", \"file2.py\", \"dirty_secrets.verysecurefile\", is_private=False, gist_description=\"bla\")\n# note that if a file provided as argument does not exist,ceg will automatically create it and open\n# it in your default file editor.\n
\n\n

For modifying an existing gist:

\n\n
response_str = cgi.patch(\"file2.py\", gist_id=\"abc\")\n# you can optionally also modify the gist description using 'gist_description=\"whatever\"'\n
\n\n

For listing gists for authenticated user:

\n\n
user_gist_list = cgi.list()\n
\n\n

For list gist for unauthenticated user:

\n\n
user_gist_list = cgi.list_other(\"username\")\n
\n\n

For downloading a gist:

\n\n
response_str = cgi.get(\"gistid1\", \"gistid2\")\n# or for unauthenticated users\nresponse_str = ceg.get(\"gistid1\", \"gistid2\", username=\"myusername\")\n# note that gist-ids are typically hashes like 'aa5a315d61ae9438b18d'\n
\n\n

For creating a backup:

\n\n
response_str = cgi.backup()\n# or for unauthenticated users\nresponse_str = cgi.backup(username=\"myusername\")\n
\n\n

For deleting a gist:

\n\n
cgi.delete(\"gistid\")\n# doesn't support batch operation for now \n
\n\n

Api Reference

\n"}, "ceg.api.CegApi": {"fullname": "ceg.api.CegApi", "modulename": "ceg.api", "qualname": "CegApi", "kind": "class", "doc": "

Main interface for api.

\n\n

Provides the main interface open for api.contains all\nthe methods needed to perform all basic operations on gists.

\n\n
Attributes:
\n\n
    \n
  • ceg_instance: its an instance of Ceg class.which contains the main\nimplementation of ceg utility.
  • \n
\n"}, "ceg.api.CegApi.__init__": {"fullname": "ceg.api.CegApi.__init__", "modulename": "ceg.api", "qualname": "CegApi.__init__", "kind": "function", "doc": "

Inits CegApi with github secret key

\n", "signature": "(secret_key: str)"}, "ceg.api.CegApi.get": {"fullname": "ceg.api.CegApi.get", "modulename": "ceg.api", "qualname": "CegApi.get", "kind": "function", "doc": "

Downloads a gist.

\n\n

Receives arbitrary amount gist-ids and downloads them.

\n\n
Arguments:
\n\n
    \n
  • *args: Variable lenght argument list containing gist-ids.
  • \n
\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(self, *args: str, username: Optional[str] = None) -> str:", "funcdef": "def"}, "ceg.api.CegApi.post": {"fullname": "ceg.api.CegApi.post", "modulename": "ceg.api", "qualname": "CegApi.post", "kind": "function", "doc": "

Create arbitrary number of gists.

\n\n
Arguments:
\n\n
    \n
  • *args: variable lenght arguments list containing gist-ids.
  • \n
  • is_private: indicates whether to make gist private.
  • \n
  • gist_description: Description for the gist.
  • \n
\n\n
Returns:
\n\n
\n

Returns HTML url for newly created gist.

\n
\n", "signature": "(\tself,\t*args: str,\tis_private: bool = False,\tgist_description: Optional[str] = None) -> str:", "funcdef": "def"}, "ceg.api.CegApi.patch": {"fullname": "ceg.api.CegApi.patch", "modulename": "ceg.api", "qualname": "CegApi.patch", "kind": "function", "doc": "

Modify arbitrary number of existing gists.

\n\n
Arguments:
\n\n
    \n
  • *args: variable lenght arguments list containing gist-names.
  • \n
  • gist_id: gist-id for the gist,that is to be modified.
  • \n
  • gist_description: (Optional) Description for the gist.
  • \n
\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(\tself,\t*args: str,\tgist_id: str,\tgist_description: Optional[str] = None) -> str:", "funcdef": "def"}, "ceg.api.CegApi.delete": {"fullname": "ceg.api.CegApi.delete", "modulename": "ceg.api", "qualname": "CegApi.delete", "kind": "function", "doc": "

Delete an existing gist.

\n\n

Args:\ngist_id = arbitrary amount of gist-ids.

\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(self, *args) -> str:", "funcdef": "def"}, "ceg.api.CegApi.list": {"fullname": "ceg.api.CegApi.list", "modulename": "ceg.api", "qualname": "CegApi.list", "kind": "function", "doc": "

Return gist data for authenticated user.

\n\n
Returns:
\n\n
\n

Returns a sequence containing list of all the gists of user with some info.

\n
\n", "signature": "(self) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.api.CegApi.list_other": {"fullname": "ceg.api.CegApi.list_other", "modulename": "ceg.api", "qualname": "CegApi.list_other", "kind": "function", "doc": "

Return gist data for unauthenticated user.

\n\n
Arguments:
\n\n
    \n
  • user_name: username for the user.
  • \n
\n\n
Returns:
\n\n
\n

Returns a sequence containing list of all the gists of user with some info.

\n
\n", "signature": "(self, user_name: str) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.api.CegApi.backup": {"fullname": "ceg.api.CegApi.backup", "modulename": "ceg.api", "qualname": "CegApi.backup", "kind": "function", "doc": "

Create backup of all gists on local media.

\n\n
Returns:
\n\n
\n

Returns HTTP call response status in string format.

\n
\n", "signature": "(self, username: Optional[str] = None) -> str:", "funcdef": "def"}, "ceg.arg_parser": {"fullname": "ceg.arg_parser", "modulename": "ceg.arg_parser", "kind": "module", "doc": "

Argument parser for ceg

\n"}, "ceg.arg_parser.ArgumentParser": {"fullname": "ceg.arg_parser.ArgumentParser", "modulename": "ceg.arg_parser", "qualname": "ArgumentParser", "kind": "class", "doc": "

Reccord arguments from cli.

\n\n

Argument parser that inherits from argparse.ArgumentParser\nclass and is used for reccording all the arguments from cli.

\n", "bases": "argparse.ArgumentParser"}, "ceg.arg_parser.ArgumentParser.__init__": {"fullname": "ceg.arg_parser.ArgumentParser.__init__", "modulename": "ceg.arg_parser", "qualname": "ArgumentParser.__init__", "kind": "function", "doc": "

Inits (Parent) ArgumentParser with program name and description

\n", "signature": "()"}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"fullname": "ceg.arg_parser.ArgumentParser.reccord_arguments", "modulename": "ceg.arg_parser", "qualname": "ArgumentParser.reccord_arguments", "kind": "function", "doc": "

Record (possibly) conflicting arguments from commandline.

\n\n

arguments that conflict with each other,i.e: not meant to be used\nsimultaneously will be reccorded with add_mutually_exclusive_group()\nmethod while normal arguments will be reccorded with add_argument()\nmethod.

\n\n
Returns:
\n\n
\n

Returns the argparse.Namespace object containing all the arguments.

\n
\n", "signature": "(self) -> argparse.Namespace:", "funcdef": "def"}, "ceg.ceg": {"fullname": "ceg.ceg", "modulename": "ceg.ceg", "kind": "module", "doc": "

Main implementation of ceg

\n"}, "ceg.ceg.Ceg": {"fullname": "ceg.ceg.Ceg", "modulename": "ceg.ceg", "qualname": "Ceg", "kind": "class", "doc": "

Main implementation of ceg.

\n\n

The Ceg class actually contains the main implementation\nof the utility.

\n\n
Attributes:
\n\n
    \n
  • http_operation: A Callable that actually performs the http calls.
  • \n
  • arg_val: A string that is used as argument value as well as a switch for operation resolution.
  • \n
  • is_recursive_op: A boolean indicating if the operation is recursive.
  • \n
  • header: A Dict containing the HTTP header.
  • \n
  • end_point: Endpoint for api calls.
  • \n
  • payload: payload containing data for post requests.
  • \n
  • to_stdout: boolean indicating whether to send data to stdout.
  • \n
  • gist_no_public: boolean indicating if a gist is private.
  • \n
  • is_other: boolean indicating if to list gists for unauth user.
  • \n
  • gist_description: String containing gist description which can be used in patch(),post().
  • \n
  • gist_id: String containing gist-id.
  • \n
  • response_status_str: Contains HTTP call response status in string format.
  • \n
  • logger: Logger object.
  • \n
  • ceg_get_namespace: a namespace containing states and responses relating to Ceg.get()
  • \n
\n"}, "ceg.ceg.Ceg.__init__": {"fullname": "ceg.ceg.Ceg.__init__", "modulename": "ceg.ceg", "qualname": "Ceg.__init__", "kind": "function", "doc": "

Inits Ceg with appropriate attributes

\n", "signature": "(\toperation: str,\targ_value: Union[str, Tuple[str, ...], NoneType],\tis_recursive_operation: bool,\tis_other_user: bool,\tsecret_key: Optional[str],\tdo_logging: bool,\tgist_no_public: bool,\tgist_desc: Optional[str],\tgist_id: Optional[str])"}, "ceg.ceg.Ceg.list": {"fullname": "ceg.ceg.Ceg.list", "modulename": "ceg.ceg", "qualname": "Ceg.list", "kind": "function", "doc": "

lists public/private gists for authenticated user.

\n\n

Performs GET operation on endpoint and retrieves all the public/private gists and propagates the formatted\nresponse to standard stream.

\n\n
Arguments:
\n\n
    \n
  • end_point: optional endpoint string.
  • \n
  • header: optional header for the request.
  • \n
\n\n
Returns:
\n\n
\n

(Optionally) returns a list containing all gists.

\n
\n", "signature": "(\tself,\tend_point: Optional[str] = None,\theader: Optional[Dict[str, str]] = None,\tno_header: bool = False) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.ceg.Ceg.get": {"fullname": "ceg.ceg.Ceg.get", "modulename": "ceg.ceg", "qualname": "Ceg.get", "kind": "function", "doc": "

Download gists using gist-ids as argument.

\n\n

This method downloads all the gists given on cli. backup() also uses this method internally.

\n\n
Arguments:
\n\n
    \n
  • **kwargs = Auxiliary arbitrary keyword arguments.
  • \n
\n", "signature": "(self, **kwargs) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.post": {"fullname": "ceg.ceg.Ceg.post", "modulename": "ceg.ceg", "qualname": "Ceg.post", "kind": "function", "doc": "

Create gists.

\n\n

Creates arbitrary number of gists depending on files given on cli.

\n\n
Arguments:
\n\n
    \n
  • **kwargs: Auxiliary arbitrary keyword arguments.
  • \n
\n\n
Returns:
\n\n
\n

(Optionally) return html url of the newly created gist

\n
\n", "signature": "(self, **kwargs) -> Optional[str]:", "funcdef": "def"}, "ceg.ceg.Ceg.patch": {"fullname": "ceg.ceg.Ceg.patch", "modulename": "ceg.ceg", "qualname": "Ceg.patch", "kind": "function", "doc": "

Modify an existing gist.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.delete": {"fullname": "ceg.ceg.Ceg.delete", "modulename": "ceg.ceg", "qualname": "Ceg.delete", "kind": "function", "doc": "

Delete an existing gist.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.backup": {"fullname": "ceg.ceg.Ceg.backup", "modulename": "ceg.ceg", "qualname": "Ceg.backup", "kind": "function", "doc": "

Create a local backup of all the gists.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "ceg.ceg.Ceg.list_other": {"fullname": "ceg.ceg.Ceg.list_other", "modulename": "ceg.ceg", "qualname": "Ceg.list_other", "kind": "function", "doc": "

Get gists for other users

\n\n

This method simply mutates the endpoint and nulls the auth headers and simply calls the list() method.

\n\n
Arguments:
\n\n
    \n
  • user_name: github username for the other user.
  • \n
\n\n
Returns:
\n\n
\n

(Optionally) returns a list containing all gists.

\n
\n", "signature": "(self) -> Optional[List[Dict[str, str]]]:", "funcdef": "def"}, "ceg.ceg.Ceg.perform_operation": {"fullname": "ceg.ceg.Ceg.perform_operation", "modulename": "ceg.ceg", "qualname": "Ceg.perform_operation", "kind": "function", "doc": "

Wrapper for all the methods

\n\n

Performs all the http requests,sorts out data and\ndoes all the pretty printing using rich.

\n\n
Returns:
\n\n
\n

Return code used on exit,indicating success or failure.

\n
\n\n
Raises:
\n\n
    \n
  • ConnectionError: raised due to connection error while sending the http request.
  • \n
  • BadCredentials: raised due to bad github secret key.
  • \n
  • ResourceNotFound: raised due to inavailability of inquired resource.
  • \n
\n", "signature": "(self) -> int:", "funcdef": "def"}, "ceg.cli": {"fullname": "ceg.cli", "modulename": "ceg.cli", "kind": "module", "doc": "

Main cli

\n"}, "ceg.cli.ceg_cli": {"fullname": "ceg.cli.ceg_cli", "modulename": "ceg.cli", "qualname": "ceg_cli", "kind": "function", "doc": "

First subroutine to run on execution of utility.

\n\n

The main function which reccords the arguments\nand also partially handles them.

\n", "signature": "() -> None:", "funcdef": "def"}, "ceg.exceptions": {"fullname": "ceg.exceptions", "modulename": "ceg.exceptions", "kind": "module", "doc": "

Cegs exceptions

\n"}, "ceg.exceptions.CegExceptions": {"fullname": "ceg.exceptions.CegExceptions", "modulename": "ceg.exceptions", "qualname": "CegExceptions", "kind": "class", "doc": "

All of Cegs exceptions.

\n"}, "ceg.exceptions.CegExceptions.BadCredentials": {"fullname": "ceg.exceptions.CegExceptions.BadCredentials", "modulename": "ceg.exceptions", "qualname": "CegExceptions.BadCredentials", "kind": "class", "doc": "

raised when a bad response like bad auth is risen.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"fullname": "ceg.exceptions.CegExceptions.BadCredentials.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.BadCredentials.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Bad Credentials!')"}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"fullname": "ceg.exceptions.CegExceptions.ResourceNotFound", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ResourceNotFound", "kind": "class", "doc": "

raised when inquired resource is not found.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"fullname": "ceg.exceptions.CegExceptions.ResourceNotFound.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ResourceNotFound.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Inquired Resource not found!')"}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"fullname": "ceg.exceptions.CegExceptions.ForbiddenResource", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ForbiddenResource", "kind": "class", "doc": "

raised when forbidden resource is inquired.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"fullname": "ceg.exceptions.CegExceptions.ForbiddenResource.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.ForbiddenResource.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Forbidden Resource!')"}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"fullname": "ceg.exceptions.CegExceptions.UnprocessableRequest", "modulename": "ceg.exceptions", "qualname": "CegExceptions.UnprocessableRequest", "kind": "class", "doc": "

raised when a syntatically correct (tho possibly semantically wrong) request is unprocessable by the server.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"fullname": "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.UnprocessableRequest.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Unprocessable Request!')"}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"fullname": "ceg.exceptions.CegExceptions.InsufficientSubArguments", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InsufficientSubArguments", "kind": "class", "doc": "

raised when sub-arguments are missing from argument list.

\n\n

Due to nature of handling of arguments from cli,missing sub-arguments\nare not catched by argparse.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"fullname": "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InsufficientSubArguments.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str)"}, "ceg.exceptions.CegExceptions.InternalException": {"fullname": "ceg.exceptions.CegExceptions.InternalException", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InternalException", "kind": "class", "doc": "

raised due to internal errors.

\n", "bases": "builtins.Exception"}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"fullname": "ceg.exceptions.CegExceptions.InternalException.__init__", "modulename": "ceg.exceptions", "qualname": "CegExceptions.InternalException.__init__", "kind": "function", "doc": "

\n", "signature": "(msg: str = 'Unprocessable Resource')"}, "ceg.exceptions.GenericReturnCodes": {"fullname": "ceg.exceptions.GenericReturnCodes", "modulename": "ceg.exceptions", "qualname": "GenericReturnCodes", "kind": "class", "doc": "

Generic Return Codes

\n\n

Contains the commandline return codes.

\n\n
Attributes:
\n\n
    \n
  • SUCCESS: return code for successfull operation.
  • \n
  • FAILURE: return code incase an error occurs.
  • \n
\n"}, "ceg.logger": {"fullname": "ceg.logger", "modulename": "ceg.logger", "kind": "module", "doc": "

Enhanced Logger for Ceg

\n"}, "ceg.logger.Logger": {"fullname": "ceg.logger.Logger", "modulename": "ceg.logger", "qualname": "Logger", "kind": "class", "doc": "

Logger object responsible for logging all the events.

\n\n

Inherits from Logger class of stdlib logging library\nand implements the log propagation validation,i.e whether\nlogs should be logged to the stdout/stderr.

\n\n

Attributes:\nsend_log = boolean indicating whether to log or not\nloglevel = indicates the effective log level.\ndateformat = string represrnting datetime format.\nhandler = Handler used by the logger.

\n", "bases": "logging.Logger"}, "ceg.logger.Logger.__init__": {"fullname": "ceg.logger.Logger.__init__", "modulename": "ceg.logger", "qualname": "Logger.__init__", "kind": "function", "doc": "

Inits the Logger

\n", "signature": "(\tsend_log: bool = True,\tloglevel: Union[int, str] = 20,\tdateformat: str = '[%X]')"}, "ceg.logger.Logger.info": {"fullname": "ceg.logger.Logger.info", "modulename": "ceg.logger", "qualname": "Logger.info", "kind": "function", "doc": "

Log 'msg % args' with severity 'INFO'.

\n\n

To pass exception information, use the keyword argument exc_info with\na true value, e.g.

\n\n

logger.info(\"Houston, we have a %s\", \"interesting problem\", exc_info=1)

\n", "signature": "(self, msg: str, send_log: bool = True, *args: Any, **kwargs: Any) -> None:", "funcdef": "def"}, "ceg.logger.Logger.warning": {"fullname": "ceg.logger.Logger.warning", "modulename": "ceg.logger", "qualname": "Logger.warning", "kind": "function", "doc": "

Log 'msg % args' with severity 'WARNING'.

\n\n

To pass exception information, use the keyword argument exc_info with\na true value, e.g.

\n\n

logger.warning(\"Houston, we have a %s\", \"bit of a problem\", exc_info=1)

\n", "signature": "(self, msg: str, send_log: bool = True, *args: Any, **kwargs: Any) -> None:", "funcdef": "def"}, "ceg.logger.Logger.error": {"fullname": "ceg.logger.Logger.error", "modulename": "ceg.logger", "qualname": "Logger.error", "kind": "function", "doc": "

Log 'msg % args' with severity 'ERROR'.

\n\n

To pass exception information, use the keyword argument exc_info with\na true value, e.g.

\n\n

logger.error(\"Houston, we have a %s\", \"major problem\", exc_info=1)

\n", "signature": "(self, msg: str, send_log: bool = True, *args: Any, **kwargs: Any) -> None:", "funcdef": "def"}, "ceg.misc": {"fullname": "ceg.misc", "modulename": "ceg.misc", "kind": "module", "doc": "

Misc stuff dat i couldn't figure out where to put

\n"}, "ceg.misc.UtilInfo": {"fullname": "ceg.misc.UtilInfo", "modulename": "ceg.misc", "qualname": "UtilInfo", "kind": "class", "doc": "

Metainfo about utility.

\n\n

Class containing all the meta info about\nthe utility.

\n\n
Attributes:
\n\n
    \n
  • UTIL_NAME: The utility name.
  • \n
  • DESCRIPTION: Short description of the utility.
  • \n
  • VERSION: Semantic verson of the utility.
  • \n
\n"}, "ceg.misc.Misc": {"fullname": "ceg.misc.Misc", "modulename": "ceg.misc", "qualname": "Misc", "kind": "class", "doc": "

Misc stuff.

\n\n

Contains all the miscellaneous vars.

\n\n

Attributes:\nhttp_intrinsics: List containing names of all http methods.\nsecret_key: Gitub Secret key extracted from env variable.

\n"}}, "docInfo": {"ceg": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 315}, "ceg.api": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 335}, "ceg.api.CegApi": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 57}, "ceg.api.CegApi.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 8}, "ceg.api.CegApi.get": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 55}, "ceg.api.CegApi.post": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 72, "bases": 0, "doc": 69}, "ceg.api.CegApi.patch": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 76}, "ceg.api.CegApi.delete": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 36}, "ceg.api.CegApi.list": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 33}, "ceg.api.CegApi.list_other": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 51}, "ceg.api.CegApi.backup": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 29}, "ceg.arg_parser": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ceg.arg_parser.ArgumentParser": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 28}, "ceg.arg_parser.ArgumentParser.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 10}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 19, "bases": 0, "doc": 64}, "ceg.ceg": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ceg.ceg.Ceg": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 234}, "ceg.ceg.Ceg.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 161, "bases": 0, "doc": 7}, "ceg.ceg.Ceg.list": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 77}, "ceg.ceg.Ceg.get": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 43}, "ceg.ceg.Ceg.post": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 55}, "ceg.ceg.Ceg.patch": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "ceg.ceg.Ceg.delete": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "ceg.ceg.Ceg.backup": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 11}, "ceg.ceg.Ceg.list_other": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 65}, "ceg.ceg.Ceg.perform_operation": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 94}, "ceg.cli": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "ceg.cli.ceg_cli": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 26}, "ceg.exceptions": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "ceg.exceptions.CegExceptions": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "ceg.exceptions.CegExceptions.BadCredentials": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 13}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 10}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 18}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 32}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "ceg.exceptions.CegExceptions.InternalException": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "ceg.exceptions.GenericReturnCodes": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 43}, "ceg.logger": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "ceg.logger.Logger": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 68}, "ceg.logger.Logger.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 5}, "ceg.logger.Logger.info": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 44}, "ceg.logger.Logger.warning": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 46}, "ceg.logger.Logger.error": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 44}, "ceg.misc": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "ceg.misc.UtilInfo": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 57}, "ceg.misc.Misc": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}}, "length": 52, "save": true}, "index": {"qualname": {"root": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 11, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 13}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.logger.Logger.info": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 5}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.warning": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger.error": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.__init__": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.post": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.patch": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.delete": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.backup": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list_other": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.cli": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1.4142135623730951}, "ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}, "ceg.misc": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 52, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 13}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"ceg.cli": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 10}}, "r": {"docs": {}, "df": 0, "g": {"docs": {"ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 4, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 10}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.logger.Logger.info": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.4142135623730951}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 15}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger.error": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.warning": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {"ceg.misc": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"2": {"0": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"9": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}}, "df": 6}, "docs": {}, "df": 0}, "docs": {"ceg.api.CegApi.__init__": {"tf": 3.4641016151377544}, "ceg.api.CegApi.get": {"tf": 6.4031242374328485}, "ceg.api.CegApi.post": {"tf": 7.681145747868608}, "ceg.api.CegApi.patch": {"tf": 7.280109889280518}, "ceg.api.CegApi.delete": {"tf": 4.242640687119285}, "ceg.api.CegApi.list": {"tf": 5.291502622129181}, "ceg.api.CegApi.list_other": {"tf": 6}, "ceg.api.CegApi.backup": {"tf": 5.5677643628300215}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 2}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 4}, "ceg.ceg.Ceg.__init__": {"tf": 11.180339887498949}, "ceg.ceg.Ceg.list": {"tf": 9.591663046625438}, "ceg.ceg.Ceg.get": {"tf": 4.242640687119285}, "ceg.ceg.Ceg.post": {"tf": 4.795831523312719}, "ceg.ceg.Ceg.patch": {"tf": 3.4641016151377544}, "ceg.ceg.Ceg.delete": {"tf": 3.4641016151377544}, "ceg.ceg.Ceg.backup": {"tf": 3.4641016151377544}, "ceg.ceg.Ceg.list_other": {"tf": 5.291502622129181}, "ceg.ceg.Ceg.perform_operation": {"tf": 3.4641016151377544}, "ceg.cli.ceg_cli": {"tf": 3}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 4.47213595499958}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 3.4641016151377544}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 4.47213595499958}, "ceg.logger.Logger.__init__": {"tf": 8.06225774829855}, "ceg.logger.Logger.info": {"tf": 7.3484692283495345}, "ceg.logger.Logger.warning": {"tf": 7.3484692283495345}, "ceg.logger.Logger.error": {"tf": 7.3484692283495345}}, "df": 30, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 19}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 1.7320508075688772}, "ceg.api.CegApi.patch": {"tf": 2}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1.7320508075688772}, "ceg.api.CegApi.backup": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.__init__": {"tf": 2.449489742783178}, "ceg.ceg.Ceg.list": {"tf": 2.23606797749979}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 22}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 10}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 13, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1.4142135623730951}}, "df": 2}, "d": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 2}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.__init__": {"tf": 1.7320508075688772}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}}, "df": 3}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 9}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"ceg.logger.Logger.__init__": {"tf": 1}}, "df": 1}}}, "bases": {"root": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 6}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 6}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}, "doc": {"root": {"1": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}, "3": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "7": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "docs": {"ceg": {"tf": 8.602325267042627}, "ceg.api": {"tf": 9.433981132056603}, "ceg.api.CegApi": {"tf": 4.123105625617661}, "ceg.api.CegApi.__init__": {"tf": 1.4142135623730951}, "ceg.api.CegApi.get": {"tf": 5.0990195135927845}, "ceg.api.CegApi.post": {"tf": 5.744562646538029}, "ceg.api.CegApi.patch": {"tf": 5.744562646538029}, "ceg.api.CegApi.delete": {"tf": 3.872983346207417}, "ceg.api.CegApi.list": {"tf": 3.4641016151377544}, "ceg.api.CegApi.list_other": {"tf": 4.795831523312719}, "ceg.api.CegApi.backup": {"tf": 3.4641016151377544}, "ceg.arg_parser": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser": {"tf": 2.449489742783178}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 3.872983346207417}, "ceg.ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 9.055385138137417}, "ceg.ceg.Ceg.__init__": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 5.656854249492381}, "ceg.ceg.Ceg.get": {"tf": 3.872983346207417}, "ceg.ceg.Ceg.post": {"tf": 5.0990195135927845}, "ceg.ceg.Ceg.patch": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.delete": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.backup": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list_other": {"tf": 5.0990195135927845}, "ceg.ceg.Ceg.perform_operation": {"tf": 5.916079783099616}, "ceg.cli": {"tf": 1.4142135623730951}, "ceg.cli.ceg_cli": {"tf": 2.449489742783178}, "ceg.exceptions": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.BadCredentials.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ResourceNotFound.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.ForbiddenResource.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.UnprocessableRequest.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 2.449489742783178}, "ceg.exceptions.CegExceptions.InsufficientSubArguments.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InternalException.__init__": {"tf": 1.7320508075688772}, "ceg.exceptions.GenericReturnCodes": {"tf": 4.58257569495584}, "ceg.logger": {"tf": 1.4142135623730951}, "ceg.logger.Logger": {"tf": 3}, "ceg.logger.Logger.__init__": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 3.1622776601683795}, "ceg.logger.Logger.warning": {"tf": 3.1622776601683795}, "ceg.logger.Logger.error": {"tf": 3.1622776601683795}, "ceg.misc": {"tf": 1.4142135623730951}, "ceg.misc.UtilInfo": {"tf": 5.196152422706632}, "ceg.misc.Misc": {"tf": 3}}, "df": 52, "i": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 3, "n": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 7, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.info": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 2}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger.Logger.__init__": {"tf": 1}}, "df": 4}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 2}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}, "ceg.misc.UtilInfo": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.23606797749979}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 10, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 2}}, "df": 2, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}, "f": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}}, "df": 3}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 5}}}}}, "s": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 5}}}, "c": {"docs": {"ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 2.6457513110645907}, "ceg.api": {"tf": 2.23606797749979}, "ceg.api.CegApi": {"tf": 1.7320508075688772}, "ceg.arg_parser": {"tf": 1}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger": {"tf": 1}}, "df": 8, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 2}}}}}}}}, "/": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"3": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.23606797749979}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 11}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1.4142135623730951}}, "df": 2, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "n": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 2.23606797749979}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 6, "d": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}, "s": {"docs": {"ceg.ceg.Ceg.post": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}}, "df": 6}}}, "i": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.cli": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 5}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {"ceg.api": {"tf": 3}}, "df": 1}}}, "a": {"docs": {"ceg": {"tf": 2}, "ceg.api": {"tf": 2.6457513110645907}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.6457513110645907}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.7320508075688772}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 14, "s": {"docs": {"ceg": {"tf": 2.449489742783178}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 7}}}}}}}}}, "n": {"docs": {"ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 6, "d": {"docs": {"ceg": {"tf": 2}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 11}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 4}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 17}, "s": {"docs": {}, "df": 0, "o": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 4}}}}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}}, "df": 3}, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 11, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.7320508075688772}}, "df": 12}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 3}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1.7320508075688772}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ceg.misc.UtilInfo": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"5": {"docs": {}, "df": 0, "a": {"3": {"1": {"5": {"docs": {}, "df": 0, "d": {"6": {"1": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"9": {"4": {"3": {"8": {"docs": {}, "df": 0, "b": {"1": {"8": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "d": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 2.23606797749979}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 8, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 2}}, "df": 5, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.delete": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.api.CegApi.backup": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 12}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 3, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 7}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"ceg": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 6}}}}}, "t": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {"ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 3, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3, "s": {"docs": {"ceg.exceptions": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.logger": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}, "g": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 5}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 3.605551275463989}, "ceg.api.CegApi.get": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 2.23606797749979}, "ceg.api.CegApi.patch": {"tf": 2.449489742783178}, "ceg.api.CegApi.delete": {"tf": 1.7320508075688772}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.449489742783178}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 13, "s": {"docs": {"ceg": {"tf": 2.6457513110645907}, "ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 14}, "i": {"docs": {}, "df": 0, "d": {"1": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {"ceg.api": {"tf": 2.449489742783178}}, "df": 1}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}, "t": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}, "y": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.7320508075688772}}, "df": 2, "p": {"docs": {}, "df": 0, "i": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"3": {"docs": {"ceg": {"tf": 1.7320508075688772}}, "df": 1}, "docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"ceg": {"tf": 1.7320508075688772}}, "df": 1}}, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 2.449489742783178}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 2}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "y": {"docs": {"ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 4, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 5}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 2.23606797749979}, "ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 3}}}, "g": {"docs": {"ceg.logger.Logger": {"tf": 2}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.7320508075688772}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 7}, "d": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger": {"tf": 1.4142135623730951}}, "df": 1}}}}, "s": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}}, "df": 3}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 2.23606797749979}}, "df": 5}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "s": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 3}, "r": {"docs": {"ceg.api": {"tf": 2.23606797749979}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 2}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 6, "s": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 2}, "ceg.api.CegApi.list_other": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 3}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1.4142135623730951}, "ceg.logger.Logger.warning": {"tf": 1.4142135623730951}, "ceg.logger.Logger.error": {"tf": 1.4142135623730951}}, "df": 10}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.warning": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 5}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.4142135623730951}}, "df": 3}}}}, "n": {"docs": {"ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 5}, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 2.23606797749979}, "ceg.api": {"tf": 3.7416573867739413}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.arg_parser": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 16, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"ceg.exceptions.CegExceptions.ForbiddenResource": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1.7320508075688772}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}, "ceg.logger.Logger": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"1": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}, "2": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.__init__": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}}, "df": 1, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api": {"tf": 2.23606797749979}, "ceg.ceg.Ceg": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 7}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 5}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"ceg.ceg.Ceg.list": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 1, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {"ceg.misc": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi": {"tf": 1.4142135623730951}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.list": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.exceptions.CegExceptions": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}, "ceg.logger.Logger": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1.4142135623730951}, "ceg.misc.Misc": {"tf": 1}}, "df": 21, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 4, "s": {"docs": {"ceg": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {"ceg.api": {"tf": 1}, "ceg.api.CegApi": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 4}}}}}}}}}, "n": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 8, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 4, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"ceg.exceptions.GenericReturnCodes": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"ceg": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.patch": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1.7320508075688772}, "ceg.ceg": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.cli": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 7}}, "y": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.post": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"ceg.logger.Logger.error": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {"ceg.misc": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"ceg.api.CegApi": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"ceg.api.CegApi.backup": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "g": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"ceg.api.CegApi.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.get": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 2, "n": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.ceg.Ceg.delete": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.api": {"tf": 2}, "ceg.api.CegApi.post": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.misc.UtilInfo": {"tf": 1.4142135623730951}}, "df": 6}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.ceg.Ceg.post": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.misc": {"tf": 1}}, "df": 1, "a": {"docs": {"ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 4}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}}, "df": 3}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}, "ceg.exceptions.CegExceptions.BadCredentials": {"tf": 1.4142135623730951}}, "df": 2, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.perform_operation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1.4142135623730951}}, "df": 1}}}}, "y": {"docs": {"ceg.api": {"tf": 1}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "a": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"ceg.ceg.Ceg": {"tf": 2}, "ceg.logger.Logger": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"ceg.logger.Logger.warning": {"tf": 1}}, "df": 1}}}, "t": {"docs": {"ceg.api": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1.7320508075688772}, "ceg.api": {"tf": 2}, "ceg.api.CegApi": {"tf": 1.7320508075688772}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1.4142135623730951}, "ceg.api.CegApi.list": {"tf": 1}, "ceg.api.CegApi.list_other": {"tf": 1.4142135623730951}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg": {"tf": 2.449489742783178}, "ceg.ceg.Ceg.list": {"tf": 1.7320508075688772}, "ceg.ceg.Ceg.get": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}, "ceg.ceg.Ceg.backup": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 2}, "ceg.ceg.Ceg.perform_operation": {"tf": 2}, "ceg.cli.ceg_cli": {"tf": 1.4142135623730951}, "ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}, "ceg.exceptions.GenericReturnCodes": {"tf": 1}, "ceg.logger.Logger": {"tf": 2.23606797749979}, "ceg.logger.Logger.__init__": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 2.23606797749979}, "ceg.misc.Misc": {"tf": 1}}, "df": 26, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "m": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.cli.ceg_cli": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1.4142135623730951}, "ceg.api": {"tf": 1.7320508075688772}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 6}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}, "ceg.ceg.Ceg.get": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 3}}, "o": {"docs": {"ceg.exceptions.CegExceptions.UnprocessableRequest": {"tf": 1}}, "df": 1}}, "o": {"docs": {"ceg": {"tf": 2.23606797749979}, "ceg.api": {"tf": 1.4142135623730951}, "ceg.api.CegApi": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2.23606797749979}, "ceg.ceg.Ceg.list": {"tf": 1}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.7320508075688772}, "ceg.cli.ceg_cli": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.exceptions.CegExceptions.InternalException": {"tf": 1}, "ceg.logger.Logger": {"tf": 1.4142135623730951}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}, "ceg.misc": {"tf": 1}}, "df": 17, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"ceg": {"tf": 2.449489742783178}, "ceg.api": {"tf": 1}}, "df": 2, "r": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ceg.api.CegApi": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "t": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}, "ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.exceptions.CegExceptions.ResourceNotFound": {"tf": 1}, "ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}, "ceg.logger.Logger": {"tf": 1}}, "df": 6, "e": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1.7320508075688772}}, "df": 2}}, "w": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.list_other": {"tf": 1}, "ceg.arg_parser.ArgumentParser.__init__": {"tf": 1}, "ceg.ceg.Ceg.list_other": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1.4142135623730951}}, "df": 4, "d": {"docs": {"ceg": {"tf": 1}, "ceg.api": {"tf": 1}}, "df": 2}, "s": {"docs": {"ceg.api.CegApi.patch": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"ceg.arg_parser.ArgumentParser.reccord_arguments": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"ceg.cli.ceg_cli": {"tf": 1}}, "df": 1}, "r": {"docs": {"ceg.logger.Logger": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ceg.exceptions.CegExceptions.InsufficientSubArguments": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.api.CegApi.delete": {"tf": 1}, "ceg.api.CegApi.backup": {"tf": 1}, "ceg.ceg.Ceg": {"tf": 2}, "ceg.ceg.Ceg.perform_operation": {"tf": 1.4142135623730951}, "ceg.misc.Misc": {"tf": 1.4142135623730951}}, "df": 7, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"ceg.api.CegApi.post": {"tf": 1}, "ceg.ceg.Ceg.post": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"ceg": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ceg.ceg.Ceg": {"tf": 1.4142135623730951}, "ceg.ceg.Ceg.list": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ceg.ceg.Ceg.list_other": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 3}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg": {"tf": 1}, "ceg.misc.UtilInfo": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.misc.UtilInfo": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ceg.api.CegApi.get": {"tf": 1}, "ceg.api.CegApi.post": {"tf": 1}, "ceg.api.CegApi.patch": {"tf": 1}, "ceg.misc.Misc": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {"ceg.misc.Misc": {"tf": 1}}, "df": 1}}, "l": {"docs": {"ceg.ceg.Ceg": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "e": {"docs": {"ceg.ceg.Ceg": {"tf": 1}, "ceg.logger.Logger.info": {"tf": 1}, "ceg.logger.Logger.warning": {"tf": 1}, "ceg.logger.Logger.error": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ceg.logger.Logger": {"tf": 1}}, "df": 1}}}}}}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ceg": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough.