From 80bc4c6396d0ab98232ade60ed0092c4356971f7 Mon Sep 17 00:00:00 2001 From: jennydaman Date: Thu, 5 Oct 2023 09:13:34 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20FNNDSC/a?= =?UTF-8?q?iochris@61a3dbf174b06244006a1cba70d3294dee3c1e27=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aiochris.html | 110 ++++++------- aiochris/client.html | 2 +- aiochris/client/admin.html | 214 +++++++++++++------------- aiochris/client/anon.html | 2 +- aiochris/client/authed.html | 2 +- aiochris/client/base.html | 2 +- aiochris/client/from_chrs.html | 2 +- aiochris/client/normal.html | 2 +- aiochris/errors.html | 2 +- aiochris/models.html | 2 +- aiochris/models/collection_links.html | 2 +- aiochris/models/data.html | 2 +- aiochris/models/logged_in.html | 2 +- aiochris/models/public.html | 2 +- aiochris/types.html | 2 +- aiochris/util.html | 2 +- aiochris/util/search.html | 2 +- search.js | 2 +- 18 files changed, 183 insertions(+), 173 deletions(-) diff --git a/aiochris.html b/aiochris.html index 6095ff9..7c8f3ee 100644 --- a/aiochris.html +++ b/aiochris.html @@ -150,7 +150,7 @@

API Documentation

- + built with pdocInherited Members 120 compute_url: str | PfconUrl, 121 compute_user: str, 122 compute_password: str, -123 description: str = None, -124 compute_auth_url: str = None, -125 compute_auth_token: str = None, -126 max_job_exec_seconds: str = None, -127 ) -> ComputeResource: -128 """ -129 Define a new compute resource. -130 """ -131 return await (await self._admin).create_compute_resource( -132 name=name, -133 compute_url=compute_url, -134 compute_user=compute_user, -135 compute_password=compute_password, -136 description=description, -137 compute_auth_url=compute_auth_url, -138 compute_auth_token=compute_auth_token, -139 max_job_exec_seconds=max_job_exec_seconds, -140 ) -141 -142 @async_cached_property -143 async def _admin(self) -> _AdminApiClient: -144 """ -145 Get a (sub-)client for `/chris-admin/api/v1/` -146 """ -147 res = await self.s.get(self.collection_links.admin) -148 body = await res.json() -149 links = from_dict(AdminApiCollectionLinks, body["collection_links"]) -150 return _AdminApiClient( -151 url=self.collection_links.admin, -152 s=self.s, -153 collection_links=links, -154 max_search_requests=self.max_search_requests, -155 ) +123 compute_innetwork: bool = None, +124 description: str = None, +125 compute_auth_url: str = None, +126 compute_auth_token: str = None, +127 max_job_exec_seconds: str = None, +128 ) -> ComputeResource: +129 """ +130 Define a new compute resource. +131 """ +132 return await (await self._admin).create_compute_resource( +133 name=name, +134 compute_url=compute_url, +135 compute_user=compute_user, +136 compute_password=compute_password, +137 compute_innetwork=compute_innetwork, +138 description=description, +139 compute_auth_url=compute_auth_url, +140 compute_auth_token=compute_auth_token, +141 max_job_exec_seconds=max_job_exec_seconds, +142 ) +143 +144 @async_cached_property +145 async def _admin(self) -> _AdminApiClient: +146 """ +147 Get a (sub-)client for `/chris-admin/api/v1/` +148 """ +149 res = await self.s.get(self.collection_links.admin) +150 body = await res.json() +151 links = from_dict(AdminApiCollectionLinks, body["collection_links"]) +152 return _AdminApiClient( +153 url=self.collection_links.admin, +154 s=self.s, +155 collection_links=links, +156 max_search_requests=self.max_search_requests, +157 ) @@ -1018,7 +1020,7 @@
Parameters
async def - create_compute_resource( self, name: Union[str, aiochris.types.ComputeResourceName], compute_url: Union[str, aiochris.types.PfconUrl], compute_user: str, compute_password: str, description: str = None, compute_auth_url: str = None, compute_auth_token: str = None, max_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource: + create_compute_resource( self, name: Union[str, aiochris.types.ComputeResourceName], compute_url: Union[str, aiochris.types.PfconUrl], compute_user: str, compute_password: str, compute_innetwork: bool = None, description: str = None, compute_auth_url: str = None, compute_auth_token: str = None, max_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource: @@ -1030,24 +1032,26 @@
Parameters
120 compute_url: str | PfconUrl, 121 compute_user: str, 122 compute_password: str, -123 description: str = None, -124 compute_auth_url: str = None, -125 compute_auth_token: str = None, -126 max_job_exec_seconds: str = None, -127 ) -> ComputeResource: -128 """ -129 Define a new compute resource. -130 """ -131 return await (await self._admin).create_compute_resource( -132 name=name, -133 compute_url=compute_url, -134 compute_user=compute_user, -135 compute_password=compute_password, -136 description=description, -137 compute_auth_url=compute_auth_url, -138 compute_auth_token=compute_auth_token, -139 max_job_exec_seconds=max_job_exec_seconds, -140 ) +123 compute_innetwork: bool = None, +124 description: str = None, +125 compute_auth_url: str = None, +126 compute_auth_token: str = None, +127 max_job_exec_seconds: str = None, +128 ) -> ComputeResource: +129 """ +130 Define a new compute resource. +131 """ +132 return await (await self._admin).create_compute_resource( +133 name=name, +134 compute_url=compute_url, +135 compute_user=compute_user, +136 compute_password=compute_password, +137 compute_innetwork=compute_innetwork, +138 description=description, +139 compute_auth_url=compute_auth_url, +140 compute_auth_token=compute_auth_token, +141 max_job_exec_seconds=max_job_exec_seconds, +142 )
diff --git a/aiochris/client.html b/aiochris/client.html index c195900..dd0c703 100644 --- a/aiochris/client.html +++ b/aiochris/client.html @@ -39,7 +39,7 @@

Submodules

- + built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdoc 119 compute_url: str | PfconUrl, 120 compute_user: str, 121 compute_password: str, -122 description: str = None, -123 compute_auth_url: str = None, -124 compute_auth_token: str = None, -125 max_job_exec_seconds: str = None, -126 ) -> ComputeResource: -127 """ -128 Define a new compute resource. -129 """ -130 return await (await self._admin).create_compute_resource( -131 name=name, -132 compute_url=compute_url, -133 compute_user=compute_user, -134 compute_password=compute_password, -135 description=description, -136 compute_auth_url=compute_auth_url, -137 compute_auth_token=compute_auth_token, -138 max_job_exec_seconds=max_job_exec_seconds, -139 ) -140 -141 @async_cached_property -142 async def _admin(self) -> _AdminApiClient: -143 """ -144 Get a (sub-)client for `/chris-admin/api/v1/` -145 """ -146 res = await self.s.get(self.collection_links.admin) -147 body = await res.json() -148 links = from_dict(AdminApiCollectionLinks, body["collection_links"]) -149 return _AdminApiClient( -150 url=self.collection_links.admin, -151 s=self.s, -152 collection_links=links, -153 max_search_requests=self.max_search_requests, -154 ) -155 -156 -157def _serialize_crs( -158 c: str | ComputeResource | Iterable[ComputeResource | ComputeResourceName], -159) -> str: -160 if isinstance(c, str): -161 return c -162 if isinstance(c, ComputeResource): -163 return c.name -164 if not isinstance(c, Iterable): -165 raise TypeError("compute_resources must be str or Iterable") -166 return ",".join(map(_serialize_cr, c)) -167 -168 -169def _serialize_cr(c: str | ComputeResource): -170 if isinstance(c, ComputeResource): -171 return c.name -172 return str(c) +122 compute_innetwork: bool = None, +123 description: str = None, +124 compute_auth_url: str = None, +125 compute_auth_token: str = None, +126 max_job_exec_seconds: str = None, +127 ) -> ComputeResource: +128 """ +129 Define a new compute resource. +130 """ +131 return await (await self._admin).create_compute_resource( +132 name=name, +133 compute_url=compute_url, +134 compute_user=compute_user, +135 compute_password=compute_password, +136 compute_innetwork=compute_innetwork, +137 description=description, +138 compute_auth_url=compute_auth_url, +139 compute_auth_token=compute_auth_token, +140 max_job_exec_seconds=max_job_exec_seconds, +141 ) +142 +143 @async_cached_property +144 async def _admin(self) -> _AdminApiClient: +145 """ +146 Get a (sub-)client for `/chris-admin/api/v1/` +147 """ +148 res = await self.s.get(self.collection_links.admin) +149 body = await res.json() +150 links = from_dict(AdminApiCollectionLinks, body["collection_links"]) +151 return _AdminApiClient( +152 url=self.collection_links.admin, +153 s=self.s, +154 collection_links=links, +155 max_search_requests=self.max_search_requests, +156 ) +157 +158 +159def _serialize_crs( +160 c: str | ComputeResource | Iterable[ComputeResource | ComputeResourceName], +161) -> str: +162 if isinstance(c, str): +163 return c +164 if isinstance(c, ComputeResource): +165 return c.name +166 if not isinstance(c, Iterable): +167 raise TypeError("compute_resources must be str or Iterable") +168 return ",".join(map(_serialize_cr, c)) +169 +170 +171def _serialize_cr(c: str | ComputeResource): +172 if isinstance(c, ComputeResource): +173 return c.name +174 return str(c) @@ -344,39 +346,41 @@

120 compute_url: str | PfconUrl, 121 compute_user: str, 122 compute_password: str, -123 description: str = None, -124 compute_auth_url: str = None, -125 compute_auth_token: str = None, -126 max_job_exec_seconds: str = None, -127 ) -> ComputeResource: -128 """ -129 Define a new compute resource. -130 """ -131 return await (await self._admin).create_compute_resource( -132 name=name, -133 compute_url=compute_url, -134 compute_user=compute_user, -135 compute_password=compute_password, -136 description=description, -137 compute_auth_url=compute_auth_url, -138 compute_auth_token=compute_auth_token, -139 max_job_exec_seconds=max_job_exec_seconds, -140 ) -141 -142 @async_cached_property -143 async def _admin(self) -> _AdminApiClient: -144 """ -145 Get a (sub-)client for `/chris-admin/api/v1/` -146 """ -147 res = await self.s.get(self.collection_links.admin) -148 body = await res.json() -149 links = from_dict(AdminApiCollectionLinks, body["collection_links"]) -150 return _AdminApiClient( -151 url=self.collection_links.admin, -152 s=self.s, -153 collection_links=links, -154 max_search_requests=self.max_search_requests, -155 ) +123 compute_innetwork: bool = None, +124 description: str = None, +125 compute_auth_url: str = None, +126 compute_auth_token: str = None, +127 max_job_exec_seconds: str = None, +128 ) -> ComputeResource: +129 """ +130 Define a new compute resource. +131 """ +132 return await (await self._admin).create_compute_resource( +133 name=name, +134 compute_url=compute_url, +135 compute_user=compute_user, +136 compute_password=compute_password, +137 compute_innetwork=compute_innetwork, +138 description=description, +139 compute_auth_url=compute_auth_url, +140 compute_auth_token=compute_auth_token, +141 max_job_exec_seconds=max_job_exec_seconds, +142 ) +143 +144 @async_cached_property +145 async def _admin(self) -> _AdminApiClient: +146 """ +147 Get a (sub-)client for `/chris-admin/api/v1/` +148 """ +149 res = await self.s.get(self.collection_links.admin) +150 body = await res.json() +151 links = from_dict(AdminApiCollectionLinks, body["collection_links"]) +152 return _AdminApiClient( +153 url=self.collection_links.admin, +154 s=self.s, +155 collection_links=links, +156 max_search_requests=self.max_search_requests, +157 ) @@ -538,7 +542,7 @@

Parameters
async def - create_compute_resource( self, name: Union[str, aiochris.types.ComputeResourceName], compute_url: Union[str, aiochris.types.PfconUrl], compute_user: str, compute_password: str, description: str = None, compute_auth_url: str = None, compute_auth_token: str = None, max_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource: + create_compute_resource( self, name: Union[str, aiochris.types.ComputeResourceName], compute_url: Union[str, aiochris.types.PfconUrl], compute_user: str, compute_password: str, compute_innetwork: bool = None, description: str = None, compute_auth_url: str = None, compute_auth_token: str = None, max_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource: @@ -550,24 +554,26 @@
Parameters
120 compute_url: str | PfconUrl, 121 compute_user: str, 122 compute_password: str, -123 description: str = None, -124 compute_auth_url: str = None, -125 compute_auth_token: str = None, -126 max_job_exec_seconds: str = None, -127 ) -> ComputeResource: -128 """ -129 Define a new compute resource. -130 """ -131 return await (await self._admin).create_compute_resource( -132 name=name, -133 compute_url=compute_url, -134 compute_user=compute_user, -135 compute_password=compute_password, -136 description=description, -137 compute_auth_url=compute_auth_url, -138 compute_auth_token=compute_auth_token, -139 max_job_exec_seconds=max_job_exec_seconds, -140 ) +123 compute_innetwork: bool = None, +124 description: str = None, +125 compute_auth_url: str = None, +126 compute_auth_token: str = None, +127 max_job_exec_seconds: str = None, +128 ) -> ComputeResource: +129 """ +130 Define a new compute resource. +131 """ +132 return await (await self._admin).create_compute_resource( +133 name=name, +134 compute_url=compute_url, +135 compute_user=compute_user, +136 compute_password=compute_password, +137 compute_innetwork=compute_innetwork, +138 description=description, +139 compute_auth_url=compute_auth_url, +140 compute_auth_token=compute_auth_token, +141 max_job_exec_seconds=max_job_exec_seconds, +142 )
diff --git a/aiochris/client/anon.html b/aiochris/client/anon.html index 77004f3..9a40908 100644 --- a/aiochris/client/anon.html +++ b/aiochris/client/anon.html @@ -46,7 +46,7 @@

API Documentation

- + built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocSubmodules -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdocAPI Documentation -
Version v0.3.2
+
Version v0.4.0
built with pdoco;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();oChRIS Python client library built on\naiohttp (async HTTP client) and\npyserde\n(dataclasses deserializer).

\n\n

Installation

\n\n

Requires Python 3.10 or 3.11.

\n\n
\n
pip install aiochris\n# or\npoetry add aiochris\n
\n
\n\n

Brief Example

\n\n
\n
from aiochris import ChrisClient\n\nchris = await ChrisClient.from_login(\n    username='chris',\n    password='chris1234',\n    url='https://cube.chrisproject.org/api/v1/'\n)\ndircopy = await chris.search_plugins(name_exact='pl-brainmgz', version='2.0.3').get_only()\nplinst = await dircopy.create_instance(compute_resource_name='host')\nawait plinst.set(title="copies brain image files into feed")\n
\n
\n\n

Introduction

\n\n

aiochris provides three core classes: AnonChrisClient, ChrisClient, and ChrisAdminClient.\nThese clients differ in permissions.

\n\n

\nMethods are only defined for what the client has permission to see or do.

\n\n
\n
anon_client = await AnonChrisClient.from_url('https://cube.chrisproject.org/api/v1/')\n# ok: can search for plugins without logging in...\nplugin = await anon_client.search_plugins(name_exact='pl-mri10yr06mo01da_normal').first()\n# IMPOSSIBLE! AnonChrisClient.create_instance not defined...\nawait plugin.create_instance()\n\n# IMPOSSIBLE! authentication required for ChrisClient\nauthed_client = await ChrisClient.from_url('https://cube.chrisproject.org/api/v1/')\nauthed_client = await ChrisClient.from_login(\n    url='https://cube.chrisproject.org/api/v1/',\n    username='chris',\n    password='chris1234'\n)\n# authenticated client can also search for plugins\nplugin = await authed_client.search_plugins(name_exact='pl-mri10yr06mo01da_normal').first()\nawait plugin.create_instance()  # works!\n
\n
\n\n

\n\n

Client Constructors

\n\n\n\n

aiochris in Jupyter Notebook

\n\n

Jupyter and IPython support top-level await. This, in conjunction with ChrisClient.from_chrs,\nmake aiochris a great way to use _ChRIS_ interactively with code.

\n\n

For a walkthrough, see https://github.com/FNNDSC/aiochris/blob/master/examples/aiochris_as_a_shell.ipynb

\n\n

Working with aiohttp

\n\n

aiochris hides the implementation detail that it is built upon aiohttp,\nhowever one thing is important to keep in mind:\nbe sure to call ChrisClient.close at the end of your program.

\n\n
\n
chris = await ChrisClient.from_login(...)\n# -- snip --\nawait chris.close()\n
\n
\n\n

You can also use an\nasynchronous context manager.

\n\n
\n
async with (await ChrisClient.from_login(...)) as chris:\n    await chris.upload_file('./something.dat', 'something.dat')\n    ...\n
\n
\n\n

Efficiency with Multiple Clients

\n\n

If using more than one aiohttp client in an application, it's more efficient\nto use the same\nconnector.\nOne connector instance should be shared among every client object,\nincluding all aiochris clients and other aiohttp clients.

\n\n

\nExample: efficiently using multiple aiohttp clients

\n\n
\n
import aiohttp\nfrom aiochris import ChrisClient\n\nwith aiohttp.TCPConnector() as connector:\n    chris_client1 = await ChrisClient.from_login(\n        url='https://example.com/cube/api/v1/',\n        username='user1',\n        password='user1234',\n        connector=connector,\n        connector_owner=False\n    )\n    chris_client2 = await ChrisClient.from_login(\n        url='https://example.com/cube/api/v1/',\n        username='user2',\n        password='user4321',\n        connector=connector,\n        connector_owner=False\n    )\n    plain_http_client = aiohttp.ClientSession(connector=connector, connector_owner=False)\n
\n
\n\n

\n\n

Advice for Getting Started

\n\n

Searching for things (plugins, plugin instances, files) in CUBE is a common task,\nand CUBE often returns multiple items per response.\nHence, it is important to understand how the Search helper class works.\nIt simplifies how we interact with paginated collection responses from CUBE.

\n\n

When performing batch operations, use\nasyncio.gather\nto run async functions concurrently.

\n\n

aiochris uses many generic types, so it is recommended you use an IDE\nwith good support for type hints, such as\nPyCharm\nor VSCodium with\nPylance configured.

\n\n

Examples

\n\n

Create a client given username and password

\n\n
\n
from aiochris import ChrisClient\n\nchris = await ChrisClient.from_login(\n    url='https://cube.chrisproject.org/api/v1/',\n    username='chris',\n    password='chris1234'\n)\n
\n
\n\n

Search for a plugin

\n\n
\n
# it's recommended to specify plugin version\nplugin = await chris.search_plugins(name_exact="pl-dcm2niix", version="0.1.0").get_only()\n\n# but if you don't care about plugin version...\nplugin = await chris.search_plugins(name_exact="pl-dcm2niix").first()\n
\n
\n\n

Create a feed by uploading a file

\n\n
\n
uploaded_file = await chris.upload_file('./brain.nii', 'my_experiment/brain.nii')\ndircopy = await chris.search_plugins(name_exact='pl-dircopy', version="2.1.1").get_only()\nplinst = await dircopy.create_instance(dir=uploaded_file.parent)\nfeed = await plinst.get_feed()\nawait feed.set(name="An experiment on uploaded file brain.nii")\n
\n
\n\n

Run a ds-type ChRIS plugin

\n\n
\n
# search for plugin to run\nplugin = await chris.search_plugins(name_exact="pl-dcm2niix", version="0.1.0").get_only()\n\n# search for parent node \nprevious = await chris.plugin_instances(id=44).get_only()\n\nawait plugin.create_instance(\n    previous=previous,               # required. alternatively, specify previous_id\n    title="convert DICOM to NIFTI",  # optional\n    compute_resource_name="galena",  # optional\n    memory_limit="2000Mi",           # optional\n    d=9,                             # optional parameter of pl-dcm2niix\n)\n
\n
\n\n

Search for plugin instances

\n\n
\n
finished_freesurfers = chris.plugin_instances(\n    plugin_name_exact='pl-fshack',\n    status='finishedSuccessfully'\n)\nasync for p in finished_freesurfers:\n    print(f'"{p.title}" finished on date: {p.end_date}')\n
\n
\n\n

Delete all plugin instances with a given title, in parallel

\n\n
\n
import asyncio\nfrom aiochris import ChrisClient, acollect\n\nchris = ChrisClient.from_login(...)\nsearch = chris.plugin_instances(title="delete me")\nplugin_instances = await acollect(search)\nawait asyncio.gather(*(p.delete() for p in plugin_instances))\n
\n
\n\n

Enable Debug Logging

\n\n

A log message will be printed to stderr before every HTTP request is sent.

\n\n
\n
import logging\n\nlogging.basicConfig(level=logging.DEBUG)\n
\n
\n"}, "aiochris.AnonChrisClient": {"fullname": "aiochris.AnonChrisClient", "modulename": "aiochris", "qualname": "AnonChrisClient", "kind": "class", "doc": "

An anonymous ChRIS client. It has access to read-only GET resources,\nsuch as being able to search for plugins.

\n", "bases": "aiochris.client.base.BaseChrisClient[aiochris.models.collection_links.AnonymousCollectionLinks, 'AnonChrisClient']"}, "aiochris.AnonChrisClient.from_url": {"fullname": "aiochris.AnonChrisClient.from_url", "modulename": "aiochris", "qualname": "AnonChrisClient.from_url", "kind": "function", "doc": "

Create an anonymous client.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.BaseConnector] = None,\tconnector_owner: bool = True) -> aiochris.client.anon.AnonChrisClient:", "funcdef": "async def"}, "aiochris.AnonChrisClient.search_plugins": {"fullname": "aiochris.AnonChrisClient.search_plugins", "modulename": "aiochris", "qualname": "AnonChrisClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n\n

Since this client is not logged in, you cannot create plugin instances using this client.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.PublicPlugin]:", "funcdef": "def"}, "aiochris.ChrisClient": {"fullname": "aiochris.ChrisClient", "modulename": "aiochris", "qualname": "ChrisClient", "kind": "class", "doc": "

A normal user ChRIS client, who may upload files and create plugin instances.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.CollectionLinks, 'ChrisClient']"}, "aiochris.ChrisClient.create_user": {"fullname": "aiochris.ChrisClient.create_user", "modulename": "aiochris", "qualname": "ChrisClient.create_user", "kind": "function", "doc": "

\n", "signature": "(\tcls,\turl: Union[aiochris.types.ChrisURL, str],\tusername: Union[aiochris.types.Username, str],\tpassword: Union[aiochris.types.Password, str],\temail: str,\tsession: Optional[aiohttp.client.ClientSession] = None) -> aiochris.models.data.UserData:", "funcdef": "async def"}, "aiochris.ChrisAdminClient": {"fullname": "aiochris.ChrisAdminClient", "modulename": "aiochris", "qualname": "ChrisAdminClient", "kind": "class", "doc": "

A client who has access to /chris-admin/. Admins can register new plugins and\nadd new compute resources.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.AdminCollectionLinks, 'ChrisAdminClient']"}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"fullname": "aiochris.ChrisAdminClient.register_plugin_from_store", "modulename": "aiochris", "qualname": "ChrisAdminClient.register_plugin_from_store", "kind": "function", "doc": "

Register a plugin from a ChRIS Store.

\n", "signature": "(\tself,\tplugin_store_url: aiochris.types.PluginUrl,\tcompute_names: Iterable[aiochris.types.ComputeResourceName]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.ChrisAdminClient.add_plugin": {"fullname": "aiochris.ChrisAdminClient.add_plugin", "modulename": "aiochris", "qualname": "ChrisAdminClient.add_plugin", "kind": "function", "doc": "

Add a plugin to CUBE.

\n\n
Examples
\n\n
\n
cmd = ['docker', 'run', '--rm', 'fnndsc/pl-mri-preview', 'chris_plugin_info']\noutput = subprocess.check_output(cmd, text=True)\ndesc = json.loads(output)\ndesc['name'] = 'pl-mri-preview'\ndesc['public_repo'] = 'https://github.com/FNNDSC/pl-mri-preview'\ndesc['dock_image'] = 'fnndsc/pl-mri-preview'\n\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources='host')\n
\n
\n\n

The example above is just for show. It's not a good example for several reasons:

\n\n\n\n
\n
all_computes = await chris_admin.get_all_compute_resources()\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources=all_computes)\n
\n
\n\n
Parameters
\n\n\n", "signature": "(\tself,\tplugin_description: str | dict,\tcompute_resources: Union[str, aiochris.models.public.ComputeResource, Iterable[Union[aiochris.models.public.ComputeResource, aiochris.types.ComputeResourceName]]]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.ChrisAdminClient.create_compute_resource": {"fullname": "aiochris.ChrisAdminClient.create_compute_resource", "modulename": "aiochris", "qualname": "ChrisAdminClient.create_compute_resource", "kind": "function", "doc": "

Define a new compute resource.

\n", "signature": "(\tself,\tname: Union[str, aiochris.types.ComputeResourceName],\tcompute_url: Union[str, aiochris.types.PfconUrl],\tcompute_user: str,\tcompute_password: str,\tdescription: str = None,\tcompute_auth_url: str = None,\tcompute_auth_token: str = None,\tmax_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource:", "funcdef": "async def"}, "aiochris.Search": {"fullname": "aiochris.Search", "modulename": "aiochris", "qualname": "Search", "kind": "class", "doc": "

Abstraction over paginated collection responses from CUBE.\nSearch objects are returned by methods for search endpoints of the CUBE API.\nIt is an asynchronous iterable\nwhich produces items from responses that return multiple results.\nHTTP requests are fired as-neede, they happen in the background during iteration.\nNo request is made before the first time a Search object is called.

\n\n
\n\n
Pagination is handled internally and automatically.
\n\n

The query parameters limit and offset can be explicitly given, but they shouldn't.

\n\n
\n\n
Examples
\n\n

Use an async for loop to print the name of every feed:

\n\n
\n
all_feeds = chris.search_feeds()  # returns a Search[Feed]\nasync for feed in all_feeds:\n    print(feed.name)\n
\n
\n", "bases": "typing.Generic[~T], typing.AsyncIterable[~T]"}, "aiochris.Search.__init__": {"fullname": "aiochris.Search.__init__", "modulename": "aiochris", "qualname": "Search.__init__", "kind": "function", "doc": "

\n", "signature": "(\tbase_url: str,\tparams: dict[str, typing.Any],\tclient: aiochris.link.linked.Linked,\tItem: Type[~T],\tmax_requests: int = 100,\tsubpath: str = 'search/')"}, "aiochris.Search.first": {"fullname": "aiochris.Search.first", "modulename": "aiochris", "qualname": "Search.first", "kind": "function", "doc": "

Get the first item.

\n\n
See also
\n\n

get_only : similar use, but more strict

\n", "signature": "(self) -> Optional[~T]:", "funcdef": "async def"}, "aiochris.Search.get_only": {"fullname": "aiochris.Search.get_only", "modulename": "aiochris", "qualname": "Search.get_only", "kind": "function", "doc": "

Get the only item from a search with one result.

\n\n
Examples
\n\n

This method is very commonly used for getting \"one thing\" from CUBE.

\n\n
\n
await chris.search_plugins(name_exact="pl-dircopy", version="2.1.1").get_only()\n
\n
\n\n

In the example above, a search for plugins given (name_exact, version)\nis guaranteed to return either 0 or 1 result.

\n\n
Raises
\n\n\n\n
See also
\n\n

first : does the same thing but without checks.

\n\n
Parameters
\n\n\n", "signature": "(self, allow_multiple=False) -> ~T:", "funcdef": "async def"}, "aiochris.Search.count": {"fullname": "aiochris.Search.count", "modulename": "aiochris", "qualname": "Search.count", "kind": "function", "doc": "

Get the number of items in this collection search.

\n\n
Examples
\n\n

count is useful for rendering a progress bar. TODO example with files

\n", "signature": "(self) -> int:", "funcdef": "async def"}, "aiochris.acollect": {"fullname": "aiochris.acollect", "modulename": "aiochris", "qualname": "acollect", "kind": "function", "doc": "

Simple helper to convert a Search to a list.

\n\n

Using this function is not recommended unless you can assume the collection is small.

\n", "signature": "(async_iterable: AsyncIterable[~T]) -> list[~T]:", "funcdef": "async def"}, "aiochris.Status": {"fullname": "aiochris.Status", "modulename": "aiochris", "qualname": "Status", "kind": "class", "doc": "

Possible statuses of a plugin instance.

\n", "bases": "enum.Enum"}, "aiochris.Status.created": {"fullname": "aiochris.Status.created", "modulename": "aiochris", "qualname": "Status.created", "kind": "variable", "doc": "

\n", "default_value": " = <Status.created: 'created'>"}, "aiochris.Status.waiting": {"fullname": "aiochris.Status.waiting", "modulename": "aiochris", "qualname": "Status.waiting", "kind": "variable", "doc": "

\n", "default_value": " = <Status.waiting: 'waiting'>"}, "aiochris.Status.scheduled": {"fullname": "aiochris.Status.scheduled", "modulename": "aiochris", "qualname": "Status.scheduled", "kind": "variable", "doc": "

\n", "default_value": " = <Status.scheduled: 'scheduled'>"}, "aiochris.Status.started": {"fullname": "aiochris.Status.started", "modulename": "aiochris", "qualname": "Status.started", "kind": "variable", "doc": "

\n", "default_value": " = <Status.started: 'started'>"}, "aiochris.Status.registeringFiles": {"fullname": "aiochris.Status.registeringFiles", "modulename": "aiochris", "qualname": "Status.registeringFiles", "kind": "variable", "doc": "

\n", "default_value": " = <Status.registeringFiles: 'registeringFiles'>"}, "aiochris.Status.finishedSuccessfully": {"fullname": "aiochris.Status.finishedSuccessfully", "modulename": "aiochris", "qualname": "Status.finishedSuccessfully", "kind": "variable", "doc": "

\n", "default_value": " = <Status.finishedSuccessfully: 'finishedSuccessfully'>"}, "aiochris.Status.finishedWithError": {"fullname": "aiochris.Status.finishedWithError", "modulename": "aiochris", "qualname": "Status.finishedWithError", "kind": "variable", "doc": "

\n", "default_value": " = <Status.finishedWithError: 'finishedWithError'>"}, "aiochris.Status.cancelled": {"fullname": "aiochris.Status.cancelled", "modulename": "aiochris", "qualname": "Status.cancelled", "kind": "variable", "doc": "

\n", "default_value": " = <Status.cancelled: 'cancelled'>"}, "aiochris.ParameterTypeName": {"fullname": "aiochris.ParameterTypeName", "modulename": "aiochris", "qualname": "ParameterTypeName", "kind": "class", "doc": "

Plugin parameter types.

\n", "bases": "enum.Enum"}, "aiochris.ParameterTypeName.string": {"fullname": "aiochris.ParameterTypeName.string", "modulename": "aiochris", "qualname": "ParameterTypeName.string", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.string: 'string'>"}, "aiochris.ParameterTypeName.integer": {"fullname": "aiochris.ParameterTypeName.integer", "modulename": "aiochris", "qualname": "ParameterTypeName.integer", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.integer: 'integer'>"}, "aiochris.ParameterTypeName.float": {"fullname": "aiochris.ParameterTypeName.float", "modulename": "aiochris", "qualname": "ParameterTypeName.float", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.float: 'float'>"}, "aiochris.ParameterTypeName.boolean": {"fullname": "aiochris.ParameterTypeName.boolean", "modulename": "aiochris", "qualname": "ParameterTypeName.boolean", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.boolean: 'boolean'>"}, "aiochris.client": {"fullname": "aiochris.client", "modulename": "aiochris.client", "kind": "module", "doc": "

\n"}, "aiochris.client.admin": {"fullname": "aiochris.client.admin", "modulename": "aiochris.client.admin", "kind": "module", "doc": "

\n"}, "aiochris.client.admin.ChrisAdminClient": {"fullname": "aiochris.client.admin.ChrisAdminClient", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient", "kind": "class", "doc": "

A client who has access to /chris-admin/. Admins can register new plugins and\nadd new compute resources.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.AdminCollectionLinks, 'ChrisAdminClient']"}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"fullname": "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient.register_plugin_from_store", "kind": "function", "doc": "

Register a plugin from a ChRIS Store.

\n", "signature": "(\tself,\tplugin_store_url: aiochris.types.PluginUrl,\tcompute_names: Iterable[aiochris.types.ComputeResourceName]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"fullname": "aiochris.client.admin.ChrisAdminClient.add_plugin", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient.add_plugin", "kind": "function", "doc": "

Add a plugin to CUBE.

\n\n
Examples
\n\n
\n
cmd = ['docker', 'run', '--rm', 'fnndsc/pl-mri-preview', 'chris_plugin_info']\noutput = subprocess.check_output(cmd, text=True)\ndesc = json.loads(output)\ndesc['name'] = 'pl-mri-preview'\ndesc['public_repo'] = 'https://github.com/FNNDSC/pl-mri-preview'\ndesc['dock_image'] = 'fnndsc/pl-mri-preview'\n\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources='host')\n
\n
\n\n

The example above is just for show. It's not a good example for several reasons:

\n\n\n\n
\n
all_computes = await chris_admin.get_all_compute_resources()\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources=all_computes)\n
\n
\n\n
Parameters
\n\n\n", "signature": "(\tself,\tplugin_description: str | dict,\tcompute_resources: Union[str, aiochris.models.public.ComputeResource, Iterable[Union[aiochris.models.public.ComputeResource, aiochris.types.ComputeResourceName]]]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"fullname": "aiochris.client.admin.ChrisAdminClient.create_compute_resource", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient.create_compute_resource", "kind": "function", "doc": "

Define a new compute resource.

\n", "signature": "(\tself,\tname: Union[str, aiochris.types.ComputeResourceName],\tcompute_url: Union[str, aiochris.types.PfconUrl],\tcompute_user: str,\tcompute_password: str,\tdescription: str = None,\tcompute_auth_url: str = None,\tcompute_auth_token: str = None,\tmax_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource:", "funcdef": "async def"}, "aiochris.client.anon": {"fullname": "aiochris.client.anon", "modulename": "aiochris.client.anon", "kind": "module", "doc": "

\n"}, "aiochris.client.anon.AnonChrisClient": {"fullname": "aiochris.client.anon.AnonChrisClient", "modulename": "aiochris.client.anon", "qualname": "AnonChrisClient", "kind": "class", "doc": "

An anonymous ChRIS client. It has access to read-only GET resources,\nsuch as being able to search for plugins.

\n", "bases": "aiochris.client.base.BaseChrisClient[aiochris.models.collection_links.AnonymousCollectionLinks, 'AnonChrisClient']"}, "aiochris.client.anon.AnonChrisClient.from_url": {"fullname": "aiochris.client.anon.AnonChrisClient.from_url", "modulename": "aiochris.client.anon", "qualname": "AnonChrisClient.from_url", "kind": "function", "doc": "

Create an anonymous client.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.BaseConnector] = None,\tconnector_owner: bool = True) -> aiochris.client.anon.AnonChrisClient:", "funcdef": "async def"}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"fullname": "aiochris.client.anon.AnonChrisClient.search_plugins", "modulename": "aiochris.client.anon", "qualname": "AnonChrisClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n\n

Since this client is not logged in, you cannot create plugin instances using this client.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.PublicPlugin]:", "funcdef": "def"}, "aiochris.client.authed": {"fullname": "aiochris.client.authed", "modulename": "aiochris.client.authed", "kind": "module", "doc": "

\n"}, "aiochris.client.authed.AuthenticatedClient": {"fullname": "aiochris.client.authed.AuthenticatedClient", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient", "kind": "class", "doc": "

An authenticated ChRIS client.

\n", "bases": "aiochris.client.base.BaseChrisClient[~L, ~CSelf], typing.Generic[~L, ~CSelf], abc.ABC"}, "aiochris.client.authed.AuthenticatedClient.from_login": {"fullname": "aiochris.client.authed.AuthenticatedClient.from_login", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.from_login", "kind": "function", "doc": "

Get authentication token using username and password, then construct the client.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: Union[str, aiochris.types.ChrisURL],\tusername: Union[str, aiochris.types.Username],\tpassword: Union[str, aiochris.types.Password],\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.TCPConnector] = None,\tconnector_owner: bool = True) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.from_token": {"fullname": "aiochris.client.authed.AuthenticatedClient.from_token", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.from_token", "kind": "function", "doc": "

Construct an authenticated client using the given token.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: Union[str, aiochris.types.ChrisURL],\ttoken: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.TCPConnector] = None,\tconnector_owner: Optional[bool] = True) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"fullname": "aiochris.client.authed.AuthenticatedClient.from_chrs", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.from_chrs", "kind": "function", "doc": "

Log in using chrs.\nChRIS logins can be saved with the chrs login command.

\n\n

In order to call this function, aiochris must be installed with the extras from-chrs.\nUsing pip:

\n\n
\n
pip install aiochris[chrs]\n
\n
\n\n

Or using Poetry:

\n\n
\n
poetry add -E chrs aiochris\n
\n
\n\n

from_chrs makes it easy to use aiochris in Jupyter Notebook or IPython,\nespecially since it saves you from having to write your password in a notebook\nthat you want to share with others. Both Jupyter and IPython support top-level await.

\n\n
\n
from aiochris import ChrisClient, acollect\n\nchris = await ChrisClient.from_chrs()\nawait acollect(chris.search_plugins())\n
\n
\n\n

When from_chrs is called with no parameters, it uses the \"preferred account\"\ni.e. the most recently added account, the same _ChRIS_ account and server as\nchrs would when called without options. The \"preferred account\" can be changed\nby running chrs switch.

\n", "signature": "(\tcls,\turl: Union[str, aiochris.types.ChrisURL, NoneType] = None,\tusername: Union[str, aiochris.types.Username, NoneType] = None,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.TCPConnector] = None,\tconnector_owner: Optional[bool] = True,\tconfig_file: pathlib.Path = PosixPath('~/.config/chrs/login.toml')) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_feeds", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_feeds", "kind": "function", "doc": "

Search for feeds.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.Feed]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_plugins", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.Plugin]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"fullname": "aiochris.client.authed.AuthenticatedClient.plugin_instances", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.plugin_instances", "kind": "function", "doc": "

Search for plugin instances.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.PluginInstance]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"fullname": "aiochris.client.authed.AuthenticatedClient.upload_file", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.upload_file", "kind": "function", "doc": "

Upload a local file to ChRIS.

\n\n
\n\n
Uses non-async code.
\n\n

The file is read using non-async code.\nPerformance will suffer with large files and hard drives.\nSee aiolibs/aiohttp#7174

\n\n
\n\n
Examples
\n\n

Upload a single file:

\n\n
\n
aiochris = await ChrisClient.from_login(\n    username='chris',\n    password='chris1234',\n    url='https://cube.chrisproject.org/api/v1/'\n)\nfile = await aiochris.upload_file("./my_data.dat", 'dir/my_data.dat')\nassert file.fname == 'aiochris/uploads/dir/my_data.dat'\n
\n
\n\n

Upload (in parallel) all *.txt files in a directory\n'incoming' to aiochris/uploads/big_folder:

\n\n
\n
upload_jobs = (\n    aiochris.upload_file(p, f'big_folder/{p}')\n    for p in Path('incoming')\n)\nawait asyncio.gather(upload_jobs)\n
\n
\n\n
Parameters
\n\n\n", "signature": "(\tself,\tlocal_file: str | os.PathLike,\tupload_path: str) -> aiochris.models.logged_in.File:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.user": {"fullname": "aiochris.client.authed.AuthenticatedClient.user", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.user", "kind": "function", "doc": "

Gets the user's information.

\n", "signature": "(self) -> aiochris.models.logged_in.User:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.username": {"fullname": "aiochris.client.authed.AuthenticatedClient.username", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.username", "kind": "function", "doc": "

Gets the username. In contrast to self.user, this method will use a cached API call.

\n", "signature": "(self) -> aiochris.types.Username:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_compute_resources", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_compute_resources", "kind": "function", "doc": "

Search for existing compute resources.

\n\n
See also
\n\n

get_all_compute_resources :

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.ComputeResource]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"fullname": "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.get_all_compute_resources", "kind": "function", "doc": "

Get all compute resources.

\n\n

This method exists for convenience.\nThe number of compute resources of a CUBE is typically small so it's ok.

\n\n
See also
\n\n

search_compute_resources :

\n", "signature": "(self) -> Sequence[aiochris.models.public.ComputeResource]:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_pacsfiles", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_pacsfiles", "kind": "function", "doc": "

Search for PACS files.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.PACSFile]:", "funcdef": "def"}, "aiochris.client.base": {"fullname": "aiochris.client.base", "modulename": "aiochris.client.base", "kind": "module", "doc": "

\n"}, "aiochris.client.base.BaseChrisClient": {"fullname": "aiochris.client.base.BaseChrisClient", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient", "kind": "class", "doc": "

Provides the implementation for most of the read-only GET resources of ChRIS\nand functions related to the client object's own usage.

\n", "bases": "typing.Generic[~L, ~CSelf], aiochris.link.collection_client.CollectionJsonApiClient[~L], typing.AsyncContextManager[~CSelf], abc.ABC"}, "aiochris.client.base.BaseChrisClient.new": {"fullname": "aiochris.client.base.BaseChrisClient.new", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient.new", "kind": "function", "doc": "

A constructor which creates the session for the BaseChrisClient\nand makes an initial request to populate collection_links.

\n\n
Parameters
\n\n\n", "signature": "(\tcls,\turl: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.BaseConnector] = None,\tconnector_owner: bool = True,\tsession_modifier: Optional[Callable[[aiohttp.client.ClientSession], NoneType]] = None) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.base.BaseChrisClient.close": {"fullname": "aiochris.client.base.BaseChrisClient.close", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient.close", "kind": "function", "doc": "

Close the HTTP session used by this client.

\n", "signature": "(self):", "funcdef": "async def"}, "aiochris.client.base.BaseChrisClient.search_plugins": {"fullname": "aiochris.client.base.BaseChrisClient.search_plugins", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.PublicPlugin]:", "funcdef": "def"}, "aiochris.client.from_chrs": {"fullname": "aiochris.client.from_chrs", "modulename": "aiochris.client.from_chrs", "kind": "module", "doc": "

Interoperability with chrs version 0.2.4.

\n\n

The functions of this module uses dynamic importing of extras from the chrs group.

\n"}, "aiochris.client.from_chrs.StoredToken": {"fullname": "aiochris.client.from_chrs.StoredToken", "modulename": "aiochris.client.from_chrs", "qualname": "StoredToken", "kind": "class", "doc": "

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/tokenstore.rs#L18-L24

\n"}, "aiochris.client.from_chrs.StoredToken.__init__": {"fullname": "aiochris.client.from_chrs.StoredToken.__init__", "modulename": "aiochris.client.from_chrs", "qualname": "StoredToken.__init__", "kind": "function", "doc": "

\n", "signature": "(store: Literal['Text', 'Keyring'], value: Optional[str] = None)"}, "aiochris.client.from_chrs.ChrsLogin": {"fullname": "aiochris.client.from_chrs.ChrsLogin", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin", "kind": "class", "doc": "

A login saved by chrs.

\n\n

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/tokenstore.rs#L18-L34

\n"}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"fullname": "aiochris.client.from_chrs.ChrsLogin.__init__", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.__init__", "kind": "function", "doc": "

\n", "signature": "(\taddress: aiochris.types.ChrisURL,\tusername: aiochris.types.Username,\tstore: aiochris.client.from_chrs.StoredToken)"}, "aiochris.client.from_chrs.ChrsLogin.token": {"fullname": "aiochris.client.from_chrs.ChrsLogin.token", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.token", "kind": "function", "doc": "

\n", "signature": "(self) -> str:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"fullname": "aiochris.client.from_chrs.ChrsLogin.is_for", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.is_for", "kind": "function", "doc": "

Returns True if this login is for the specified _ChRIS_ user account.

\n", "signature": "(\tself,\taddress: Optional[aiochris.types.ChrisURL],\tusername: Optional[aiochris.types.Username]) -> bool:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"fullname": "aiochris.client.from_chrs.ChrsLogin.to_keyring_username", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.to_keyring_username", "kind": "function", "doc": "

Produce the username for this login in the keyring.

\n\n

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/tokenstore.rs#L3

\n", "signature": "(self) -> str:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogins": {"fullname": "aiochris.client.from_chrs.ChrsLogins", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins", "kind": "class", "doc": "

Logins saved by chrs.

\n\n

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/saved.rs#L18-L22

\n"}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"fullname": "aiochris.client.from_chrs.ChrsLogins.__init__", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.__init__", "kind": "function", "doc": "

\n", "signature": "(cubes: list[aiochris.client.from_chrs.ChrsLogin])"}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"fullname": "aiochris.client.from_chrs.ChrsLogins.cubes", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.cubes", "kind": "variable", "doc": "

Saved logins in reverse order of preference.

\n", "annotation": ": list[aiochris.client.from_chrs.ChrsLogin]"}, "aiochris.client.from_chrs.ChrsLogins.load": {"fullname": "aiochris.client.from_chrs.ChrsLogins.load", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.load", "kind": "function", "doc": "

\n", "signature": "(cls, path: pathlib.Path) -> aiochris.client.from_chrs.ChrsLogins:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"fullname": "aiochris.client.from_chrs.ChrsLogins.get_token_for", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.get_token_for", "kind": "function", "doc": "

Get token for a login.

\n", "signature": "(\tself,\taddress: Union[str, aiochris.types.ChrisURL, NoneType] = None,\tusername: Union[str, aiochris.types.Username, NoneType] = None) -> Optional[tuple[aiochris.types.ChrisURL, str]]:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsKeyringError": {"fullname": "aiochris.client.from_chrs.ChrsKeyringError", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsKeyringError", "kind": "class", "doc": "

Error interacting with Keyring.

\n", "bases": "builtins.Exception"}, "aiochris.client.normal": {"fullname": "aiochris.client.normal", "modulename": "aiochris.client.normal", "kind": "module", "doc": "

\n"}, "aiochris.client.normal.ChrisClient": {"fullname": "aiochris.client.normal.ChrisClient", "modulename": "aiochris.client.normal", "qualname": "ChrisClient", "kind": "class", "doc": "

A normal user ChRIS client, who may upload files and create plugin instances.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.CollectionLinks, 'ChrisClient']"}, "aiochris.client.normal.ChrisClient.create_user": {"fullname": "aiochris.client.normal.ChrisClient.create_user", "modulename": "aiochris.client.normal", "qualname": "ChrisClient.create_user", "kind": "function", "doc": "

\n", "signature": "(\tcls,\turl: Union[aiochris.types.ChrisURL, str],\tusername: Union[aiochris.types.Username, str],\tpassword: Union[aiochris.types.Password, str],\temail: str,\tsession: Optional[aiohttp.client.ClientSession] = None) -> aiochris.models.data.UserData:", "funcdef": "async def"}, "aiochris.errors": {"fullname": "aiochris.errors", "modulename": "aiochris.errors", "kind": "module", "doc": "

\n"}, "aiochris.errors.raise_for_status": {"fullname": "aiochris.errors.raise_for_status", "modulename": "aiochris.errors", "qualname": "raise_for_status", "kind": "function", "doc": "

Raises custom exceptions.

\n", "signature": "(res: aiohttp.client_reqrep.ClientResponse) -> None:", "funcdef": "async def"}, "aiochris.errors.BaseClientError": {"fullname": "aiochris.errors.BaseClientError", "modulename": "aiochris.errors", "qualname": "BaseClientError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "builtins.Exception"}, "aiochris.errors.ResponseError": {"fullname": "aiochris.errors.ResponseError", "modulename": "aiochris.errors", "qualname": "ResponseError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "BaseClientError"}, "aiochris.errors.BadRequestError": {"fullname": "aiochris.errors.BadRequestError", "modulename": "aiochris.errors", "qualname": "BadRequestError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "ResponseError"}, "aiochris.errors.InternalServerError": {"fullname": "aiochris.errors.InternalServerError", "modulename": "aiochris.errors", "qualname": "InternalServerError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "ResponseError"}, "aiochris.errors.IncorrectLoginError": {"fullname": "aiochris.errors.IncorrectLoginError", "modulename": "aiochris.errors", "qualname": "IncorrectLoginError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "BaseClientError"}, "aiochris.errors.NonsenseResponseError": {"fullname": "aiochris.errors.NonsenseResponseError", "modulename": "aiochris.errors", "qualname": "NonsenseResponseError", "kind": "class", "doc": "

CUBE returned data which does not make sense.

\n", "bases": "ResponseError"}, "aiochris.models": {"fullname": "aiochris.models", "modulename": "aiochris.models", "kind": "module", "doc": "

\n"}, "aiochris.models.collection_links": {"fullname": "aiochris.models.collection_links", "modulename": "aiochris.models.collection_links", "kind": "module", "doc": "

\n"}, "aiochris.models.collection_links.AbstractCollectionLinks": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks", "kind": "class", "doc": "

\n"}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "()"}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks.has_field", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks.has_field", "kind": "function", "doc": "

\n", "signature": "(cls, field_name: str) -> bool:", "funcdef": "def"}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks.get", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks.get", "kind": "function", "doc": "

\n", "signature": "(self, collection_name: str) -> str:", "funcdef": "def"}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"fullname": "aiochris.models.collection_links.AnonymousCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AnonymousCollectionLinks", "kind": "class", "doc": "

\n", "bases": "AbstractCollectionLinks"}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AnonymousCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AnonymousCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(\tchrisinstance: aiochris.types.ApiUrl,\tfiles: aiochris.types.ApiUrl,\tcompute_resources: aiochris.types.ApiUrl,\tplugin_metas: aiochris.types.ApiUrl,\tplugins: aiochris.types.ApiUrl,\tplugin_instances: aiochris.types.ApiUrl,\tpipelines: aiochris.types.ApiUrl,\tpipeline_instances: aiochris.types.ApiUrl,\tworkflows: aiochris.types.ApiUrl,\ttags: aiochris.types.ApiUrl,\tuploadedfiles: aiochris.types.ApiUrl,\tpacsfiles: aiochris.types.ApiUrl,\tservicefiles: aiochris.types.ApiUrl,\tfilebrowser: aiochris.types.ApiUrl)"}, "aiochris.models.collection_links.CollectionLinks": {"fullname": "aiochris.models.collection_links.CollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "CollectionLinks", "kind": "class", "doc": "

\n", "bases": "AnonymousCollectionLinks"}, "aiochris.models.collection_links.CollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.CollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "CollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(\tchrisinstance: aiochris.types.ApiUrl,\tfiles: aiochris.types.ApiUrl,\tcompute_resources: aiochris.types.ApiUrl,\tplugin_metas: aiochris.types.ApiUrl,\tplugins: aiochris.types.ApiUrl,\tplugin_instances: aiochris.types.ApiUrl,\tpipelines: aiochris.types.ApiUrl,\tpipeline_instances: aiochris.types.ApiUrl,\tworkflows: aiochris.types.ApiUrl,\ttags: aiochris.types.ApiUrl,\tuploadedfiles: aiochris.types.ApiUrl,\tpacsfiles: aiochris.types.ApiUrl,\tservicefiles: aiochris.types.ApiUrl,\tfilebrowser: aiochris.types.ApiUrl,\tuser: aiochris.types.UserUrl)"}, "aiochris.models.collection_links.AdminCollectionLinks": {"fullname": "aiochris.models.collection_links.AdminCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AdminCollectionLinks", "kind": "class", "doc": "

\n", "bases": "CollectionLinks"}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AdminCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AdminCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(\tchrisinstance: aiochris.types.ApiUrl,\tfiles: aiochris.types.ApiUrl,\tcompute_resources: aiochris.types.ApiUrl,\tplugin_metas: aiochris.types.ApiUrl,\tplugins: aiochris.types.ApiUrl,\tplugin_instances: aiochris.types.ApiUrl,\tpipelines: aiochris.types.ApiUrl,\tpipeline_instances: aiochris.types.ApiUrl,\tworkflows: aiochris.types.ApiUrl,\ttags: aiochris.types.ApiUrl,\tuploadedfiles: aiochris.types.ApiUrl,\tpacsfiles: aiochris.types.ApiUrl,\tservicefiles: aiochris.types.ApiUrl,\tfilebrowser: aiochris.types.ApiUrl,\tuser: aiochris.types.UserUrl,\tadmin: aiochris.types.AdminUrl)"}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"fullname": "aiochris.models.collection_links.AdminApiCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AdminApiCollectionLinks", "kind": "class", "doc": "

\n", "bases": "AbstractCollectionLinks"}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AdminApiCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AdminApiCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(compute_resources: aiochris.types.ApiUrl)"}, "aiochris.models.data": {"fullname": "aiochris.models.data", "modulename": "aiochris.models.data", "kind": "module", "doc": "

Dataclasses describing objects returned from CUBE.

\n\n

These classes are extended in the modules aiochris.models.logged_in\nand aiochris.models.public with methods to get objects from links.

\n"}, "aiochris.models.data.UserData": {"fullname": "aiochris.models.data.UserData", "modulename": "aiochris.models.data", "qualname": "UserData", "kind": "class", "doc": "

A CUBE user.

\n"}, "aiochris.models.data.UserData.__init__": {"fullname": "aiochris.models.data.UserData.__init__", "modulename": "aiochris.models.data", "qualname": "UserData.__init__", "kind": "function", "doc": "

\n", "signature": "(\turl: aiochris.types.UserUrl,\tid: aiochris.types.UserId,\tusername: aiochris.types.Username,\temail: str)"}, "aiochris.models.data.PluginInstanceData": {"fullname": "aiochris.models.data.PluginInstanceData", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData", "kind": "class", "doc": "

A plugin instance in _ChRIS_ is a computing job, i.e. an attempt to run\na computation (a non-interactive command-line app) to produce data.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.data.PluginInstanceData.__init__": {"fullname": "aiochris.models.data.PluginInstanceData.__init__", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginInstanceUrl,\tid: aiochris.types.PluginInstanceId,\ttitle: str,\tcompute_resource_name: aiochris.types.ComputeResourceName,\tplugin_id: aiochris.types.PluginId,\tplugin_name: aiochris.types.PluginName,\tplugin_version: aiochris.types.PluginVersion,\tplugin_type: aiochris.enums.PluginType,\tpipeline_inst: Optional[int],\tfeed_id: aiochris.types.FeedId,\tstart_date: datetime.datetime,\tend_date: datetime.datetime,\toutput_path: aiochris.types.CubeFilePath,\tstatus: aiochris.enums.Status,\tsummary: str,\traw: str,\towner_username: aiochris.types.Username,\tcpu_limit: int,\tmemory_limit: int,\tnumber_of_workers: int,\tgpu_limit: int,\terror_code: aiochris.types.CUBEErrorCode,\tprevious: Optional[aiochris.types.PluginInstanceUrl],\tfeed: aiochris.types.FeedUrl,\tplugin: aiochris.types.PluginUrl,\tdescendants: aiochris.types.DescendantsUrl,\tfiles: aiochris.types.FilesUrl,\tparameters: aiochris.types.PluginInstanceParametersUrl,\tcompute_resource: aiochris.types.ComputeResourceUrl,\tsplits: aiochris.types.SplitsUrl,\tprevious_id: Optional[int] = None,\tsize: Optional[int] = None,\ttemplate: Optional[dict] = None)"}, "aiochris.models.data.PluginInstanceData.previous_id": {"fullname": "aiochris.models.data.PluginInstanceData.previous_id", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.previous_id", "kind": "variable", "doc": "

FS plugins will not produce a previous_id value\n(even though they will return \"previous\": null)

\n", "annotation": ": Optional[int]", "default_value": " = None"}, "aiochris.models.data.PluginInstanceData.size": {"fullname": "aiochris.models.data.PluginInstanceData.size", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.size", "kind": "variable", "doc": "

IDK what it is the size of.

\n\n

This field shows up when the plugin instance is maybe done,\nbut not when the plugin instance is created.

\n", "annotation": ": Optional[int]", "default_value": " = None"}, "aiochris.models.data.PluginInstanceData.template": {"fullname": "aiochris.models.data.PluginInstanceData.template", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.template", "kind": "variable", "doc": "

Present only when getting a plugin instance.

\n", "annotation": ": Optional[dict]", "default_value": " = None"}, "aiochris.models.data.FeedData": {"fullname": "aiochris.models.data.FeedData", "modulename": "aiochris.models.data", "qualname": "FeedData", "kind": "class", "doc": "

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.data.FeedData.__init__": {"fullname": "aiochris.models.data.FeedData.__init__", "modulename": "aiochris.models.data", "qualname": "FeedData.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.FeedId,\tcreation_date: datetime.datetime,\tmodification_date: datetime.datetime,\tname: str,\tcreator_username: aiochris.types.Username,\tcreated_jobs: int,\twaiting_jobs: int,\tscheduled_jobs: int,\tstarted_jobs: int,\tregistering_jobs: int,\tfinished_jobs: int,\terrored_jobs: int,\tcancelled_jobs: int,\towner: list[aiochris.types.UserUrl],\tnote: aiochris.types.NoteUrl,\ttags: aiochris.types.TagsUrl,\ttaggings: aiochris.types.TaggingsUrl,\tcomments: aiochris.types.CommentsUrl,\tfiles: aiochris.types.FilesUrl,\tplugin_instances: aiochris.types.PluginInstancesUrl)"}, "aiochris.models.data.FeedNoteData": {"fullname": "aiochris.models.data.FeedNoteData", "modulename": "aiochris.models.data", "qualname": "FeedNoteData", "kind": "class", "doc": "

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.data.FeedNoteData.__init__": {"fullname": "aiochris.models.data.FeedNoteData.__init__", "modulename": "aiochris.models.data", "qualname": "FeedNoteData.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.NoteId,\ttitle: str,\tcontent: str,\tfeed: aiochris.types.FeedUrl)"}, "aiochris.models.logged_in": {"fullname": "aiochris.models.logged_in", "modulename": "aiochris.models.logged_in", "kind": "module", "doc": "

Subclasses of classes from aiochris.models.data which are returned\nfrom an aiochris.client.authed.AuthenticatedClient.\nThese classes may have read-write functionality on the ChRIS API.

\n"}, "aiochris.models.logged_in.User": {"fullname": "aiochris.models.logged_in.User", "modulename": "aiochris.models.logged_in", "qualname": "User", "kind": "class", "doc": "

\n", "bases": "aiochris.models.data.UserData, aiochris.link.linked.LinkedModel"}, "aiochris.models.logged_in.User.__init__": {"fullname": "aiochris.models.logged_in.User.__init__", "modulename": "aiochris.models.logged_in", "qualname": "User.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.UserUrl,\tid: aiochris.types.UserId,\tusername: aiochris.types.Username,\temail: str)"}, "aiochris.models.logged_in.File": {"fullname": "aiochris.models.logged_in.File", "modulename": "aiochris.models.logged_in", "qualname": "File", "kind": "class", "doc": "

A file in CUBE.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.logged_in.File.__init__": {"fullname": "aiochris.models.logged_in.File.__init__", "modulename": "aiochris.models.logged_in", "qualname": "File.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: str,\tfname: aiochris.types.FileFname,\tfsize: int,\tfile_resource: aiochris.types.FileResourceUrl)"}, "aiochris.models.logged_in.File.parent": {"fullname": "aiochris.models.logged_in.File.parent", "modulename": "aiochris.models.logged_in", "qualname": "File.parent", "kind": "variable", "doc": "

Get the parent (directory) of a file.

\n\n
Examples
\n\n
\n
assert file.fname == 'chris/feed_4/pl-dircopy_7/data/hello-world.txt'\nassert file.parent == 'chris/feed_4/pl-dircopy_7/data'\n
\n
\n", "annotation": ": str"}, "aiochris.models.logged_in.PACSFile": {"fullname": "aiochris.models.logged_in.PACSFile", "modulename": "aiochris.models.logged_in", "qualname": "PACSFile", "kind": "class", "doc": "

A file from a PACS server which was pushed into ChRIS.\nA PACSFile is usually a DICOM file.

\n\n

See https://github.com/FNNDSC/ChRIS_ultron_backEnd/blob/a1bf499144df79622eb3f8a459cdb80d8e34cb04/chris_backend/pacsfiles/models.py#L16-L33

\n", "bases": "File"}, "aiochris.models.logged_in.PACSFile.__init__": {"fullname": "aiochris.models.logged_in.PACSFile.__init__", "modulename": "aiochris.models.logged_in", "qualname": "PACSFile.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: str,\tfname: aiochris.types.FileFname,\tfsize: int,\tfile_resource: aiochris.types.FileResourceUrl,\tPatientID: str,\tPatientName: str,\tPatientBirthDate: str,\tPatientAge: int,\tPatientSex: str,\tStudyDate: str,\tAccessionNumber: str,\tModality: str,\tProtocolName: str,\tStudyInstanceUID: str,\tStudyDescription: str,\tSeriesInstanceUID: str,\tSeriesDescription: str,\tpacs_identifier: str)"}, "aiochris.models.logged_in.PluginInstance": {"fullname": "aiochris.models.logged_in.PluginInstance", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance", "kind": "class", "doc": "

\n", "bases": "aiochris.models.data.PluginInstanceData"}, "aiochris.models.logged_in.PluginInstance.__init__": {"fullname": "aiochris.models.logged_in.PluginInstance.__init__", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginInstanceUrl,\tid: aiochris.types.PluginInstanceId,\ttitle: str,\tcompute_resource_name: aiochris.types.ComputeResourceName,\tplugin_id: aiochris.types.PluginId,\tplugin_name: aiochris.types.PluginName,\tplugin_version: aiochris.types.PluginVersion,\tplugin_type: aiochris.enums.PluginType,\tpipeline_inst: Optional[int],\tfeed_id: aiochris.types.FeedId,\tstart_date: datetime.datetime,\tend_date: datetime.datetime,\toutput_path: aiochris.types.CubeFilePath,\tstatus: aiochris.enums.Status,\tsummary: str,\traw: str,\towner_username: aiochris.types.Username,\tcpu_limit: int,\tmemory_limit: int,\tnumber_of_workers: int,\tgpu_limit: int,\terror_code: aiochris.types.CUBEErrorCode,\tprevious: Optional[aiochris.types.PluginInstanceUrl],\tfeed: aiochris.types.FeedUrl,\tplugin: aiochris.types.PluginUrl,\tdescendants: aiochris.types.DescendantsUrl,\tfiles: aiochris.types.FilesUrl,\tparameters: aiochris.types.PluginInstanceParametersUrl,\tcompute_resource: aiochris.types.ComputeResourceUrl,\tsplits: aiochris.types.SplitsUrl,\tprevious_id: Optional[int] = None,\tsize: Optional[int] = None,\ttemplate: Optional[dict] = None)"}, "aiochris.models.logged_in.PluginInstance.get_feed": {"fullname": "aiochris.models.logged_in.PluginInstance.get_feed", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.get_feed", "kind": "function", "doc": "

Get the feed this plugin instance belongs to.

\n", "signature": "(self) -> aiochris.models.logged_in.Feed:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.get": {"fullname": "aiochris.models.logged_in.PluginInstance.get", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.get", "kind": "function", "doc": "

Get this plugin's state (again).

\n", "signature": "(self) -> aiochris.models.logged_in.PluginInstance:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.set": {"fullname": "aiochris.models.logged_in.PluginInstance.set", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.set", "kind": "function", "doc": "

Set the title or status of this plugin instance.

\n", "signature": "(\tself,\ttitle: Optional[str] = None,\tstatus: Optional[str] = None) -> aiochris.models.logged_in.PluginInstance:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.delete": {"fullname": "aiochris.models.logged_in.PluginInstance.delete", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.delete", "kind": "function", "doc": "

Delete this plugin instance.

\n", "signature": "(self) -> None:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.wait": {"fullname": "aiochris.models.logged_in.PluginInstance.wait", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.wait", "kind": "function", "doc": "

Wait until this plugin instance finishes (or some other desired status).

\n\n
Parameters
\n\n\n\n
Returns
\n\n\n", "signature": "(\tself,\tstatus: Union[aiochris.enums.Status, Sequence[aiochris.enums.Status]] = (<Status.finishedSuccessfully: 'finishedSuccessfully'>, <Status.finishedWithError: 'finishedWithError'>, <Status.cancelled: 'cancelled'>),\ttimeout: float = 300,\tinterval: float = 5) -> tuple[float, aiochris.models.logged_in.PluginInstance]:", "funcdef": "async def"}, "aiochris.models.logged_in.FeedNote": {"fullname": "aiochris.models.logged_in.FeedNote", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote", "kind": "class", "doc": "

\n", "bases": "aiochris.models.data.FeedNoteData"}, "aiochris.models.logged_in.FeedNote.__init__": {"fullname": "aiochris.models.logged_in.FeedNote.__init__", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.NoteId,\ttitle: str,\tcontent: str,\tfeed: aiochris.types.FeedUrl)"}, "aiochris.models.logged_in.FeedNote.get_feed": {"fullname": "aiochris.models.logged_in.FeedNote.get_feed", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote.get_feed", "kind": "function", "doc": "

Get the feed this note belongs to.

\n", "signature": "(self) -> aiochris.models.logged_in.Feed:", "funcdef": "async def"}, "aiochris.models.logged_in.FeedNote.set": {"fullname": "aiochris.models.logged_in.FeedNote.set", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote.set", "kind": "function", "doc": "

Change this note.

\n", "signature": "(\tself,\ttitle: Optional[str] = None,\tcontent: Optional[str] = None) -> aiochris.models.logged_in.FeedNote:", "funcdef": "async def"}, "aiochris.models.logged_in.Feed": {"fullname": "aiochris.models.logged_in.Feed", "modulename": "aiochris.models.logged_in", "qualname": "Feed", "kind": "class", "doc": "

A feed of a logged in user.

\n", "bases": "aiochris.models.data.FeedData"}, "aiochris.models.logged_in.Feed.__init__": {"fullname": "aiochris.models.logged_in.Feed.__init__", "modulename": "aiochris.models.logged_in", "qualname": "Feed.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.FeedId,\tcreation_date: datetime.datetime,\tmodification_date: datetime.datetime,\tname: str,\tcreator_username: aiochris.types.Username,\tcreated_jobs: int,\twaiting_jobs: int,\tscheduled_jobs: int,\tstarted_jobs: int,\tregistering_jobs: int,\tfinished_jobs: int,\terrored_jobs: int,\tcancelled_jobs: int,\towner: list[aiochris.types.UserUrl],\tnote: aiochris.types.NoteUrl,\ttags: aiochris.types.TagsUrl,\ttaggings: aiochris.types.TaggingsUrl,\tcomments: aiochris.types.CommentsUrl,\tfiles: aiochris.types.FilesUrl,\tplugin_instances: aiochris.types.PluginInstancesUrl)"}, "aiochris.models.logged_in.Feed.set": {"fullname": "aiochris.models.logged_in.Feed.set", "modulename": "aiochris.models.logged_in", "qualname": "Feed.set", "kind": "function", "doc": "

Change the name or the owner of this feed.

\n\n
Parameters
\n\n\n", "signature": "(\tself,\tname: Optional[str] = None,\towner: Union[str, aiochris.types.Username, NoneType] = None) -> aiochris.models.logged_in.Feed:", "funcdef": "async def"}, "aiochris.models.logged_in.Feed.get_note": {"fullname": "aiochris.models.logged_in.Feed.get_note", "modulename": "aiochris.models.logged_in", "qualname": "Feed.get_note", "kind": "function", "doc": "

\n", "signature": "(self) -> aiochris.models.logged_in.FeedNote:", "funcdef": "async def"}, "aiochris.models.logged_in.Plugin": {"fullname": "aiochris.models.logged_in.Plugin", "modulename": "aiochris.models.logged_in", "qualname": "Plugin", "kind": "class", "doc": "

A ChRIS plugin. Create a plugin instance of this plugin to run it.

\n", "bases": "aiochris.models.public.PublicPlugin"}, "aiochris.models.logged_in.Plugin.__init__": {"fullname": "aiochris.models.logged_in.Plugin.__init__", "modulename": "aiochris.models.logged_in", "qualname": "Plugin.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginUrl,\tid: aiochris.types.PluginId,\tname: aiochris.types.PluginName,\tversion: aiochris.types.PluginVersion,\tdock_image: aiochris.types.ImageTag,\tpublic_repo: str,\tcompute_resources: aiochris.types.ComputeResourceUrl,\tparameters: aiochris.types.PluginParametersUrl,\tplugin_type: aiochris.enums.PluginType,\tinstances: aiochris.types.ApiUrl)"}, "aiochris.models.logged_in.Plugin.create_instance": {"fullname": "aiochris.models.logged_in.Plugin.create_instance", "modulename": "aiochris.models.logged_in", "qualname": "Plugin.create_instance", "kind": "function", "doc": "

Create a plugin instance, i.e. \"run\" this plugin.

\n\n

Parameters common to all plugins are described below.\nNot all valid parameters are listed, since each plugin's parameters are different.\nSome plugins have required parameters too.\nTo list all possible parameters, make a GET request to the specific plugin's instances link.

\n\n
Parameters
\n\n\n", "signature": "(\tself,\tprevious: Optional[aiochris.models.logged_in.PluginInstance] = None,\t**kwargs) -> aiochris.models.logged_in.PluginInstance:", "funcdef": "async def"}, "aiochris.models.public": {"fullname": "aiochris.models.public", "modulename": "aiochris.models.public", "kind": "module", "doc": "

Read-only models for CUBE resources.

\n"}, "aiochris.models.public.ComputeResource": {"fullname": "aiochris.models.public.ComputeResource", "modulename": "aiochris.models.public", "qualname": "ComputeResource", "kind": "class", "doc": "

\n"}, "aiochris.models.public.ComputeResource.__init__": {"fullname": "aiochris.models.public.ComputeResource.__init__", "modulename": "aiochris.models.public", "qualname": "ComputeResource.__init__", "kind": "function", "doc": "

\n", "signature": "(\turl: aiochris.types.ApiUrl,\tid: aiochris.types.ComputeResourceId,\tcreation_date: str,\tmodification_date: str,\tname: aiochris.types.ComputeResourceName,\tcompute_url: aiochris.types.PfconUrl,\tcompute_auth_url: str,\tdescription: str,\tmax_job_exec_seconds: int)"}, "aiochris.models.public.PluginParameter": {"fullname": "aiochris.models.public.PluginParameter", "modulename": "aiochris.models.public", "qualname": "PluginParameter", "kind": "class", "doc": "

Information about a parameter (a command-line option/flag) of a plugin.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.public.PluginParameter.__init__": {"fullname": "aiochris.models.public.PluginParameter.__init__", "modulename": "aiochris.models.public", "qualname": "PluginParameter.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginParameterUrl,\tid: aiochris.types.ParameterGlobalId,\tname: aiochris.types.ParameterName,\ttype: Union[str, int, float, bool],\toptional: bool,\tdefault: Union[str, int, float, bool, NoneType],\tflag: str,\tshort_flag: str,\taction: Literal['store', 'store_true', 'store_false'],\thelp: str,\tui_exposed: bool,\tplugin: aiochris.types.PluginUrl)"}, "aiochris.models.public.PublicPlugin": {"fullname": "aiochris.models.public.PublicPlugin", "modulename": "aiochris.models.public", "qualname": "PublicPlugin", "kind": "class", "doc": "

A ChRIS plugin.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.public.PublicPlugin.__init__": {"fullname": "aiochris.models.public.PublicPlugin.__init__", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginUrl,\tid: aiochris.types.PluginId,\tname: aiochris.types.PluginName,\tversion: aiochris.types.PluginVersion,\tdock_image: aiochris.types.ImageTag,\tpublic_repo: str,\tcompute_resources: aiochris.types.ComputeResourceUrl,\tparameters: aiochris.types.PluginParametersUrl,\tplugin_type: aiochris.enums.PluginType)"}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"fullname": "aiochris.models.public.PublicPlugin.get_compute_resources", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.get_compute_resources", "kind": "function", "doc": "

Get the compute resources this plugin is registered to.

\n", "signature": "(\tself) -> aiochris.util.search.Search[aiochris.models.public.ComputeResource]:", "funcdef": "def"}, "aiochris.models.public.PublicPlugin.get_parameters": {"fullname": "aiochris.models.public.PublicPlugin.get_parameters", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.get_parameters", "kind": "function", "doc": "

Get the parameters of this plugin.

\n", "signature": "(\tself) -> aiochris.util.search.Search[aiochris.models.public.PluginParameter]:", "funcdef": "def"}, "aiochris.models.public.PublicPlugin.print_help": {"fullname": "aiochris.models.public.PublicPlugin.print_help", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.print_help", "kind": "function", "doc": "

Display the help messages for this plugin's parameters.

\n", "signature": "(self, out: <class 'TextIO'> = <_io.StringIO object>) -> None:", "funcdef": "async def"}, "aiochris.types": {"fullname": "aiochris.types", "modulename": "aiochris.types", "kind": "module", "doc": "

NewTypes for ChRIS models.

\n"}, "aiochris.types.Username": {"fullname": "aiochris.types.Username", "modulename": "aiochris.types", "qualname": "Username", "kind": "variable", "doc": "

ChRIS user account username

\n", "default_value": " = aiochris.types.Username"}, "aiochris.types.Password": {"fullname": "aiochris.types.Password", "modulename": "aiochris.types", "qualname": "Password", "kind": "variable", "doc": "

ChRIS user account password

\n", "default_value": " = aiochris.types.Password"}, "aiochris.types.ChrisURL": {"fullname": "aiochris.types.ChrisURL", "modulename": "aiochris.types", "qualname": "ChrisURL", "kind": "variable", "doc": "

ChRIS backend API base URL

\n", "default_value": " = aiochris.types.ChrisURL"}, "aiochris.types.ApiUrl": {"fullname": "aiochris.types.ApiUrl", "modulename": "aiochris.types", "qualname": "ApiUrl", "kind": "variable", "doc": "

Any CUBE URL which I am too lazy to be more specific about.

\n", "default_value": " = aiochris.types.ApiUrl"}, "aiochris.types.ResourceId": {"fullname": "aiochris.types.ResourceId", "modulename": "aiochris.types", "qualname": "ResourceId", "kind": "variable", "doc": "

ID number which I am too lazy to be more specific about.

\n", "default_value": " = aiochris.types.ResourceId"}, "aiochris.types.PluginName": {"fullname": "aiochris.types.PluginName", "modulename": "aiochris.types", "qualname": "PluginName", "kind": "variable", "doc": "

Name of a ChRIS plugin

\n", "default_value": " = aiochris.types.PluginName"}, "aiochris.types.ImageTag": {"fullname": "aiochris.types.ImageTag", "modulename": "aiochris.types", "qualname": "ImageTag", "kind": "variable", "doc": "

OCI image tag (informally, a Docker Image name)

\n", "default_value": " = aiochris.types.ImageTag"}, "aiochris.types.PluginVersion": {"fullname": "aiochris.types.PluginVersion", "modulename": "aiochris.types", "qualname": "PluginVersion", "kind": "variable", "doc": "

Version string of a ChRIS plugin

\n", "default_value": " = aiochris.types.PluginVersion"}, "aiochris.types.PluginUrl": {"fullname": "aiochris.types.PluginUrl", "modulename": "aiochris.types", "qualname": "PluginUrl", "kind": "variable", "doc": "

URL of a ChRIS plugin.

\n\n

Examples

\n\n\n", "default_value": " = aiochris.types.PluginUrl"}, "aiochris.types.AdminUrl": {"fullname": "aiochris.types.AdminUrl", "modulename": "aiochris.types", "qualname": "AdminUrl", "kind": "variable", "doc": "

A admin resource URL ending with /chris-admin/api/v1/

\n", "default_value": " = aiochris.types.AdminUrl"}, "aiochris.types.NoteId": {"fullname": "aiochris.types.NoteId", "modulename": "aiochris.types", "qualname": "NoteId", "kind": "variable", "doc": "

A feed note's ID number.

\n", "default_value": " = aiochris.types.NoteId"}, "aiochris.types.NoteUrl": {"fullname": "aiochris.types.NoteUrl", "modulename": "aiochris.types", "qualname": "NoteUrl", "kind": "variable", "doc": "

A feed's note URL.

\n\n

Examples

\n\n\n", "default_value": " = aiochris.types.NoteUrl"}, "aiochris.util": {"fullname": "aiochris.util", "modulename": "aiochris.util", "kind": "module", "doc": "

\n"}, "aiochris.util.search": {"fullname": "aiochris.util.search", "modulename": "aiochris.util.search", "kind": "module", "doc": "

\n"}, "aiochris.util.search.Search": {"fullname": "aiochris.util.search.Search", "modulename": "aiochris.util.search", "qualname": "Search", "kind": "class", "doc": "

Abstraction over paginated collection responses from CUBE.\nSearch objects are returned by methods for search endpoints of the CUBE API.\nIt is an asynchronous iterable\nwhich produces items from responses that return multiple results.\nHTTP requests are fired as-neede, they happen in the background during iteration.\nNo request is made before the first time a Search object is called.

\n\n
\n\n
Pagination is handled internally and automatically.
\n\n

The query parameters limit and offset can be explicitly given, but they shouldn't.

\n\n
\n\n
Examples
\n\n

Use an async for loop to print the name of every feed:

\n\n
\n
all_feeds = chris.search_feeds()  # returns a Search[Feed]\nasync for feed in all_feeds:\n    print(feed.name)\n
\n
\n", "bases": "typing.Generic[~T], typing.AsyncIterable[~T]"}, "aiochris.util.search.Search.__init__": {"fullname": "aiochris.util.search.Search.__init__", "modulename": "aiochris.util.search", "qualname": "Search.__init__", "kind": "function", "doc": "

\n", "signature": "(\tbase_url: str,\tparams: dict[str, typing.Any],\tclient: aiochris.link.linked.Linked,\tItem: Type[~T],\tmax_requests: int = 100,\tsubpath: str = 'search/')"}, "aiochris.util.search.Search.first": {"fullname": "aiochris.util.search.Search.first", "modulename": "aiochris.util.search", "qualname": "Search.first", "kind": "function", "doc": "

Get the first item.

\n\n
See also
\n\n

get_only : similar use, but more strict

\n", "signature": "(self) -> Optional[~T]:", "funcdef": "async def"}, "aiochris.util.search.Search.get_only": {"fullname": "aiochris.util.search.Search.get_only", "modulename": "aiochris.util.search", "qualname": "Search.get_only", "kind": "function", "doc": "

Get the only item from a search with one result.

\n\n
Examples
\n\n

This method is very commonly used for getting \"one thing\" from CUBE.

\n\n
\n
await chris.search_plugins(name_exact="pl-dircopy", version="2.1.1").get_only()\n
\n
\n\n

In the example above, a search for plugins given (name_exact, version)\nis guaranteed to return either 0 or 1 result.

\n\n
Raises
\n\n\n\n
See also
\n\n

first : does the same thing but without checks.

\n\n
Parameters
\n\n\n", "signature": "(self, allow_multiple=False) -> ~T:", "funcdef": "async def"}, "aiochris.util.search.Search.count": {"fullname": "aiochris.util.search.Search.count", "modulename": "aiochris.util.search", "qualname": "Search.count", "kind": "function", "doc": "

Get the number of items in this collection search.

\n\n
Examples
\n\n

count is useful for rendering a progress bar. TODO example with files

\n", "signature": "(self) -> int:", "funcdef": "async def"}, "aiochris.util.search.acollect": {"fullname": "aiochris.util.search.acollect", "modulename": "aiochris.util.search", "qualname": "acollect", "kind": "function", "doc": "

Simple helper to convert a Search to a list.

\n\n

Using this function is not recommended unless you can assume the collection is small.

\n", "signature": "(async_iterable: AsyncIterable[~T]) -> list[~T]:", "funcdef": "async def"}, "aiochris.util.search.TooMuchPaginationError": {"fullname": "aiochris.util.search.TooMuchPaginationError", "modulename": "aiochris.util.search", "qualname": "TooMuchPaginationError", "kind": "class", "doc": "

Specified maximum number of requests exceeded while retrieving results from a paginated resource.

\n", "bases": "aiochris.errors.BaseClientError"}, "aiochris.util.search.GetOnlyError": {"fullname": "aiochris.util.search.GetOnlyError", "modulename": "aiochris.util.search", "qualname": "GetOnlyError", "kind": "class", "doc": "

Search does not have exactly one result.

\n", "bases": "aiochris.errors.BaseClientError"}, "aiochris.util.search.NoneSearchError": {"fullname": "aiochris.util.search.NoneSearchError", "modulename": "aiochris.util.search", "qualname": "NoneSearchError", "kind": "class", "doc": "

A search expected to have at least one element, has none.

\n", "bases": "GetOnlyError"}, "aiochris.util.search.ManySearchError": {"fullname": "aiochris.util.search.ManySearchError", "modulename": "aiochris.util.search", "qualname": "ManySearchError", "kind": "class", "doc": "

A search expected to have only one result, has several.

\n", "bases": "GetOnlyError"}}, "docInfo": {"aiochris": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 2652}, "aiochris.AnonChrisClient": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.AnonChrisClient.from_url": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 21}, "aiochris.AnonChrisClient.search_plugins": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 24}, "aiochris.ChrisClient": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 18}, "aiochris.ChrisClient.create_user": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 3}, "aiochris.ChrisAdminClient": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 10}, "aiochris.ChrisAdminClient.add_plugin": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 509}, "aiochris.ChrisAdminClient.create_compute_resource": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 200, "bases": 0, "doc": 8}, "aiochris.Search": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 197}, "aiochris.Search.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 3}, "aiochris.Search.first": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 23}, "aiochris.Search.get_only": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 224}, "aiochris.Search.count": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 31}, "aiochris.acollect": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 35}, "aiochris.Status": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "aiochris.Status.created": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.waiting": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.scheduled": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.started": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.registeringFiles": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.finishedSuccessfully": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.finishedWithError": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.cancelled": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "aiochris.ParameterTypeName.string": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName.integer": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName.float": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName.boolean": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.admin": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.admin.ChrisAdminClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 10}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 509}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 200, "bases": 0, "doc": 8}, "aiochris.client.anon": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.anon.AnonChrisClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.client.anon.AnonChrisClient.from_url": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 21}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 24}, "aiochris.client.authed": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.authed.AuthenticatedClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 7}, "aiochris.client.authed.AuthenticatedClient.from_login": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 189, "bases": 0, "doc": 28}, "aiochris.client.authed.AuthenticatedClient.from_token": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 25}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 226, "bases": 0, "doc": 274}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 6}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 6}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 7}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 381}, "aiochris.client.authed.AuthenticatedClient.user": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 8}, "aiochris.client.authed.AuthenticatedClient.username": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 21}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 21}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 35, "bases": 0, "doc": 42}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 7}, "aiochris.client.base": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.base.BaseChrisClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 26}, "aiochris.client.base.BaseChrisClient.new": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 146, "bases": 0, "doc": 182}, "aiochris.client.base.BaseChrisClient.close": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "aiochris.client.base.BaseChrisClient.search_plugins": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 6}, "aiochris.client.from_chrs": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "aiochris.client.from_chrs.StoredToken": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "aiochris.client.from_chrs.StoredToken.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogin": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogin.token": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 17}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 21}, "aiochris.client.from_chrs.ChrsLogins": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "aiochris.client.from_chrs.ChrsLogins.load": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 8}, "aiochris.client.from_chrs.ChrsKeyringError": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 7}, "aiochris.client.normal": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.normal.ChrisClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 18}, "aiochris.client.normal.ChrisClient.create_user": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 3}, "aiochris.errors": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.errors.raise_for_status": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 6}, "aiochris.errors.BaseClientError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "aiochris.errors.ResponseError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.BadRequestError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.InternalServerError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.IncorrectLoginError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.NonsenseResponseError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.models": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.collection_links": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 302, "bases": 0, "doc": 3}, "aiochris.models.collection_links.CollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.CollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 323, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AdminCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 344, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "aiochris.models.data": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 38}, "aiochris.models.data.UserData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "aiochris.models.data.UserData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 3}, "aiochris.models.data.PluginInstanceData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 31}, "aiochris.models.data.PluginInstanceData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 682, "bases": 0, "doc": 3}, "aiochris.models.data.PluginInstanceData.previous_id": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 25}, "aiochris.models.data.PluginInstanceData.size": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 32}, "aiochris.models.data.PluginInstanceData.template": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 10}, "aiochris.models.data.FeedData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.data.FeedData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 397, "bases": 0, "doc": 3}, "aiochris.models.data.FeedNoteData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.data.FeedNoteData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 3}, "aiochris.models.logged_in": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "aiochris.models.logged_in.User": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 3}, "aiochris.models.logged_in.User.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "aiochris.models.logged_in.File": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 7}, "aiochris.models.logged_in.File.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 103, "bases": 0, "doc": 3}, "aiochris.models.logged_in.File.parent": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 76}, "aiochris.models.logged_in.PACSFile": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 33}, "aiochris.models.logged_in.PACSFile.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 258, "bases": 0, "doc": 3}, "aiochris.models.logged_in.PluginInstance": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.logged_in.PluginInstance.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 682, "bases": 0, "doc": 3}, "aiochris.models.logged_in.PluginInstance.get_feed": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 11}, "aiochris.models.logged_in.PluginInstance.get": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 9}, "aiochris.models.logged_in.PluginInstance.set": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 12}, "aiochris.models.logged_in.PluginInstance.delete": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "aiochris.models.logged_in.PluginInstance.wait": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 217, "bases": 0, "doc": 126}, "aiochris.models.logged_in.FeedNote": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.logged_in.FeedNote.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 3}, "aiochris.models.logged_in.FeedNote.get_feed": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 10}, "aiochris.models.logged_in.FeedNote.set": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 6}, "aiochris.models.logged_in.Feed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 10}, "aiochris.models.logged_in.Feed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 397, "bases": 0, "doc": 3}, "aiochris.models.logged_in.Feed.set": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 39}, "aiochris.models.logged_in.Feed.get_note": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 3}, "aiochris.models.logged_in.Plugin": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 16}, "aiochris.models.logged_in.Plugin.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 242, "bases": 0, "doc": 3}, "aiochris.models.logged_in.Plugin.create_instance": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 173}, "aiochris.models.public": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "aiochris.models.public.ComputeResource": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.public.ComputeResource.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "aiochris.models.public.PluginParameter": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "aiochris.models.public.PluginParameter.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 298, "bases": 0, "doc": 3}, "aiochris.models.public.PublicPlugin": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 6}, "aiochris.models.public.PublicPlugin.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 221, "bases": 0, "doc": 3}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 12}, "aiochris.models.public.PublicPlugin.get_parameters": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 9}, "aiochris.models.public.PublicPlugin.print_help": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "aiochris.types": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "aiochris.types.Username": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 6}, "aiochris.types.Password": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 6}, "aiochris.types.ChrisURL": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 7}, "aiochris.types.ApiUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 16}, "aiochris.types.ResourceId": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 15}, "aiochris.types.PluginName": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 7}, "aiochris.types.ImageTag": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 11}, "aiochris.types.PluginVersion": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 8}, "aiochris.types.PluginUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 28}, "aiochris.types.AdminUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 12}, "aiochris.types.NoteId": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 9}, "aiochris.types.NoteUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 22}, "aiochris.util": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.util.search": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.util.search.Search": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 197}, "aiochris.util.search.Search.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 3}, "aiochris.util.search.Search.first": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 23}, "aiochris.util.search.Search.get_only": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 224}, "aiochris.util.search.Search.count": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 31}, "aiochris.util.search.acollect": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 35}, "aiochris.util.search.TooMuchPaginationError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 16}, "aiochris.util.search.GetOnlyError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "aiochris.util.search.NoneSearchError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 14}, "aiochris.util.search.ManySearchError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}}, "length": 171, "save": true}, "index": {"qualname": {"root": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 6}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "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": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Status.finishedSuccessfully": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Status.finishedWithError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ParameterTypeName.float": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.types.Username": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 17}}}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 10}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.started": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.scheduled": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginName": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris.types.PluginVersion": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ParameterTypeName": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.Password": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 8}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ChrisURL": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 5}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "d": {"docs": {"aiochris.Status.created": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 5, "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": {"aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.cancelled": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.registeringFiles": {"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": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.ResourceId": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.ResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ParameterTypeName.integer": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.InternalServerError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}}, "df": 1}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 11, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Status.waiting": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BaseClientError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"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": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BadRequestError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.NoteId": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"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": {"aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "fullname": {"root": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.Status": {"tf": 1}, "aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}, "aiochris.client": {"tf": 1}, "aiochris.client.admin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.client.normal": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models": {"tf": 1}, "aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util": {"tf": 1}, "aiochris.util.search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 171}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.anon": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 6}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.admin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 14}, "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": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 21}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Status.finishedSuccessfully": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Status.finishedWithError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ParameterTypeName.float": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.types.Username": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.util": {"tf": 1}, "aiochris.util.search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 12}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.util.search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.first": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1.4142135623730951}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 23}}}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 10}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.started": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.scheduled": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginName": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris.types.PluginVersion": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ParameterTypeName": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.Password": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.models.public": {"tf": 1}, "aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 10, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 8}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ChrisURL": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 15, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 5}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "d": {"docs": {"aiochris.Status.created": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 5, "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": {"aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 13, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.cancelled": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client": {"tf": 1}, "aiochris.client.admin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.client.normal": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 46}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.registeringFiles": {"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": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.ResourceId": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.ResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 26, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ParameterTypeName.integer": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.InternalServerError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}}, "df": 1}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 11, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Status.waiting": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BaseClientError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"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": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BadRequestError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 26}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 13}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 13}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.normal": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.NoteId": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.errors": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 8}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models": {"tf": 1}, "aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 62}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}}, "df": 1}}}}}}}}, "annotation": {"root": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"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": {}, "df": 0, "[": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}}, "default_value": {"root": {"docs": {"aiochris.Status.created": {"tf": 1.4142135623730951}, "aiochris.Status.waiting": {"tf": 1.4142135623730951}, "aiochris.Status.scheduled": {"tf": 1.4142135623730951}, "aiochris.Status.started": {"tf": 1.4142135623730951}, "aiochris.Status.registeringFiles": {"tf": 1.4142135623730951}, "aiochris.Status.finishedSuccessfully": {"tf": 1.4142135623730951}, "aiochris.Status.finishedWithError": {"tf": 1.4142135623730951}, "aiochris.Status.cancelled": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.string": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.integer": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.float": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.boolean": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 27, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 12}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.started": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.scheduled": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.created": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.cancelled": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ChrisURL": {"tf": 1}}, "df": 1}}}}}}}}, "x": {"2": {"7": {"docs": {"aiochris.Status.created": {"tf": 1.4142135623730951}, "aiochris.Status.waiting": {"tf": 1.4142135623730951}, "aiochris.Status.scheduled": {"tf": 1.4142135623730951}, "aiochris.Status.started": {"tf": 1.4142135623730951}, "aiochris.Status.registeringFiles": {"tf": 1.4142135623730951}, "aiochris.Status.finishedSuccessfully": {"tf": 1.4142135623730951}, "aiochris.Status.finishedWithError": {"tf": 1.4142135623730951}, "aiochris.Status.cancelled": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.string": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.integer": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.float": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.boolean": {"tf": 1.4142135623730951}}, "df": 12}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "g": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 12}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Status.waiting": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.registeringFiles": {"tf": 1.4142135623730951}}, "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, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.ResourceId": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Status.finishedSuccessfully": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Status.finishedWithError": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ParameterTypeName.float": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.Password": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginName": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris.types.PluginVersion": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ParameterTypeName.integer": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ParameterTypeName.boolean": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.NoteId": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 12}}}}}, "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": {"aiochris.types.Username": {"tf": 1}}, "df": 1}}}}}}}}}}, "signature": {"root": {"1": {"0": {"0": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"0": {"0": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"aiochris.Search.__init__": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 2}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.449489742783178}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2.449489742783178}, "aiochris.util.search.Search.__init__": {"tf": 1.4142135623730951}}, "df": 6}, "docs": {}, "df": 0}, "5": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}, "docs": {"aiochris.AnonChrisClient.from_url": {"tf": 9.591663046625438}, "aiochris.AnonChrisClient.search_plugins": {"tf": 7}, "aiochris.ChrisClient.create_user": {"tf": 11.958260743101398}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 8}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 10.295630140987}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 12.529964086141668}, "aiochris.Search.__init__": {"tf": 10.246950765959598}, "aiochris.Search.first": {"tf": 4.358898943540674}, "aiochris.Search.get_only": {"tf": 4.69041575982343}, "aiochris.Search.count": {"tf": 3.4641016151377544}, "aiochris.acollect": {"tf": 5.477225575051661}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 8}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 10.295630140987}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 12.529964086141668}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 9.591663046625438}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 12.409673645990857}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 10.677078252031311}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 13.527749258468683}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 7.211102550927978}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 4.898979485566356}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 4.47213595499958}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 5.385164807134504}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 7}, "aiochris.client.base.BaseChrisClient.new": {"tf": 10.862780491200215}, "aiochris.client.base.BaseChrisClient.close": {"tf": 3.1622776601683795}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 7}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 6.708203932499369}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 7.681145747868608}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 3.4641016151377544}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 7.54983443527075}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 3.4641016151377544}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 5.385164807134504}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 6}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 10.488088481701515}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 11.958260743101398}, "aiochris.errors.raise_for_status": {"tf": 4.898979485566356}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 2}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 4.47213595499958}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 4.47213595499958}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 15.556349186104045}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 16.09347693943108}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 16.61324772583615}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 4.47213595499958}, "aiochris.models.data.UserData.__init__": {"tf": 8}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 23.194827009486403}, "aiochris.models.data.FeedData.__init__": {"tf": 17.663521732655695}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 9.9498743710662}, "aiochris.models.logged_in.User.__init__": {"tf": 9.486832980505138}, "aiochris.models.logged_in.File.__init__": {"tf": 9.055385138137417}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 14.422205101855956}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 23.194827009486403}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 4.898979485566356}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 4.898979485566356}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 8.06225774829855}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 3.4641016151377544}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 13.152946437965905}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 9.9498743710662}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 4.898979485566356}, "aiochris.models.logged_in.FeedNote.set": {"tf": 8.06225774829855}, "aiochris.models.logged_in.Feed.__init__": {"tf": 17.663521732655695}, "aiochris.models.logged_in.Feed.set": {"tf": 9.1104335791443}, "aiochris.models.logged_in.Feed.get_note": {"tf": 4.898979485566356}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 13.856406460551018}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 8}, "aiochris.models.public.ComputeResource.__init__": {"tf": 10.816653826391969}, "aiochris.models.public.PluginParameter.__init__": {"tf": 15.362291495737216}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 13.228756555322953}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 6.48074069840786}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 6.48074069840786}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 3.872983346207417}, "aiochris.util.search.Search.__init__": {"tf": 10.246950765959598}, "aiochris.util.search.Search.first": {"tf": 4.358898943540674}, "aiochris.util.search.Search.get_only": {"tf": 4.69041575982343}, "aiochris.util.search.Search.count": {"tf": 3.4641016151377544}, "aiochris.util.search.acollect": {"tf": 5.477225575051661}}, "df": 80, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 23, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 15}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}}, "df": 6}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 2.23606797749979}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 2.23606797749979}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 15, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 7, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 9}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 28}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 10}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.4142135623730951}}, "df": 13}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.4142135623730951}, "aiochris.models.data.UserData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.User.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 15}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "i": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 12, "t": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 2}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 2.8284271247461903}, "aiochris.Search.__init__": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 2.8284271247461903}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 2}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1.4142135623730951}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 3.7416573867739413}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 2}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2.23606797749979}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1.7320508075688772}}, "df": 38, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.7320508075688772}}, "df": 5, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.449489742783178}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "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": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 30}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 43}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "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": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 23}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 30}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"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": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "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": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 20}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 8}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 19, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2.8284271247461903}, "aiochris.models.data.FeedData.__init__": {"tf": 3}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2.8284271247461903}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 3}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 23, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}}, "df": 6}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 6}}}}}, "m": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"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": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2.23606797749979}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2.23606797749979}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 20}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 11}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 21}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.ChrisClient.create_user": {"tf": 2}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 2}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 3.872983346207417}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 4}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 4.47213595499958}, "aiochris.models.data.FeedData.__init__": {"tf": 3.1622776601683795}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.User.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 4.47213595499958}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 3.1622776601683795}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 3}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.ComputeResource.__init__": {"tf": 2}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 2.8284271247461903}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 61}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "y": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 6}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2}}, "df": 9}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 2}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 21, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 13, "s": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}}, "df": 8, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 7}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 3.872983346207417}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 4}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 4.242640687119285}, "aiochris.models.data.FeedData.__init__": {"tf": 3.1622776601683795}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.User.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 4.242640687119285}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.__init__": {"tf": 3.1622776601683795}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 2.8284271247461903}, "aiochris.models.public.ComputeResource.__init__": {"tf": 2}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 2.6457513110645907}}, "df": 34}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 3}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 6}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 8}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 13, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 2}, "k": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2.23606797749979}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2.23606797749979}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 15, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 5, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}, "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": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 4}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 5}}}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 2}, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1.4142135623730951}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.4142135623730951}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 2}, "aiochris.models.data.FeedData.__init__": {"tf": 2}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2}, "aiochris.models.logged_in.Feed.__init__": {"tf": 2}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 19}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search.__init__": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1.4142135623730951}}, "df": 2}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 2.8284271247461903}, "aiochris.models.logged_in.Feed.__init__": {"tf": 2.8284271247461903}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 4, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 4}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}}, "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": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 6}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1.4142135623730951}}, "df": 2}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}, "x": {"2": {"7": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "bases": {"root": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 6, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 21}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4}, "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": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1.4142135623730951}}, "df": 2}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 8}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}}, "df": 3}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}}}}}}}, "~": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "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": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}}, "df": 11}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 6}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}}, "df": 7}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.Status": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName": {"tf": 1.4142135623730951}}, "df": 2}}}, "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": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.User": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.FeedNote": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.Feed": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"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, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.PluginInstance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.models.logged_in.Plugin": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in.Plugin": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}, "1": {"0": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "1": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris": {"tf": 2}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 2}}, "df": 4}, "2": {"0": {"0": {"0": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 8}, "3": {"9": {"docs": {"aiochris": {"tf": 7.874007874011811}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 4.898979485566356}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 4.898979485566356}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 3.7416573867739413}, "aiochris.models.logged_in.File.parent": {"tf": 2}}, "df": 5}, "docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}, "4": {"4": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 3}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 1}}}}, "7": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "9": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris": {"tf": 41.12177038990418}, "aiochris.AnonChrisClient": {"tf": 1.7320508075688772}, "aiochris.AnonChrisClient.from_url": {"tf": 2.8284271247461903}, "aiochris.AnonChrisClient.search_plugins": {"tf": 2.449489742783178}, "aiochris.ChrisClient": {"tf": 2.23606797749979}, "aiochris.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient": {"tf": 2.23606797749979}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 17.11724276862369}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 9.327379053088816}, "aiochris.Search.__init__": {"tf": 1.7320508075688772}, "aiochris.Search.first": {"tf": 3.1622776601683795}, "aiochris.Search.get_only": {"tf": 10.535653752852738}, "aiochris.Search.count": {"tf": 3}, "aiochris.acollect": {"tf": 3.4641016151377544}, "aiochris.Status": {"tf": 1.7320508075688772}, "aiochris.Status.created": {"tf": 1.7320508075688772}, "aiochris.Status.waiting": {"tf": 1.7320508075688772}, "aiochris.Status.scheduled": {"tf": 1.7320508075688772}, "aiochris.Status.started": {"tf": 1.7320508075688772}, "aiochris.Status.registeringFiles": {"tf": 1.7320508075688772}, "aiochris.Status.finishedSuccessfully": {"tf": 1.7320508075688772}, "aiochris.Status.finishedWithError": {"tf": 1.7320508075688772}, "aiochris.Status.cancelled": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.string": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.integer": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.float": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.boolean": {"tf": 1.7320508075688772}, "aiochris.client": {"tf": 1.7320508075688772}, "aiochris.client.admin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient": {"tf": 2.23606797749979}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 17.11724276862369}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.client.anon": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 2.8284271247461903}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 2.449489742783178}, "aiochris.client.authed": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 11.445523142259598}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 15.588457268119896}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 3.1622776601683795}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 3.605551275463989}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1.7320508075688772}, "aiochris.client.base": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 7.280109889280518}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs": {"tf": 3.4641016151377544}, "aiochris.client.from_chrs.StoredToken": {"tf": 2}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 3}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 2.23606797749979}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 2.6457513110645907}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 3}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1.7320508075688772}, "aiochris.client.normal": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient": {"tf": 2.23606797749979}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.errors": {"tf": 1.7320508075688772}, "aiochris.errors.raise_for_status": {"tf": 1.7320508075688772}, "aiochris.errors.BaseClientError": {"tf": 1.7320508075688772}, "aiochris.errors.ResponseError": {"tf": 1.7320508075688772}, "aiochris.errors.BadRequestError": {"tf": 1.7320508075688772}, "aiochris.errors.InternalServerError": {"tf": 1.7320508075688772}, "aiochris.errors.IncorrectLoginError": {"tf": 1.7320508075688772}, "aiochris.errors.NonsenseResponseError": {"tf": 1.7320508075688772}, "aiochris.models": {"tf": 1.7320508075688772}, "aiochris.models.collection_links": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data": {"tf": 3.1622776601683795}, "aiochris.models.data.UserData": {"tf": 2.23606797749979}, "aiochris.models.data.UserData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData": {"tf": 2.23606797749979}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 3}, "aiochris.models.data.PluginInstanceData.size": {"tf": 2.449489742783178}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedData": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedNoteData": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in": {"tf": 3}, "aiochris.models.logged_in.User": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.User.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.parent": {"tf": 6.928203230275509}, "aiochris.models.logged_in.PACSFile": {"tf": 2.6457513110645907}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 6.708203932499369}, "aiochris.models.logged_in.FeedNote": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.set": {"tf": 4.123105625617661}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 7.280109889280518}, "aiochris.models.public": {"tf": 1.7320508075688772}, "aiochris.models.public.ComputeResource": {"tf": 1.7320508075688772}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1.7320508075688772}, "aiochris.types": {"tf": 1.7320508075688772}, "aiochris.types.Username": {"tf": 1.4142135623730951}, "aiochris.types.Password": {"tf": 1.4142135623730951}, "aiochris.types.ChrisURL": {"tf": 1.4142135623730951}, "aiochris.types.ApiUrl": {"tf": 1.7320508075688772}, "aiochris.types.ResourceId": {"tf": 1.7320508075688772}, "aiochris.types.PluginName": {"tf": 1.4142135623730951}, "aiochris.types.ImageTag": {"tf": 1.7320508075688772}, "aiochris.types.PluginVersion": {"tf": 1.4142135623730951}, "aiochris.types.PluginUrl": {"tf": 4.123105625617661}, "aiochris.types.AdminUrl": {"tf": 2}, "aiochris.types.NoteId": {"tf": 1.7320508075688772}, "aiochris.types.NoteUrl": {"tf": 3.605551275463989}, "aiochris.util": {"tf": 1.7320508075688772}, "aiochris.util.search": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 9.327379053088816}, "aiochris.util.search.Search.__init__": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.first": {"tf": 3.1622776601683795}, "aiochris.util.search.Search.get_only": {"tf": 10.535653752852738}, "aiochris.util.search.Search.count": {"tf": 3}, "aiochris.util.search.acollect": {"tf": 3.4641016151377544}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1.7320508075688772}, "aiochris.util.search.GetOnlyError": {"tf": 1.7320508075688772}, "aiochris.util.search.NoneSearchError": {"tf": 1.7320508075688772}, "aiochris.util.search.ManySearchError": {"tf": 1.7320508075688772}}, "df": 171, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"1": {"2": {"3": {"4": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris": {"tf": 4.898979485566356}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.types": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 35, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 4.47213595499958}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 3.1622776601683795}, "aiochris.client.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 5}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 3, "s": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 2, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "2": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris": {"tf": 4.47213595499958}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1.4142135623730951}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 20, "s": {"docs": {"aiochris": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 3.7416573867739413}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 9, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}, "d": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 11, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"0": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": null}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "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": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 3.4641016151377544}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 2}}, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 8}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 4}}}, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"5": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}, "docs": {}, "df": 0}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 10, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 15}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 2, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "#": {"docs": {}, "df": 0, "l": {"1": {"6": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.types.Password": {"tf": 1}}, "df": 5}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.449489742783178}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 14}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 1}}, "c": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {"aiochris": {"tf": 3}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 4.69041575982343}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.Status": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}, "aiochris.models.logged_in.Plugin": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.449489742783178}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}}, "df": 30, "s": {"docs": {"aiochris": {"tf": 3.1622776601683795}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 14}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 3, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 2}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.23606797749979}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.models.data": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}, "l": {"2": {"2": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 1}, "4": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"3": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}, "4": {"docs": {"aiochris.client.from_chrs.ChrsLogin": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.449489742783178}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data": {"tf": 1}}, "df": 2}}, "e": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 3.1622776601683795}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 4}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 2.449489742783178}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 8}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1, "m": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "z": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8}, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}}, "df": 2}}}, "w": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 5}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"1": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "f": {"4": {"9": {"9": {"1": {"4": {"4": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"7": {"9": {"6": {"2": {"2": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {}, "df": 0, "f": {"8": {"docs": {}, "df": 0, "a": {"4": {"5": {"9": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"8": {"0": {"docs": {}, "df": 0, "d": {"8": {"docs": {}, "df": 0, "e": {"3": {"4": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "b": {"0": {"4": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"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}}}, "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}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 11}}, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 7}}, "r": {"docs": {"aiochris": {"tf": 2}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 10, "g": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"6": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"4": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}, "docs": {}, "df": 0}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 2}, "f": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.Status": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.23606797749979}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 29, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}}, "df": 3}}}}, "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": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 2}}, "df": 1, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"aiochris": {"tf": 4.358898943540674}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2.8284271247461903}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.Status": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.8284271247461903}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 2}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 2}, "aiochris.models.logged_in.Feed": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PluginParameter": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 49, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 3}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 3.4641016151377544}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 14, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "#": {"7": {"1": {"7": {"4": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}}}}, "s": {"docs": {"aiochris": {"tf": 2}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"aiochris": {"tf": 2}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 4, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "n": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 14, "d": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 16}, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2}}, "df": 1}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 4}}}}}}}, "y": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.types.AdminUrl": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}}, "df": 2}, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 5.5677643628300215}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 6}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "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, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"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": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 7}}, "l": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 14, "o": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "docs": {}, "df": 0}}}, "p": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 4}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}}, "df": 4}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in.PluginInstance.get": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 5}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginUrl": {"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": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 8}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 3}}, "w": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 9}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 2, "a": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2.449489742783178}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.449489742783178}}, "df": 2, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 3, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 2}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2}}, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}, "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": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 4}}}}}}}}}}, "k": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"aiochris": {"tf": 2}}, "df": 1}}}}}, "docs": {}, "df": 0}}, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 5, "n": {"docs": {"aiochris": {"tf": 3.3166247903554}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 22, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.Status": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}}, "df": 11, "s": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 7}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "o": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2}, "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": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"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": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "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": {"aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "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": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.types.ImageTag": {"tf": 1.4142135623730951}}, "df": 4}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "b": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 6}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "s": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 2}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.util.search.Search": {"tf": 2}, "aiochris.util.search.Search.get_only": {"tf": 2}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}}, "df": 23}, "f": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 2}}, "df": 5}, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}}, "df": 5, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "k": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2.6457513110645907}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.6457513110645907}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 11}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 4, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}}}}}}}, "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": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.public": {"tf": 1}}, "df": 6}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 6, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "#": {"docs": {}, "df": 0, "l": {"1": {"8": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "3": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 4, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 13}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}}, "t": {"docs": {"aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data": {"tf": 1}}, "df": 1}}}}}}, "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": {"aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}}}}}, "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, "c": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3}}, "n": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 5}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 4.898979485566356}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 15}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 3.1622776601683795}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PACSFile": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 7}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 7}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.Search": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.7320508075688772}}, "df": 9, "s": {"docs": {"aiochris.Search": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.7320508075688772}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 3.7416573867739413}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 41, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}}}, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "s": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 11, "r": {"1": {"2": {"3": {"4": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris": {"tf": 1}}, "df": 1}, "2": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "4": {"3": {"2": {"1": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}}, "df": 9, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.types.Username": {"tf": 1}}, "df": 6, "}": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}}, "df": 4}, "d": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 9}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 8}}, "p": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 3.1622776601683795}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 4}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 2}, "aiochris.Search.get_only": {"tf": 2.6457513110645907}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.util.search.Search": {"tf": 2}, "aiochris.util.search.Search.get_only": {"tf": 2.6457513110645907}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 27, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}}, "df": 2}, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 13}, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 2}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 5}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 5}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 3}}, "b": {"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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}}, "df": 3, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2}}}, "r": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 4}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}, "c": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 3.3166247903554}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 11, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}, "o": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 14, "e": {"docs": {"aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 7, "e": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "i": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}}, "df": 9, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 9}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris": {"tf": 2.449489742783178}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.first": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 24, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 3}}}, "i": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}}}}}}, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 2.23606797749979}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 2.6457513110645907}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1.4142135623730951}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.7320508075688772}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.23606797749979}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search": {"tf": 2.23606797749979}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 39, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 3}}, "y": {"docs": {"aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 3}, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}}, "df": 1}, "m": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 31}, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"aiochris": {"tf": 3.3166247903554}, "aiochris.AnonChrisClient": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2.23606797749979}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.23606797749979}, "aiochris.client.anon.AnonChrisClient": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 2.6457513110645907}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 30, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 4}}}, "p": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}, "d": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}, "o": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 6}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 5.0990195135927845}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 2}}, "df": 4}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"1": {"0": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"0": {"6": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"0": {"1": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}, "y": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}, "x": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"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": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 8}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.types": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.models.data": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}, "y": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 4}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2}}}, "o": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 3.1622776601683795}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 12, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}}, "df": 1}}}, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 2}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 2}}}}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 10, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}}}}, "x": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.23606797749979}}, "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": {"aiochris": {"fullname": "aiochris", "modulename": "aiochris", "kind": "module", "doc": "

ChRIS Python client library built on\naiohttp (async HTTP client) and\npyserde\n(dataclasses deserializer).

\n\n

Installation

\n\n

Requires Python 3.10 or 3.11.

\n\n
\n
pip install aiochris\n# or\npoetry add aiochris\n
\n
\n\n

Brief Example

\n\n
\n
from aiochris import ChrisClient\n\nchris = await ChrisClient.from_login(\n    username='chris',\n    password='chris1234',\n    url='https://cube.chrisproject.org/api/v1/'\n)\ndircopy = await chris.search_plugins(name_exact='pl-brainmgz', version='2.0.3').get_only()\nplinst = await dircopy.create_instance(compute_resource_name='host')\nawait plinst.set(title="copies brain image files into feed")\n
\n
\n\n

Introduction

\n\n

aiochris provides three core classes: AnonChrisClient, ChrisClient, and ChrisAdminClient.\nThese clients differ in permissions.

\n\n

\nMethods are only defined for what the client has permission to see or do.

\n\n
\n
anon_client = await AnonChrisClient.from_url('https://cube.chrisproject.org/api/v1/')\n# ok: can search for plugins without logging in...\nplugin = await anon_client.search_plugins(name_exact='pl-mri10yr06mo01da_normal').first()\n# IMPOSSIBLE! AnonChrisClient.create_instance not defined...\nawait plugin.create_instance()\n\n# IMPOSSIBLE! authentication required for ChrisClient\nauthed_client = await ChrisClient.from_url('https://cube.chrisproject.org/api/v1/')\nauthed_client = await ChrisClient.from_login(\n    url='https://cube.chrisproject.org/api/v1/',\n    username='chris',\n    password='chris1234'\n)\n# authenticated client can also search for plugins\nplugin = await authed_client.search_plugins(name_exact='pl-mri10yr06mo01da_normal').first()\nawait plugin.create_instance()  # works!\n
\n
\n\n

\n\n

Client Constructors

\n\n\n\n

aiochris in Jupyter Notebook

\n\n

Jupyter and IPython support top-level await. This, in conjunction with ChrisClient.from_chrs,\nmake aiochris a great way to use _ChRIS_ interactively with code.

\n\n

For a walkthrough, see https://github.com/FNNDSC/aiochris/blob/master/examples/aiochris_as_a_shell.ipynb

\n\n

Working with aiohttp

\n\n

aiochris hides the implementation detail that it is built upon aiohttp,\nhowever one thing is important to keep in mind:\nbe sure to call ChrisClient.close at the end of your program.

\n\n
\n
chris = await ChrisClient.from_login(...)\n# -- snip --\nawait chris.close()\n
\n
\n\n

You can also use an\nasynchronous context manager.

\n\n
\n
async with (await ChrisClient.from_login(...)) as chris:\n    await chris.upload_file('./something.dat', 'something.dat')\n    ...\n
\n
\n\n

Efficiency with Multiple Clients

\n\n

If using more than one aiohttp client in an application, it's more efficient\nto use the same\nconnector.\nOne connector instance should be shared among every client object,\nincluding all aiochris clients and other aiohttp clients.

\n\n

\nExample: efficiently using multiple aiohttp clients

\n\n
\n
import aiohttp\nfrom aiochris import ChrisClient\n\nwith aiohttp.TCPConnector() as connector:\n    chris_client1 = await ChrisClient.from_login(\n        url='https://example.com/cube/api/v1/',\n        username='user1',\n        password='user1234',\n        connector=connector,\n        connector_owner=False\n    )\n    chris_client2 = await ChrisClient.from_login(\n        url='https://example.com/cube/api/v1/',\n        username='user2',\n        password='user4321',\n        connector=connector,\n        connector_owner=False\n    )\n    plain_http_client = aiohttp.ClientSession(connector=connector, connector_owner=False)\n
\n
\n\n

\n\n

Advice for Getting Started

\n\n

Searching for things (plugins, plugin instances, files) in CUBE is a common task,\nand CUBE often returns multiple items per response.\nHence, it is important to understand how the Search helper class works.\nIt simplifies how we interact with paginated collection responses from CUBE.

\n\n

When performing batch operations, use\nasyncio.gather\nto run async functions concurrently.

\n\n

aiochris uses many generic types, so it is recommended you use an IDE\nwith good support for type hints, such as\nPyCharm\nor VSCodium with\nPylance configured.

\n\n

Examples

\n\n

Create a client given username and password

\n\n
\n
from aiochris import ChrisClient\n\nchris = await ChrisClient.from_login(\n    url='https://cube.chrisproject.org/api/v1/',\n    username='chris',\n    password='chris1234'\n)\n
\n
\n\n

Search for a plugin

\n\n
\n
# it's recommended to specify plugin version\nplugin = await chris.search_plugins(name_exact="pl-dcm2niix", version="0.1.0").get_only()\n\n# but if you don't care about plugin version...\nplugin = await chris.search_plugins(name_exact="pl-dcm2niix").first()\n
\n
\n\n

Create a feed by uploading a file

\n\n
\n
uploaded_file = await chris.upload_file('./brain.nii', 'my_experiment/brain.nii')\ndircopy = await chris.search_plugins(name_exact='pl-dircopy', version="2.1.1").get_only()\nplinst = await dircopy.create_instance(dir=uploaded_file.parent)\nfeed = await plinst.get_feed()\nawait feed.set(name="An experiment on uploaded file brain.nii")\n
\n
\n\n

Run a ds-type ChRIS plugin

\n\n
\n
# search for plugin to run\nplugin = await chris.search_plugins(name_exact="pl-dcm2niix", version="0.1.0").get_only()\n\n# search for parent node \nprevious = await chris.plugin_instances(id=44).get_only()\n\nawait plugin.create_instance(\n    previous=previous,               # required. alternatively, specify previous_id\n    title="convert DICOM to NIFTI",  # optional\n    compute_resource_name="galena",  # optional\n    memory_limit="2000Mi",           # optional\n    d=9,                             # optional parameter of pl-dcm2niix\n)\n
\n
\n\n

Search for plugin instances

\n\n
\n
finished_freesurfers = chris.plugin_instances(\n    plugin_name_exact='pl-fshack',\n    status='finishedSuccessfully'\n)\nasync for p in finished_freesurfers:\n    print(f'"{p.title}" finished on date: {p.end_date}')\n
\n
\n\n

Delete all plugin instances with a given title, in parallel

\n\n
\n
import asyncio\nfrom aiochris import ChrisClient, acollect\n\nchris = ChrisClient.from_login(...)\nsearch = chris.plugin_instances(title="delete me")\nplugin_instances = await acollect(search)\nawait asyncio.gather(*(p.delete() for p in plugin_instances))\n
\n
\n\n

Enable Debug Logging

\n\n

A log message will be printed to stderr before every HTTP request is sent.

\n\n
\n
import logging\n\nlogging.basicConfig(level=logging.DEBUG)\n
\n
\n"}, "aiochris.AnonChrisClient": {"fullname": "aiochris.AnonChrisClient", "modulename": "aiochris", "qualname": "AnonChrisClient", "kind": "class", "doc": "

An anonymous ChRIS client. It has access to read-only GET resources,\nsuch as being able to search for plugins.

\n", "bases": "aiochris.client.base.BaseChrisClient[aiochris.models.collection_links.AnonymousCollectionLinks, 'AnonChrisClient']"}, "aiochris.AnonChrisClient.from_url": {"fullname": "aiochris.AnonChrisClient.from_url", "modulename": "aiochris", "qualname": "AnonChrisClient.from_url", "kind": "function", "doc": "

Create an anonymous client.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.BaseConnector] = None,\tconnector_owner: bool = True) -> aiochris.client.anon.AnonChrisClient:", "funcdef": "async def"}, "aiochris.AnonChrisClient.search_plugins": {"fullname": "aiochris.AnonChrisClient.search_plugins", "modulename": "aiochris", "qualname": "AnonChrisClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n\n

Since this client is not logged in, you cannot create plugin instances using this client.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.PublicPlugin]:", "funcdef": "def"}, "aiochris.ChrisClient": {"fullname": "aiochris.ChrisClient", "modulename": "aiochris", "qualname": "ChrisClient", "kind": "class", "doc": "

A normal user ChRIS client, who may upload files and create plugin instances.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.CollectionLinks, 'ChrisClient']"}, "aiochris.ChrisClient.create_user": {"fullname": "aiochris.ChrisClient.create_user", "modulename": "aiochris", "qualname": "ChrisClient.create_user", "kind": "function", "doc": "

\n", "signature": "(\tcls,\turl: Union[aiochris.types.ChrisURL, str],\tusername: Union[aiochris.types.Username, str],\tpassword: Union[aiochris.types.Password, str],\temail: str,\tsession: Optional[aiohttp.client.ClientSession] = None) -> aiochris.models.data.UserData:", "funcdef": "async def"}, "aiochris.ChrisAdminClient": {"fullname": "aiochris.ChrisAdminClient", "modulename": "aiochris", "qualname": "ChrisAdminClient", "kind": "class", "doc": "

A client who has access to /chris-admin/. Admins can register new plugins and\nadd new compute resources.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.AdminCollectionLinks, 'ChrisAdminClient']"}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"fullname": "aiochris.ChrisAdminClient.register_plugin_from_store", "modulename": "aiochris", "qualname": "ChrisAdminClient.register_plugin_from_store", "kind": "function", "doc": "

Register a plugin from a ChRIS Store.

\n", "signature": "(\tself,\tplugin_store_url: aiochris.types.PluginUrl,\tcompute_names: Iterable[aiochris.types.ComputeResourceName]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.ChrisAdminClient.add_plugin": {"fullname": "aiochris.ChrisAdminClient.add_plugin", "modulename": "aiochris", "qualname": "ChrisAdminClient.add_plugin", "kind": "function", "doc": "

Add a plugin to CUBE.

\n\n
Examples
\n\n
\n
cmd = ['docker', 'run', '--rm', 'fnndsc/pl-mri-preview', 'chris_plugin_info']\noutput = subprocess.check_output(cmd, text=True)\ndesc = json.loads(output)\ndesc['name'] = 'pl-mri-preview'\ndesc['public_repo'] = 'https://github.com/FNNDSC/pl-mri-preview'\ndesc['dock_image'] = 'fnndsc/pl-mri-preview'\n\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources='host')\n
\n
\n\n

The example above is just for show. It's not a good example for several reasons:

\n\n\n\n
\n
all_computes = await chris_admin.get_all_compute_resources()\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources=all_computes)\n
\n
\n\n
Parameters
\n\n\n", "signature": "(\tself,\tplugin_description: str | dict,\tcompute_resources: Union[str, aiochris.models.public.ComputeResource, Iterable[Union[aiochris.models.public.ComputeResource, aiochris.types.ComputeResourceName]]]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.ChrisAdminClient.create_compute_resource": {"fullname": "aiochris.ChrisAdminClient.create_compute_resource", "modulename": "aiochris", "qualname": "ChrisAdminClient.create_compute_resource", "kind": "function", "doc": "

Define a new compute resource.

\n", "signature": "(\tself,\tname: Union[str, aiochris.types.ComputeResourceName],\tcompute_url: Union[str, aiochris.types.PfconUrl],\tcompute_user: str,\tcompute_password: str,\tcompute_innetwork: bool = None,\tdescription: str = None,\tcompute_auth_url: str = None,\tcompute_auth_token: str = None,\tmax_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource:", "funcdef": "async def"}, "aiochris.Search": {"fullname": "aiochris.Search", "modulename": "aiochris", "qualname": "Search", "kind": "class", "doc": "

Abstraction over paginated collection responses from CUBE.\nSearch objects are returned by methods for search endpoints of the CUBE API.\nIt is an asynchronous iterable\nwhich produces items from responses that return multiple results.\nHTTP requests are fired as-neede, they happen in the background during iteration.\nNo request is made before the first time a Search object is called.

\n\n
\n\n
Pagination is handled internally and automatically.
\n\n

The query parameters limit and offset can be explicitly given, but they shouldn't.

\n\n
\n\n
Examples
\n\n

Use an async for loop to print the name of every feed:

\n\n
\n
all_feeds = chris.search_feeds()  # returns a Search[Feed]\nasync for feed in all_feeds:\n    print(feed.name)\n
\n
\n", "bases": "typing.Generic[~T], typing.AsyncIterable[~T]"}, "aiochris.Search.__init__": {"fullname": "aiochris.Search.__init__", "modulename": "aiochris", "qualname": "Search.__init__", "kind": "function", "doc": "

\n", "signature": "(\tbase_url: str,\tparams: dict[str, typing.Any],\tclient: aiochris.link.linked.Linked,\tItem: Type[~T],\tmax_requests: int = 100,\tsubpath: str = 'search/')"}, "aiochris.Search.first": {"fullname": "aiochris.Search.first", "modulename": "aiochris", "qualname": "Search.first", "kind": "function", "doc": "

Get the first item.

\n\n
See also
\n\n

get_only : similar use, but more strict

\n", "signature": "(self) -> Optional[~T]:", "funcdef": "async def"}, "aiochris.Search.get_only": {"fullname": "aiochris.Search.get_only", "modulename": "aiochris", "qualname": "Search.get_only", "kind": "function", "doc": "

Get the only item from a search with one result.

\n\n
Examples
\n\n

This method is very commonly used for getting \"one thing\" from CUBE.

\n\n
\n
await chris.search_plugins(name_exact="pl-dircopy", version="2.1.1").get_only()\n
\n
\n\n

In the example above, a search for plugins given (name_exact, version)\nis guaranteed to return either 0 or 1 result.

\n\n
Raises
\n\n\n\n
See also
\n\n

first : does the same thing but without checks.

\n\n
Parameters
\n\n\n", "signature": "(self, allow_multiple=False) -> ~T:", "funcdef": "async def"}, "aiochris.Search.count": {"fullname": "aiochris.Search.count", "modulename": "aiochris", "qualname": "Search.count", "kind": "function", "doc": "

Get the number of items in this collection search.

\n\n
Examples
\n\n

count is useful for rendering a progress bar. TODO example with files

\n", "signature": "(self) -> int:", "funcdef": "async def"}, "aiochris.acollect": {"fullname": "aiochris.acollect", "modulename": "aiochris", "qualname": "acollect", "kind": "function", "doc": "

Simple helper to convert a Search to a list.

\n\n

Using this function is not recommended unless you can assume the collection is small.

\n", "signature": "(async_iterable: AsyncIterable[~T]) -> list[~T]:", "funcdef": "async def"}, "aiochris.Status": {"fullname": "aiochris.Status", "modulename": "aiochris", "qualname": "Status", "kind": "class", "doc": "

Possible statuses of a plugin instance.

\n", "bases": "enum.Enum"}, "aiochris.Status.created": {"fullname": "aiochris.Status.created", "modulename": "aiochris", "qualname": "Status.created", "kind": "variable", "doc": "

\n", "default_value": " = <Status.created: 'created'>"}, "aiochris.Status.waiting": {"fullname": "aiochris.Status.waiting", "modulename": "aiochris", "qualname": "Status.waiting", "kind": "variable", "doc": "

\n", "default_value": " = <Status.waiting: 'waiting'>"}, "aiochris.Status.scheduled": {"fullname": "aiochris.Status.scheduled", "modulename": "aiochris", "qualname": "Status.scheduled", "kind": "variable", "doc": "

\n", "default_value": " = <Status.scheduled: 'scheduled'>"}, "aiochris.Status.started": {"fullname": "aiochris.Status.started", "modulename": "aiochris", "qualname": "Status.started", "kind": "variable", "doc": "

\n", "default_value": " = <Status.started: 'started'>"}, "aiochris.Status.registeringFiles": {"fullname": "aiochris.Status.registeringFiles", "modulename": "aiochris", "qualname": "Status.registeringFiles", "kind": "variable", "doc": "

\n", "default_value": " = <Status.registeringFiles: 'registeringFiles'>"}, "aiochris.Status.finishedSuccessfully": {"fullname": "aiochris.Status.finishedSuccessfully", "modulename": "aiochris", "qualname": "Status.finishedSuccessfully", "kind": "variable", "doc": "

\n", "default_value": " = <Status.finishedSuccessfully: 'finishedSuccessfully'>"}, "aiochris.Status.finishedWithError": {"fullname": "aiochris.Status.finishedWithError", "modulename": "aiochris", "qualname": "Status.finishedWithError", "kind": "variable", "doc": "

\n", "default_value": " = <Status.finishedWithError: 'finishedWithError'>"}, "aiochris.Status.cancelled": {"fullname": "aiochris.Status.cancelled", "modulename": "aiochris", "qualname": "Status.cancelled", "kind": "variable", "doc": "

\n", "default_value": " = <Status.cancelled: 'cancelled'>"}, "aiochris.ParameterTypeName": {"fullname": "aiochris.ParameterTypeName", "modulename": "aiochris", "qualname": "ParameterTypeName", "kind": "class", "doc": "

Plugin parameter types.

\n", "bases": "enum.Enum"}, "aiochris.ParameterTypeName.string": {"fullname": "aiochris.ParameterTypeName.string", "modulename": "aiochris", "qualname": "ParameterTypeName.string", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.string: 'string'>"}, "aiochris.ParameterTypeName.integer": {"fullname": "aiochris.ParameterTypeName.integer", "modulename": "aiochris", "qualname": "ParameterTypeName.integer", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.integer: 'integer'>"}, "aiochris.ParameterTypeName.float": {"fullname": "aiochris.ParameterTypeName.float", "modulename": "aiochris", "qualname": "ParameterTypeName.float", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.float: 'float'>"}, "aiochris.ParameterTypeName.boolean": {"fullname": "aiochris.ParameterTypeName.boolean", "modulename": "aiochris", "qualname": "ParameterTypeName.boolean", "kind": "variable", "doc": "

\n", "default_value": " = <ParameterTypeName.boolean: 'boolean'>"}, "aiochris.client": {"fullname": "aiochris.client", "modulename": "aiochris.client", "kind": "module", "doc": "

\n"}, "aiochris.client.admin": {"fullname": "aiochris.client.admin", "modulename": "aiochris.client.admin", "kind": "module", "doc": "

\n"}, "aiochris.client.admin.ChrisAdminClient": {"fullname": "aiochris.client.admin.ChrisAdminClient", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient", "kind": "class", "doc": "

A client who has access to /chris-admin/. Admins can register new plugins and\nadd new compute resources.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.AdminCollectionLinks, 'ChrisAdminClient']"}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"fullname": "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient.register_plugin_from_store", "kind": "function", "doc": "

Register a plugin from a ChRIS Store.

\n", "signature": "(\tself,\tplugin_store_url: aiochris.types.PluginUrl,\tcompute_names: Iterable[aiochris.types.ComputeResourceName]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"fullname": "aiochris.client.admin.ChrisAdminClient.add_plugin", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient.add_plugin", "kind": "function", "doc": "

Add a plugin to CUBE.

\n\n
Examples
\n\n
\n
cmd = ['docker', 'run', '--rm', 'fnndsc/pl-mri-preview', 'chris_plugin_info']\noutput = subprocess.check_output(cmd, text=True)\ndesc = json.loads(output)\ndesc['name'] = 'pl-mri-preview'\ndesc['public_repo'] = 'https://github.com/FNNDSC/pl-mri-preview'\ndesc['dock_image'] = 'fnndsc/pl-mri-preview'\n\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources='host')\n
\n
\n\n

The example above is just for show. It's not a good example for several reasons:

\n\n\n\n
\n
all_computes = await chris_admin.get_all_compute_resources()\nawait chris_admin.add_plugin(plugin_description=desc, compute_resources=all_computes)\n
\n
\n\n
Parameters
\n\n\n", "signature": "(\tself,\tplugin_description: str | dict,\tcompute_resources: Union[str, aiochris.models.public.ComputeResource, Iterable[Union[aiochris.models.public.ComputeResource, aiochris.types.ComputeResourceName]]]) -> aiochris.models.logged_in.Plugin:", "funcdef": "async def"}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"fullname": "aiochris.client.admin.ChrisAdminClient.create_compute_resource", "modulename": "aiochris.client.admin", "qualname": "ChrisAdminClient.create_compute_resource", "kind": "function", "doc": "

Define a new compute resource.

\n", "signature": "(\tself,\tname: Union[str, aiochris.types.ComputeResourceName],\tcompute_url: Union[str, aiochris.types.PfconUrl],\tcompute_user: str,\tcompute_password: str,\tcompute_innetwork: bool = None,\tdescription: str = None,\tcompute_auth_url: str = None,\tcompute_auth_token: str = None,\tmax_job_exec_seconds: str = None) -> aiochris.models.public.ComputeResource:", "funcdef": "async def"}, "aiochris.client.anon": {"fullname": "aiochris.client.anon", "modulename": "aiochris.client.anon", "kind": "module", "doc": "

\n"}, "aiochris.client.anon.AnonChrisClient": {"fullname": "aiochris.client.anon.AnonChrisClient", "modulename": "aiochris.client.anon", "qualname": "AnonChrisClient", "kind": "class", "doc": "

An anonymous ChRIS client. It has access to read-only GET resources,\nsuch as being able to search for plugins.

\n", "bases": "aiochris.client.base.BaseChrisClient[aiochris.models.collection_links.AnonymousCollectionLinks, 'AnonChrisClient']"}, "aiochris.client.anon.AnonChrisClient.from_url": {"fullname": "aiochris.client.anon.AnonChrisClient.from_url", "modulename": "aiochris.client.anon", "qualname": "AnonChrisClient.from_url", "kind": "function", "doc": "

Create an anonymous client.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.BaseConnector] = None,\tconnector_owner: bool = True) -> aiochris.client.anon.AnonChrisClient:", "funcdef": "async def"}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"fullname": "aiochris.client.anon.AnonChrisClient.search_plugins", "modulename": "aiochris.client.anon", "qualname": "AnonChrisClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n\n

Since this client is not logged in, you cannot create plugin instances using this client.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.PublicPlugin]:", "funcdef": "def"}, "aiochris.client.authed": {"fullname": "aiochris.client.authed", "modulename": "aiochris.client.authed", "kind": "module", "doc": "

\n"}, "aiochris.client.authed.AuthenticatedClient": {"fullname": "aiochris.client.authed.AuthenticatedClient", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient", "kind": "class", "doc": "

An authenticated ChRIS client.

\n", "bases": "aiochris.client.base.BaseChrisClient[~L, ~CSelf], typing.Generic[~L, ~CSelf], abc.ABC"}, "aiochris.client.authed.AuthenticatedClient.from_login": {"fullname": "aiochris.client.authed.AuthenticatedClient.from_login", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.from_login", "kind": "function", "doc": "

Get authentication token using username and password, then construct the client.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: Union[str, aiochris.types.ChrisURL],\tusername: Union[str, aiochris.types.Username],\tpassword: Union[str, aiochris.types.Password],\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.TCPConnector] = None,\tconnector_owner: bool = True) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.from_token": {"fullname": "aiochris.client.authed.AuthenticatedClient.from_token", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.from_token", "kind": "function", "doc": "

Construct an authenticated client using the given token.

\n\n

See aiochris.client.base.BaseChrisClient.new for parameter documentation.

\n", "signature": "(\tcls,\turl: Union[str, aiochris.types.ChrisURL],\ttoken: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.TCPConnector] = None,\tconnector_owner: Optional[bool] = True) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"fullname": "aiochris.client.authed.AuthenticatedClient.from_chrs", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.from_chrs", "kind": "function", "doc": "

Log in using chrs.\nChRIS logins can be saved with the chrs login command.

\n\n

In order to call this function, aiochris must be installed with the extras from-chrs.\nUsing pip:

\n\n
\n
pip install aiochris[chrs]\n
\n
\n\n

Or using Poetry:

\n\n
\n
poetry add -E chrs aiochris\n
\n
\n\n

from_chrs makes it easy to use aiochris in Jupyter Notebook or IPython,\nespecially since it saves you from having to write your password in a notebook\nthat you want to share with others. Both Jupyter and IPython support top-level await.

\n\n
\n
from aiochris import ChrisClient, acollect\n\nchris = await ChrisClient.from_chrs()\nawait acollect(chris.search_plugins())\n
\n
\n\n

When from_chrs is called with no parameters, it uses the \"preferred account\"\ni.e. the most recently added account, the same _ChRIS_ account and server as\nchrs would when called without options. The \"preferred account\" can be changed\nby running chrs switch.

\n", "signature": "(\tcls,\turl: Union[str, aiochris.types.ChrisURL, NoneType] = None,\tusername: Union[str, aiochris.types.Username, NoneType] = None,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.TCPConnector] = None,\tconnector_owner: Optional[bool] = True,\tconfig_file: pathlib.Path = PosixPath('~/.config/chrs/login.toml')) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_feeds", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_feeds", "kind": "function", "doc": "

Search for feeds.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.Feed]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_plugins", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.Plugin]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"fullname": "aiochris.client.authed.AuthenticatedClient.plugin_instances", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.plugin_instances", "kind": "function", "doc": "

Search for plugin instances.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.PluginInstance]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"fullname": "aiochris.client.authed.AuthenticatedClient.upload_file", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.upload_file", "kind": "function", "doc": "

Upload a local file to ChRIS.

\n\n
\n\n
Uses non-async code.
\n\n

The file is read using non-async code.\nPerformance will suffer with large files and hard drives.\nSee aiolibs/aiohttp#7174

\n\n
\n\n
Examples
\n\n

Upload a single file:

\n\n
\n
aiochris = await ChrisClient.from_login(\n    username='chris',\n    password='chris1234',\n    url='https://cube.chrisproject.org/api/v1/'\n)\nfile = await aiochris.upload_file("./my_data.dat", 'dir/my_data.dat')\nassert file.fname == 'aiochris/uploads/dir/my_data.dat'\n
\n
\n\n

Upload (in parallel) all *.txt files in a directory\n'incoming' to aiochris/uploads/big_folder:

\n\n
\n
upload_jobs = (\n    aiochris.upload_file(p, f'big_folder/{p}')\n    for p in Path('incoming')\n)\nawait asyncio.gather(upload_jobs)\n
\n
\n\n
Parameters
\n\n\n", "signature": "(\tself,\tlocal_file: str | os.PathLike,\tupload_path: str) -> aiochris.models.logged_in.File:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.user": {"fullname": "aiochris.client.authed.AuthenticatedClient.user", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.user", "kind": "function", "doc": "

Gets the user's information.

\n", "signature": "(self) -> aiochris.models.logged_in.User:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.username": {"fullname": "aiochris.client.authed.AuthenticatedClient.username", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.username", "kind": "function", "doc": "

Gets the username. In contrast to self.user, this method will use a cached API call.

\n", "signature": "(self) -> aiochris.types.Username:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_compute_resources", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_compute_resources", "kind": "function", "doc": "

Search for existing compute resources.

\n\n
See also
\n\n

get_all_compute_resources :

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.ComputeResource]:", "funcdef": "def"}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"fullname": "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.get_all_compute_resources", "kind": "function", "doc": "

Get all compute resources.

\n\n

This method exists for convenience.\nThe number of compute resources of a CUBE is typically small so it's ok.

\n\n
See also
\n\n

search_compute_resources :

\n", "signature": "(self) -> Sequence[aiochris.models.public.ComputeResource]:", "funcdef": "async def"}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"fullname": "aiochris.client.authed.AuthenticatedClient.search_pacsfiles", "modulename": "aiochris.client.authed", "qualname": "AuthenticatedClient.search_pacsfiles", "kind": "function", "doc": "

Search for PACS files.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.logged_in.PACSFile]:", "funcdef": "def"}, "aiochris.client.base": {"fullname": "aiochris.client.base", "modulename": "aiochris.client.base", "kind": "module", "doc": "

\n"}, "aiochris.client.base.BaseChrisClient": {"fullname": "aiochris.client.base.BaseChrisClient", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient", "kind": "class", "doc": "

Provides the implementation for most of the read-only GET resources of ChRIS\nand functions related to the client object's own usage.

\n", "bases": "typing.Generic[~L, ~CSelf], aiochris.link.collection_client.CollectionJsonApiClient[~L], typing.AsyncContextManager[~CSelf], abc.ABC"}, "aiochris.client.base.BaseChrisClient.new": {"fullname": "aiochris.client.base.BaseChrisClient.new", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient.new", "kind": "function", "doc": "

A constructor which creates the session for the BaseChrisClient\nand makes an initial request to populate collection_links.

\n\n
Parameters
\n\n\n", "signature": "(\tcls,\turl: str,\tmax_search_requests: int = 100,\tconnector: Optional[aiohttp.connector.BaseConnector] = None,\tconnector_owner: bool = True,\tsession_modifier: Optional[Callable[[aiohttp.client.ClientSession], NoneType]] = None) -> ~CSelf:", "funcdef": "async def"}, "aiochris.client.base.BaseChrisClient.close": {"fullname": "aiochris.client.base.BaseChrisClient.close", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient.close", "kind": "function", "doc": "

Close the HTTP session used by this client.

\n", "signature": "(self):", "funcdef": "async def"}, "aiochris.client.base.BaseChrisClient.search_plugins": {"fullname": "aiochris.client.base.BaseChrisClient.search_plugins", "modulename": "aiochris.client.base", "qualname": "BaseChrisClient.search_plugins", "kind": "function", "doc": "

Search for plugins.

\n", "signature": "(\tself,\t**query) -> aiochris.util.search.Search[aiochris.models.public.PublicPlugin]:", "funcdef": "def"}, "aiochris.client.from_chrs": {"fullname": "aiochris.client.from_chrs", "modulename": "aiochris.client.from_chrs", "kind": "module", "doc": "

Interoperability with chrs version 0.2.4.

\n\n

The functions of this module uses dynamic importing of extras from the chrs group.

\n"}, "aiochris.client.from_chrs.StoredToken": {"fullname": "aiochris.client.from_chrs.StoredToken", "modulename": "aiochris.client.from_chrs", "qualname": "StoredToken", "kind": "class", "doc": "

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/tokenstore.rs#L18-L24

\n"}, "aiochris.client.from_chrs.StoredToken.__init__": {"fullname": "aiochris.client.from_chrs.StoredToken.__init__", "modulename": "aiochris.client.from_chrs", "qualname": "StoredToken.__init__", "kind": "function", "doc": "

\n", "signature": "(store: Literal['Text', 'Keyring'], value: Optional[str] = None)"}, "aiochris.client.from_chrs.ChrsLogin": {"fullname": "aiochris.client.from_chrs.ChrsLogin", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin", "kind": "class", "doc": "

A login saved by chrs.

\n\n

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/tokenstore.rs#L18-L34

\n"}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"fullname": "aiochris.client.from_chrs.ChrsLogin.__init__", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.__init__", "kind": "function", "doc": "

\n", "signature": "(\taddress: aiochris.types.ChrisURL,\tusername: aiochris.types.Username,\tstore: aiochris.client.from_chrs.StoredToken)"}, "aiochris.client.from_chrs.ChrsLogin.token": {"fullname": "aiochris.client.from_chrs.ChrsLogin.token", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.token", "kind": "function", "doc": "

\n", "signature": "(self) -> str:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"fullname": "aiochris.client.from_chrs.ChrsLogin.is_for", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.is_for", "kind": "function", "doc": "

Returns True if this login is for the specified _ChRIS_ user account.

\n", "signature": "(\tself,\taddress: Optional[aiochris.types.ChrisURL],\tusername: Optional[aiochris.types.Username]) -> bool:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"fullname": "aiochris.client.from_chrs.ChrsLogin.to_keyring_username", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogin.to_keyring_username", "kind": "function", "doc": "

Produce the username for this login in the keyring.

\n\n

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/tokenstore.rs#L3

\n", "signature": "(self) -> str:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogins": {"fullname": "aiochris.client.from_chrs.ChrsLogins", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins", "kind": "class", "doc": "

Logins saved by chrs.

\n\n

https://github.com/FNNDSC/chrs/blob/v0.2.4/chrs/src/login/saved.rs#L18-L22

\n"}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"fullname": "aiochris.client.from_chrs.ChrsLogins.__init__", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.__init__", "kind": "function", "doc": "

\n", "signature": "(cubes: list[aiochris.client.from_chrs.ChrsLogin])"}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"fullname": "aiochris.client.from_chrs.ChrsLogins.cubes", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.cubes", "kind": "variable", "doc": "

Saved logins in reverse order of preference.

\n", "annotation": ": list[aiochris.client.from_chrs.ChrsLogin]"}, "aiochris.client.from_chrs.ChrsLogins.load": {"fullname": "aiochris.client.from_chrs.ChrsLogins.load", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.load", "kind": "function", "doc": "

\n", "signature": "(cls, path: pathlib.Path) -> aiochris.client.from_chrs.ChrsLogins:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"fullname": "aiochris.client.from_chrs.ChrsLogins.get_token_for", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsLogins.get_token_for", "kind": "function", "doc": "

Get token for a login.

\n", "signature": "(\tself,\taddress: Union[str, aiochris.types.ChrisURL, NoneType] = None,\tusername: Union[str, aiochris.types.Username, NoneType] = None) -> Optional[tuple[aiochris.types.ChrisURL, str]]:", "funcdef": "def"}, "aiochris.client.from_chrs.ChrsKeyringError": {"fullname": "aiochris.client.from_chrs.ChrsKeyringError", "modulename": "aiochris.client.from_chrs", "qualname": "ChrsKeyringError", "kind": "class", "doc": "

Error interacting with Keyring.

\n", "bases": "builtins.Exception"}, "aiochris.client.normal": {"fullname": "aiochris.client.normal", "modulename": "aiochris.client.normal", "kind": "module", "doc": "

\n"}, "aiochris.client.normal.ChrisClient": {"fullname": "aiochris.client.normal.ChrisClient", "modulename": "aiochris.client.normal", "qualname": "ChrisClient", "kind": "class", "doc": "

A normal user ChRIS client, who may upload files and create plugin instances.

\n", "bases": "aiochris.client.authed.AuthenticatedClient[aiochris.models.collection_links.CollectionLinks, 'ChrisClient']"}, "aiochris.client.normal.ChrisClient.create_user": {"fullname": "aiochris.client.normal.ChrisClient.create_user", "modulename": "aiochris.client.normal", "qualname": "ChrisClient.create_user", "kind": "function", "doc": "

\n", "signature": "(\tcls,\turl: Union[aiochris.types.ChrisURL, str],\tusername: Union[aiochris.types.Username, str],\tpassword: Union[aiochris.types.Password, str],\temail: str,\tsession: Optional[aiohttp.client.ClientSession] = None) -> aiochris.models.data.UserData:", "funcdef": "async def"}, "aiochris.errors": {"fullname": "aiochris.errors", "modulename": "aiochris.errors", "kind": "module", "doc": "

\n"}, "aiochris.errors.raise_for_status": {"fullname": "aiochris.errors.raise_for_status", "modulename": "aiochris.errors", "qualname": "raise_for_status", "kind": "function", "doc": "

Raises custom exceptions.

\n", "signature": "(res: aiohttp.client_reqrep.ClientResponse) -> None:", "funcdef": "async def"}, "aiochris.errors.BaseClientError": {"fullname": "aiochris.errors.BaseClientError", "modulename": "aiochris.errors", "qualname": "BaseClientError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "builtins.Exception"}, "aiochris.errors.ResponseError": {"fullname": "aiochris.errors.ResponseError", "modulename": "aiochris.errors", "qualname": "ResponseError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "BaseClientError"}, "aiochris.errors.BadRequestError": {"fullname": "aiochris.errors.BadRequestError", "modulename": "aiochris.errors", "qualname": "BadRequestError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "ResponseError"}, "aiochris.errors.InternalServerError": {"fullname": "aiochris.errors.InternalServerError", "modulename": "aiochris.errors", "qualname": "InternalServerError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "ResponseError"}, "aiochris.errors.IncorrectLoginError": {"fullname": "aiochris.errors.IncorrectLoginError", "modulename": "aiochris.errors", "qualname": "IncorrectLoginError", "kind": "class", "doc": "

Common base class for all non-exit exceptions.

\n", "bases": "BaseClientError"}, "aiochris.errors.NonsenseResponseError": {"fullname": "aiochris.errors.NonsenseResponseError", "modulename": "aiochris.errors", "qualname": "NonsenseResponseError", "kind": "class", "doc": "

CUBE returned data which does not make sense.

\n", "bases": "ResponseError"}, "aiochris.models": {"fullname": "aiochris.models", "modulename": "aiochris.models", "kind": "module", "doc": "

\n"}, "aiochris.models.collection_links": {"fullname": "aiochris.models.collection_links", "modulename": "aiochris.models.collection_links", "kind": "module", "doc": "

\n"}, "aiochris.models.collection_links.AbstractCollectionLinks": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks", "kind": "class", "doc": "

\n"}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "()"}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks.has_field", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks.has_field", "kind": "function", "doc": "

\n", "signature": "(cls, field_name: str) -> bool:", "funcdef": "def"}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"fullname": "aiochris.models.collection_links.AbstractCollectionLinks.get", "modulename": "aiochris.models.collection_links", "qualname": "AbstractCollectionLinks.get", "kind": "function", "doc": "

\n", "signature": "(self, collection_name: str) -> str:", "funcdef": "def"}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"fullname": "aiochris.models.collection_links.AnonymousCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AnonymousCollectionLinks", "kind": "class", "doc": "

\n", "bases": "AbstractCollectionLinks"}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AnonymousCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AnonymousCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(\tchrisinstance: aiochris.types.ApiUrl,\tfiles: aiochris.types.ApiUrl,\tcompute_resources: aiochris.types.ApiUrl,\tplugin_metas: aiochris.types.ApiUrl,\tplugins: aiochris.types.ApiUrl,\tplugin_instances: aiochris.types.ApiUrl,\tpipelines: aiochris.types.ApiUrl,\tpipeline_instances: aiochris.types.ApiUrl,\tworkflows: aiochris.types.ApiUrl,\ttags: aiochris.types.ApiUrl,\tuploadedfiles: aiochris.types.ApiUrl,\tpacsfiles: aiochris.types.ApiUrl,\tservicefiles: aiochris.types.ApiUrl,\tfilebrowser: aiochris.types.ApiUrl)"}, "aiochris.models.collection_links.CollectionLinks": {"fullname": "aiochris.models.collection_links.CollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "CollectionLinks", "kind": "class", "doc": "

\n", "bases": "AnonymousCollectionLinks"}, "aiochris.models.collection_links.CollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.CollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "CollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(\tchrisinstance: aiochris.types.ApiUrl,\tfiles: aiochris.types.ApiUrl,\tcompute_resources: aiochris.types.ApiUrl,\tplugin_metas: aiochris.types.ApiUrl,\tplugins: aiochris.types.ApiUrl,\tplugin_instances: aiochris.types.ApiUrl,\tpipelines: aiochris.types.ApiUrl,\tpipeline_instances: aiochris.types.ApiUrl,\tworkflows: aiochris.types.ApiUrl,\ttags: aiochris.types.ApiUrl,\tuploadedfiles: aiochris.types.ApiUrl,\tpacsfiles: aiochris.types.ApiUrl,\tservicefiles: aiochris.types.ApiUrl,\tfilebrowser: aiochris.types.ApiUrl,\tuser: aiochris.types.UserUrl)"}, "aiochris.models.collection_links.AdminCollectionLinks": {"fullname": "aiochris.models.collection_links.AdminCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AdminCollectionLinks", "kind": "class", "doc": "

\n", "bases": "CollectionLinks"}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AdminCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AdminCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(\tchrisinstance: aiochris.types.ApiUrl,\tfiles: aiochris.types.ApiUrl,\tcompute_resources: aiochris.types.ApiUrl,\tplugin_metas: aiochris.types.ApiUrl,\tplugins: aiochris.types.ApiUrl,\tplugin_instances: aiochris.types.ApiUrl,\tpipelines: aiochris.types.ApiUrl,\tpipeline_instances: aiochris.types.ApiUrl,\tworkflows: aiochris.types.ApiUrl,\ttags: aiochris.types.ApiUrl,\tuploadedfiles: aiochris.types.ApiUrl,\tpacsfiles: aiochris.types.ApiUrl,\tservicefiles: aiochris.types.ApiUrl,\tfilebrowser: aiochris.types.ApiUrl,\tuser: aiochris.types.UserUrl,\tadmin: aiochris.types.AdminUrl)"}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"fullname": "aiochris.models.collection_links.AdminApiCollectionLinks", "modulename": "aiochris.models.collection_links", "qualname": "AdminApiCollectionLinks", "kind": "class", "doc": "

\n", "bases": "AbstractCollectionLinks"}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"fullname": "aiochris.models.collection_links.AdminApiCollectionLinks.__init__", "modulename": "aiochris.models.collection_links", "qualname": "AdminApiCollectionLinks.__init__", "kind": "function", "doc": "

\n", "signature": "(compute_resources: aiochris.types.ApiUrl)"}, "aiochris.models.data": {"fullname": "aiochris.models.data", "modulename": "aiochris.models.data", "kind": "module", "doc": "

Dataclasses describing objects returned from CUBE.

\n\n

These classes are extended in the modules aiochris.models.logged_in\nand aiochris.models.public with methods to get objects from links.

\n"}, "aiochris.models.data.UserData": {"fullname": "aiochris.models.data.UserData", "modulename": "aiochris.models.data", "qualname": "UserData", "kind": "class", "doc": "

A CUBE user.

\n"}, "aiochris.models.data.UserData.__init__": {"fullname": "aiochris.models.data.UserData.__init__", "modulename": "aiochris.models.data", "qualname": "UserData.__init__", "kind": "function", "doc": "

\n", "signature": "(\turl: aiochris.types.UserUrl,\tid: aiochris.types.UserId,\tusername: aiochris.types.Username,\temail: str)"}, "aiochris.models.data.PluginInstanceData": {"fullname": "aiochris.models.data.PluginInstanceData", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData", "kind": "class", "doc": "

A plugin instance in _ChRIS_ is a computing job, i.e. an attempt to run\na computation (a non-interactive command-line app) to produce data.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.data.PluginInstanceData.__init__": {"fullname": "aiochris.models.data.PluginInstanceData.__init__", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginInstanceUrl,\tid: aiochris.types.PluginInstanceId,\ttitle: str,\tcompute_resource_name: aiochris.types.ComputeResourceName,\tplugin_id: aiochris.types.PluginId,\tplugin_name: aiochris.types.PluginName,\tplugin_version: aiochris.types.PluginVersion,\tplugin_type: aiochris.enums.PluginType,\tpipeline_inst: Optional[int],\tfeed_id: aiochris.types.FeedId,\tstart_date: datetime.datetime,\tend_date: datetime.datetime,\toutput_path: aiochris.types.CubeFilePath,\tstatus: aiochris.enums.Status,\tsummary: str,\traw: str,\towner_username: aiochris.types.Username,\tcpu_limit: int,\tmemory_limit: int,\tnumber_of_workers: int,\tgpu_limit: int,\terror_code: aiochris.types.CUBEErrorCode,\tprevious: Optional[aiochris.types.PluginInstanceUrl],\tfeed: aiochris.types.FeedUrl,\tplugin: aiochris.types.PluginUrl,\tdescendants: aiochris.types.DescendantsUrl,\tfiles: aiochris.types.FilesUrl,\tparameters: aiochris.types.PluginInstanceParametersUrl,\tcompute_resource: aiochris.types.ComputeResourceUrl,\tsplits: aiochris.types.SplitsUrl,\tprevious_id: Optional[int] = None,\tsize: Optional[int] = None,\ttemplate: Optional[dict] = None)"}, "aiochris.models.data.PluginInstanceData.previous_id": {"fullname": "aiochris.models.data.PluginInstanceData.previous_id", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.previous_id", "kind": "variable", "doc": "

FS plugins will not produce a previous_id value\n(even though they will return \"previous\": null)

\n", "annotation": ": Optional[int]", "default_value": " = None"}, "aiochris.models.data.PluginInstanceData.size": {"fullname": "aiochris.models.data.PluginInstanceData.size", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.size", "kind": "variable", "doc": "

IDK what it is the size of.

\n\n

This field shows up when the plugin instance is maybe done,\nbut not when the plugin instance is created.

\n", "annotation": ": Optional[int]", "default_value": " = None"}, "aiochris.models.data.PluginInstanceData.template": {"fullname": "aiochris.models.data.PluginInstanceData.template", "modulename": "aiochris.models.data", "qualname": "PluginInstanceData.template", "kind": "variable", "doc": "

Present only when getting a plugin instance.

\n", "annotation": ": Optional[dict]", "default_value": " = None"}, "aiochris.models.data.FeedData": {"fullname": "aiochris.models.data.FeedData", "modulename": "aiochris.models.data", "qualname": "FeedData", "kind": "class", "doc": "

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.data.FeedData.__init__": {"fullname": "aiochris.models.data.FeedData.__init__", "modulename": "aiochris.models.data", "qualname": "FeedData.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.FeedId,\tcreation_date: datetime.datetime,\tmodification_date: datetime.datetime,\tname: str,\tcreator_username: aiochris.types.Username,\tcreated_jobs: int,\twaiting_jobs: int,\tscheduled_jobs: int,\tstarted_jobs: int,\tregistering_jobs: int,\tfinished_jobs: int,\terrored_jobs: int,\tcancelled_jobs: int,\towner: list[aiochris.types.UserUrl],\tnote: aiochris.types.NoteUrl,\ttags: aiochris.types.TagsUrl,\ttaggings: aiochris.types.TaggingsUrl,\tcomments: aiochris.types.CommentsUrl,\tfiles: aiochris.types.FilesUrl,\tplugin_instances: aiochris.types.PluginInstancesUrl)"}, "aiochris.models.data.FeedNoteData": {"fullname": "aiochris.models.data.FeedNoteData", "modulename": "aiochris.models.data", "qualname": "FeedNoteData", "kind": "class", "doc": "

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.data.FeedNoteData.__init__": {"fullname": "aiochris.models.data.FeedNoteData.__init__", "modulename": "aiochris.models.data", "qualname": "FeedNoteData.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.NoteId,\ttitle: str,\tcontent: str,\tfeed: aiochris.types.FeedUrl)"}, "aiochris.models.logged_in": {"fullname": "aiochris.models.logged_in", "modulename": "aiochris.models.logged_in", "kind": "module", "doc": "

Subclasses of classes from aiochris.models.data which are returned\nfrom an aiochris.client.authed.AuthenticatedClient.\nThese classes may have read-write functionality on the ChRIS API.

\n"}, "aiochris.models.logged_in.User": {"fullname": "aiochris.models.logged_in.User", "modulename": "aiochris.models.logged_in", "qualname": "User", "kind": "class", "doc": "

\n", "bases": "aiochris.models.data.UserData, aiochris.link.linked.LinkedModel"}, "aiochris.models.logged_in.User.__init__": {"fullname": "aiochris.models.logged_in.User.__init__", "modulename": "aiochris.models.logged_in", "qualname": "User.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.UserUrl,\tid: aiochris.types.UserId,\tusername: aiochris.types.Username,\temail: str)"}, "aiochris.models.logged_in.File": {"fullname": "aiochris.models.logged_in.File", "modulename": "aiochris.models.logged_in", "qualname": "File", "kind": "class", "doc": "

A file in CUBE.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.logged_in.File.__init__": {"fullname": "aiochris.models.logged_in.File.__init__", "modulename": "aiochris.models.logged_in", "qualname": "File.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: str,\tfname: aiochris.types.FileFname,\tfsize: int,\tfile_resource: aiochris.types.FileResourceUrl)"}, "aiochris.models.logged_in.File.parent": {"fullname": "aiochris.models.logged_in.File.parent", "modulename": "aiochris.models.logged_in", "qualname": "File.parent", "kind": "variable", "doc": "

Get the parent (directory) of a file.

\n\n
Examples
\n\n
\n
assert file.fname == 'chris/feed_4/pl-dircopy_7/data/hello-world.txt'\nassert file.parent == 'chris/feed_4/pl-dircopy_7/data'\n
\n
\n", "annotation": ": str"}, "aiochris.models.logged_in.PACSFile": {"fullname": "aiochris.models.logged_in.PACSFile", "modulename": "aiochris.models.logged_in", "qualname": "PACSFile", "kind": "class", "doc": "

A file from a PACS server which was pushed into ChRIS.\nA PACSFile is usually a DICOM file.

\n\n

See https://github.com/FNNDSC/ChRIS_ultron_backEnd/blob/a1bf499144df79622eb3f8a459cdb80d8e34cb04/chris_backend/pacsfiles/models.py#L16-L33

\n", "bases": "File"}, "aiochris.models.logged_in.PACSFile.__init__": {"fullname": "aiochris.models.logged_in.PACSFile.__init__", "modulename": "aiochris.models.logged_in", "qualname": "PACSFile.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: str,\tfname: aiochris.types.FileFname,\tfsize: int,\tfile_resource: aiochris.types.FileResourceUrl,\tPatientID: str,\tPatientName: str,\tPatientBirthDate: str,\tPatientAge: int,\tPatientSex: str,\tStudyDate: str,\tAccessionNumber: str,\tModality: str,\tProtocolName: str,\tStudyInstanceUID: str,\tStudyDescription: str,\tSeriesInstanceUID: str,\tSeriesDescription: str,\tpacs_identifier: str)"}, "aiochris.models.logged_in.PluginInstance": {"fullname": "aiochris.models.logged_in.PluginInstance", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance", "kind": "class", "doc": "

\n", "bases": "aiochris.models.data.PluginInstanceData"}, "aiochris.models.logged_in.PluginInstance.__init__": {"fullname": "aiochris.models.logged_in.PluginInstance.__init__", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginInstanceUrl,\tid: aiochris.types.PluginInstanceId,\ttitle: str,\tcompute_resource_name: aiochris.types.ComputeResourceName,\tplugin_id: aiochris.types.PluginId,\tplugin_name: aiochris.types.PluginName,\tplugin_version: aiochris.types.PluginVersion,\tplugin_type: aiochris.enums.PluginType,\tpipeline_inst: Optional[int],\tfeed_id: aiochris.types.FeedId,\tstart_date: datetime.datetime,\tend_date: datetime.datetime,\toutput_path: aiochris.types.CubeFilePath,\tstatus: aiochris.enums.Status,\tsummary: str,\traw: str,\towner_username: aiochris.types.Username,\tcpu_limit: int,\tmemory_limit: int,\tnumber_of_workers: int,\tgpu_limit: int,\terror_code: aiochris.types.CUBEErrorCode,\tprevious: Optional[aiochris.types.PluginInstanceUrl],\tfeed: aiochris.types.FeedUrl,\tplugin: aiochris.types.PluginUrl,\tdescendants: aiochris.types.DescendantsUrl,\tfiles: aiochris.types.FilesUrl,\tparameters: aiochris.types.PluginInstanceParametersUrl,\tcompute_resource: aiochris.types.ComputeResourceUrl,\tsplits: aiochris.types.SplitsUrl,\tprevious_id: Optional[int] = None,\tsize: Optional[int] = None,\ttemplate: Optional[dict] = None)"}, "aiochris.models.logged_in.PluginInstance.get_feed": {"fullname": "aiochris.models.logged_in.PluginInstance.get_feed", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.get_feed", "kind": "function", "doc": "

Get the feed this plugin instance belongs to.

\n", "signature": "(self) -> aiochris.models.logged_in.Feed:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.get": {"fullname": "aiochris.models.logged_in.PluginInstance.get", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.get", "kind": "function", "doc": "

Get this plugin's state (again).

\n", "signature": "(self) -> aiochris.models.logged_in.PluginInstance:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.set": {"fullname": "aiochris.models.logged_in.PluginInstance.set", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.set", "kind": "function", "doc": "

Set the title or status of this plugin instance.

\n", "signature": "(\tself,\ttitle: Optional[str] = None,\tstatus: Optional[str] = None) -> aiochris.models.logged_in.PluginInstance:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.delete": {"fullname": "aiochris.models.logged_in.PluginInstance.delete", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.delete", "kind": "function", "doc": "

Delete this plugin instance.

\n", "signature": "(self) -> None:", "funcdef": "async def"}, "aiochris.models.logged_in.PluginInstance.wait": {"fullname": "aiochris.models.logged_in.PluginInstance.wait", "modulename": "aiochris.models.logged_in", "qualname": "PluginInstance.wait", "kind": "function", "doc": "

Wait until this plugin instance finishes (or some other desired status).

\n\n
Parameters
\n\n\n\n
Returns
\n\n\n", "signature": "(\tself,\tstatus: Union[aiochris.enums.Status, Sequence[aiochris.enums.Status]] = (<Status.finishedSuccessfully: 'finishedSuccessfully'>, <Status.finishedWithError: 'finishedWithError'>, <Status.cancelled: 'cancelled'>),\ttimeout: float = 300,\tinterval: float = 5) -> tuple[float, aiochris.models.logged_in.PluginInstance]:", "funcdef": "async def"}, "aiochris.models.logged_in.FeedNote": {"fullname": "aiochris.models.logged_in.FeedNote", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote", "kind": "class", "doc": "

\n", "bases": "aiochris.models.data.FeedNoteData"}, "aiochris.models.logged_in.FeedNote.__init__": {"fullname": "aiochris.models.logged_in.FeedNote.__init__", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.NoteId,\ttitle: str,\tcontent: str,\tfeed: aiochris.types.FeedUrl)"}, "aiochris.models.logged_in.FeedNote.get_feed": {"fullname": "aiochris.models.logged_in.FeedNote.get_feed", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote.get_feed", "kind": "function", "doc": "

Get the feed this note belongs to.

\n", "signature": "(self) -> aiochris.models.logged_in.Feed:", "funcdef": "async def"}, "aiochris.models.logged_in.FeedNote.set": {"fullname": "aiochris.models.logged_in.FeedNote.set", "modulename": "aiochris.models.logged_in", "qualname": "FeedNote.set", "kind": "function", "doc": "

Change this note.

\n", "signature": "(\tself,\ttitle: Optional[str] = None,\tcontent: Optional[str] = None) -> aiochris.models.logged_in.FeedNote:", "funcdef": "async def"}, "aiochris.models.logged_in.Feed": {"fullname": "aiochris.models.logged_in.Feed", "modulename": "aiochris.models.logged_in", "qualname": "Feed", "kind": "class", "doc": "

A feed of a logged in user.

\n", "bases": "aiochris.models.data.FeedData"}, "aiochris.models.logged_in.Feed.__init__": {"fullname": "aiochris.models.logged_in.Feed.__init__", "modulename": "aiochris.models.logged_in", "qualname": "Feed.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.FeedUrl,\tid: aiochris.types.FeedId,\tcreation_date: datetime.datetime,\tmodification_date: datetime.datetime,\tname: str,\tcreator_username: aiochris.types.Username,\tcreated_jobs: int,\twaiting_jobs: int,\tscheduled_jobs: int,\tstarted_jobs: int,\tregistering_jobs: int,\tfinished_jobs: int,\terrored_jobs: int,\tcancelled_jobs: int,\towner: list[aiochris.types.UserUrl],\tnote: aiochris.types.NoteUrl,\ttags: aiochris.types.TagsUrl,\ttaggings: aiochris.types.TaggingsUrl,\tcomments: aiochris.types.CommentsUrl,\tfiles: aiochris.types.FilesUrl,\tplugin_instances: aiochris.types.PluginInstancesUrl)"}, "aiochris.models.logged_in.Feed.set": {"fullname": "aiochris.models.logged_in.Feed.set", "modulename": "aiochris.models.logged_in", "qualname": "Feed.set", "kind": "function", "doc": "

Change the name or the owner of this feed.

\n\n
Parameters
\n\n\n", "signature": "(\tself,\tname: Optional[str] = None,\towner: Union[str, aiochris.types.Username, NoneType] = None) -> aiochris.models.logged_in.Feed:", "funcdef": "async def"}, "aiochris.models.logged_in.Feed.get_note": {"fullname": "aiochris.models.logged_in.Feed.get_note", "modulename": "aiochris.models.logged_in", "qualname": "Feed.get_note", "kind": "function", "doc": "

\n", "signature": "(self) -> aiochris.models.logged_in.FeedNote:", "funcdef": "async def"}, "aiochris.models.logged_in.Plugin": {"fullname": "aiochris.models.logged_in.Plugin", "modulename": "aiochris.models.logged_in", "qualname": "Plugin", "kind": "class", "doc": "

A ChRIS plugin. Create a plugin instance of this plugin to run it.

\n", "bases": "aiochris.models.public.PublicPlugin"}, "aiochris.models.logged_in.Plugin.__init__": {"fullname": "aiochris.models.logged_in.Plugin.__init__", "modulename": "aiochris.models.logged_in", "qualname": "Plugin.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginUrl,\tid: aiochris.types.PluginId,\tname: aiochris.types.PluginName,\tversion: aiochris.types.PluginVersion,\tdock_image: aiochris.types.ImageTag,\tpublic_repo: str,\tcompute_resources: aiochris.types.ComputeResourceUrl,\tparameters: aiochris.types.PluginParametersUrl,\tplugin_type: aiochris.enums.PluginType,\tinstances: aiochris.types.ApiUrl)"}, "aiochris.models.logged_in.Plugin.create_instance": {"fullname": "aiochris.models.logged_in.Plugin.create_instance", "modulename": "aiochris.models.logged_in", "qualname": "Plugin.create_instance", "kind": "function", "doc": "

Create a plugin instance, i.e. \"run\" this plugin.

\n\n

Parameters common to all plugins are described below.\nNot all valid parameters are listed, since each plugin's parameters are different.\nSome plugins have required parameters too.\nTo list all possible parameters, make a GET request to the specific plugin's instances link.

\n\n
Parameters
\n\n\n", "signature": "(\tself,\tprevious: Optional[aiochris.models.logged_in.PluginInstance] = None,\t**kwargs) -> aiochris.models.logged_in.PluginInstance:", "funcdef": "async def"}, "aiochris.models.public": {"fullname": "aiochris.models.public", "modulename": "aiochris.models.public", "kind": "module", "doc": "

Read-only models for CUBE resources.

\n"}, "aiochris.models.public.ComputeResource": {"fullname": "aiochris.models.public.ComputeResource", "modulename": "aiochris.models.public", "qualname": "ComputeResource", "kind": "class", "doc": "

\n"}, "aiochris.models.public.ComputeResource.__init__": {"fullname": "aiochris.models.public.ComputeResource.__init__", "modulename": "aiochris.models.public", "qualname": "ComputeResource.__init__", "kind": "function", "doc": "

\n", "signature": "(\turl: aiochris.types.ApiUrl,\tid: aiochris.types.ComputeResourceId,\tcreation_date: str,\tmodification_date: str,\tname: aiochris.types.ComputeResourceName,\tcompute_url: aiochris.types.PfconUrl,\tcompute_auth_url: str,\tdescription: str,\tmax_job_exec_seconds: int)"}, "aiochris.models.public.PluginParameter": {"fullname": "aiochris.models.public.PluginParameter", "modulename": "aiochris.models.public", "qualname": "PluginParameter", "kind": "class", "doc": "

Information about a parameter (a command-line option/flag) of a plugin.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.public.PluginParameter.__init__": {"fullname": "aiochris.models.public.PluginParameter.__init__", "modulename": "aiochris.models.public", "qualname": "PluginParameter.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginParameterUrl,\tid: aiochris.types.ParameterGlobalId,\tname: aiochris.types.ParameterName,\ttype: Union[str, int, float, bool],\toptional: bool,\tdefault: Union[str, int, float, bool, NoneType],\tflag: str,\tshort_flag: str,\taction: Literal['store', 'store_true', 'store_false'],\thelp: str,\tui_exposed: bool,\tplugin: aiochris.types.PluginUrl)"}, "aiochris.models.public.PublicPlugin": {"fullname": "aiochris.models.public.PublicPlugin", "modulename": "aiochris.models.public", "qualname": "PublicPlugin", "kind": "class", "doc": "

A ChRIS plugin.

\n", "bases": "aiochris.link.linked.LinkedModel"}, "aiochris.models.public.PublicPlugin.__init__": {"fullname": "aiochris.models.public.PublicPlugin.__init__", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.__init__", "kind": "function", "doc": "

\n", "signature": "(\ts: aiohttp.client.ClientSession,\tmax_search_requests: int,\turl: aiochris.types.PluginUrl,\tid: aiochris.types.PluginId,\tname: aiochris.types.PluginName,\tversion: aiochris.types.PluginVersion,\tdock_image: aiochris.types.ImageTag,\tpublic_repo: str,\tcompute_resources: aiochris.types.ComputeResourceUrl,\tparameters: aiochris.types.PluginParametersUrl,\tplugin_type: aiochris.enums.PluginType)"}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"fullname": "aiochris.models.public.PublicPlugin.get_compute_resources", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.get_compute_resources", "kind": "function", "doc": "

Get the compute resources this plugin is registered to.

\n", "signature": "(\tself) -> aiochris.util.search.Search[aiochris.models.public.ComputeResource]:", "funcdef": "def"}, "aiochris.models.public.PublicPlugin.get_parameters": {"fullname": "aiochris.models.public.PublicPlugin.get_parameters", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.get_parameters", "kind": "function", "doc": "

Get the parameters of this plugin.

\n", "signature": "(\tself) -> aiochris.util.search.Search[aiochris.models.public.PluginParameter]:", "funcdef": "def"}, "aiochris.models.public.PublicPlugin.print_help": {"fullname": "aiochris.models.public.PublicPlugin.print_help", "modulename": "aiochris.models.public", "qualname": "PublicPlugin.print_help", "kind": "function", "doc": "

Display the help messages for this plugin's parameters.

\n", "signature": "(self, out: <class 'TextIO'> = <_io.StringIO object>) -> None:", "funcdef": "async def"}, "aiochris.types": {"fullname": "aiochris.types", "modulename": "aiochris.types", "kind": "module", "doc": "

NewTypes for ChRIS models.

\n"}, "aiochris.types.Username": {"fullname": "aiochris.types.Username", "modulename": "aiochris.types", "qualname": "Username", "kind": "variable", "doc": "

ChRIS user account username

\n", "default_value": " = aiochris.types.Username"}, "aiochris.types.Password": {"fullname": "aiochris.types.Password", "modulename": "aiochris.types", "qualname": "Password", "kind": "variable", "doc": "

ChRIS user account password

\n", "default_value": " = aiochris.types.Password"}, "aiochris.types.ChrisURL": {"fullname": "aiochris.types.ChrisURL", "modulename": "aiochris.types", "qualname": "ChrisURL", "kind": "variable", "doc": "

ChRIS backend API base URL

\n", "default_value": " = aiochris.types.ChrisURL"}, "aiochris.types.ApiUrl": {"fullname": "aiochris.types.ApiUrl", "modulename": "aiochris.types", "qualname": "ApiUrl", "kind": "variable", "doc": "

Any CUBE URL which I am too lazy to be more specific about.

\n", "default_value": " = aiochris.types.ApiUrl"}, "aiochris.types.ResourceId": {"fullname": "aiochris.types.ResourceId", "modulename": "aiochris.types", "qualname": "ResourceId", "kind": "variable", "doc": "

ID number which I am too lazy to be more specific about.

\n", "default_value": " = aiochris.types.ResourceId"}, "aiochris.types.PluginName": {"fullname": "aiochris.types.PluginName", "modulename": "aiochris.types", "qualname": "PluginName", "kind": "variable", "doc": "

Name of a ChRIS plugin

\n", "default_value": " = aiochris.types.PluginName"}, "aiochris.types.ImageTag": {"fullname": "aiochris.types.ImageTag", "modulename": "aiochris.types", "qualname": "ImageTag", "kind": "variable", "doc": "

OCI image tag (informally, a Docker Image name)

\n", "default_value": " = aiochris.types.ImageTag"}, "aiochris.types.PluginVersion": {"fullname": "aiochris.types.PluginVersion", "modulename": "aiochris.types", "qualname": "PluginVersion", "kind": "variable", "doc": "

Version string of a ChRIS plugin

\n", "default_value": " = aiochris.types.PluginVersion"}, "aiochris.types.PluginUrl": {"fullname": "aiochris.types.PluginUrl", "modulename": "aiochris.types", "qualname": "PluginUrl", "kind": "variable", "doc": "

URL of a ChRIS plugin.

\n\n

Examples

\n\n\n", "default_value": " = aiochris.types.PluginUrl"}, "aiochris.types.AdminUrl": {"fullname": "aiochris.types.AdminUrl", "modulename": "aiochris.types", "qualname": "AdminUrl", "kind": "variable", "doc": "

A admin resource URL ending with /chris-admin/api/v1/

\n", "default_value": " = aiochris.types.AdminUrl"}, "aiochris.types.NoteId": {"fullname": "aiochris.types.NoteId", "modulename": "aiochris.types", "qualname": "NoteId", "kind": "variable", "doc": "

A feed note's ID number.

\n", "default_value": " = aiochris.types.NoteId"}, "aiochris.types.NoteUrl": {"fullname": "aiochris.types.NoteUrl", "modulename": "aiochris.types", "qualname": "NoteUrl", "kind": "variable", "doc": "

A feed's note URL.

\n\n

Examples

\n\n\n", "default_value": " = aiochris.types.NoteUrl"}, "aiochris.util": {"fullname": "aiochris.util", "modulename": "aiochris.util", "kind": "module", "doc": "

\n"}, "aiochris.util.search": {"fullname": "aiochris.util.search", "modulename": "aiochris.util.search", "kind": "module", "doc": "

\n"}, "aiochris.util.search.Search": {"fullname": "aiochris.util.search.Search", "modulename": "aiochris.util.search", "qualname": "Search", "kind": "class", "doc": "

Abstraction over paginated collection responses from CUBE.\nSearch objects are returned by methods for search endpoints of the CUBE API.\nIt is an asynchronous iterable\nwhich produces items from responses that return multiple results.\nHTTP requests are fired as-neede, they happen in the background during iteration.\nNo request is made before the first time a Search object is called.

\n\n
\n\n
Pagination is handled internally and automatically.
\n\n

The query parameters limit and offset can be explicitly given, but they shouldn't.

\n\n
\n\n
Examples
\n\n

Use an async for loop to print the name of every feed:

\n\n
\n
all_feeds = chris.search_feeds()  # returns a Search[Feed]\nasync for feed in all_feeds:\n    print(feed.name)\n
\n
\n", "bases": "typing.Generic[~T], typing.AsyncIterable[~T]"}, "aiochris.util.search.Search.__init__": {"fullname": "aiochris.util.search.Search.__init__", "modulename": "aiochris.util.search", "qualname": "Search.__init__", "kind": "function", "doc": "

\n", "signature": "(\tbase_url: str,\tparams: dict[str, typing.Any],\tclient: aiochris.link.linked.Linked,\tItem: Type[~T],\tmax_requests: int = 100,\tsubpath: str = 'search/')"}, "aiochris.util.search.Search.first": {"fullname": "aiochris.util.search.Search.first", "modulename": "aiochris.util.search", "qualname": "Search.first", "kind": "function", "doc": "

Get the first item.

\n\n
See also
\n\n

get_only : similar use, but more strict

\n", "signature": "(self) -> Optional[~T]:", "funcdef": "async def"}, "aiochris.util.search.Search.get_only": {"fullname": "aiochris.util.search.Search.get_only", "modulename": "aiochris.util.search", "qualname": "Search.get_only", "kind": "function", "doc": "

Get the only item from a search with one result.

\n\n
Examples
\n\n

This method is very commonly used for getting \"one thing\" from CUBE.

\n\n
\n
await chris.search_plugins(name_exact="pl-dircopy", version="2.1.1").get_only()\n
\n
\n\n

In the example above, a search for plugins given (name_exact, version)\nis guaranteed to return either 0 or 1 result.

\n\n
Raises
\n\n\n\n
See also
\n\n

first : does the same thing but without checks.

\n\n
Parameters
\n\n\n", "signature": "(self, allow_multiple=False) -> ~T:", "funcdef": "async def"}, "aiochris.util.search.Search.count": {"fullname": "aiochris.util.search.Search.count", "modulename": "aiochris.util.search", "qualname": "Search.count", "kind": "function", "doc": "

Get the number of items in this collection search.

\n\n
Examples
\n\n

count is useful for rendering a progress bar. TODO example with files

\n", "signature": "(self) -> int:", "funcdef": "async def"}, "aiochris.util.search.acollect": {"fullname": "aiochris.util.search.acollect", "modulename": "aiochris.util.search", "qualname": "acollect", "kind": "function", "doc": "

Simple helper to convert a Search to a list.

\n\n

Using this function is not recommended unless you can assume the collection is small.

\n", "signature": "(async_iterable: AsyncIterable[~T]) -> list[~T]:", "funcdef": "async def"}, "aiochris.util.search.TooMuchPaginationError": {"fullname": "aiochris.util.search.TooMuchPaginationError", "modulename": "aiochris.util.search", "qualname": "TooMuchPaginationError", "kind": "class", "doc": "

Specified maximum number of requests exceeded while retrieving results from a paginated resource.

\n", "bases": "aiochris.errors.BaseClientError"}, "aiochris.util.search.GetOnlyError": {"fullname": "aiochris.util.search.GetOnlyError", "modulename": "aiochris.util.search", "qualname": "GetOnlyError", "kind": "class", "doc": "

Search does not have exactly one result.

\n", "bases": "aiochris.errors.BaseClientError"}, "aiochris.util.search.NoneSearchError": {"fullname": "aiochris.util.search.NoneSearchError", "modulename": "aiochris.util.search", "qualname": "NoneSearchError", "kind": "class", "doc": "

A search expected to have at least one element, has none.

\n", "bases": "GetOnlyError"}, "aiochris.util.search.ManySearchError": {"fullname": "aiochris.util.search.ManySearchError", "modulename": "aiochris.util.search", "qualname": "ManySearchError", "kind": "class", "doc": "

A search expected to have only one result, has several.

\n", "bases": "GetOnlyError"}}, "docInfo": {"aiochris": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 2652}, "aiochris.AnonChrisClient": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.AnonChrisClient.from_url": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 21}, "aiochris.AnonChrisClient.search_plugins": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 24}, "aiochris.ChrisClient": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 18}, "aiochris.ChrisClient.create_user": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 3}, "aiochris.ChrisAdminClient": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"qualname": 5, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 10}, "aiochris.ChrisAdminClient.add_plugin": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 509}, "aiochris.ChrisAdminClient.create_compute_resource": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 219, "bases": 0, "doc": 8}, "aiochris.Search": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 197}, "aiochris.Search.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 3}, "aiochris.Search.first": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 23}, "aiochris.Search.get_only": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 224}, "aiochris.Search.count": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 31}, "aiochris.acollect": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 35}, "aiochris.Status": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "aiochris.Status.created": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.waiting": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.scheduled": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.started": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.registeringFiles": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.finishedSuccessfully": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.finishedWithError": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.Status.cancelled": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "aiochris.ParameterTypeName.string": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName.integer": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName.float": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.ParameterTypeName.boolean": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.admin": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.admin.ChrisAdminClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 10}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 509}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 219, "bases": 0, "doc": 8}, "aiochris.client.anon": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.anon.AnonChrisClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 23}, "aiochris.client.anon.AnonChrisClient.from_url": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 114, "bases": 0, "doc": 21}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 24}, "aiochris.client.authed": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.authed.AuthenticatedClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 7}, "aiochris.client.authed.AuthenticatedClient.from_login": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 189, "bases": 0, "doc": 28}, "aiochris.client.authed.AuthenticatedClient.from_token": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 25}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 226, "bases": 0, "doc": 274}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 6}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 6}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 7}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 381}, "aiochris.client.authed.AuthenticatedClient.user": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 8}, "aiochris.client.authed.AuthenticatedClient.username": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 21}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 21}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 35, "bases": 0, "doc": 42}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 7}, "aiochris.client.base": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.base.BaseChrisClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 12, "doc": 26}, "aiochris.client.base.BaseChrisClient.new": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 146, "bases": 0, "doc": 182}, "aiochris.client.base.BaseChrisClient.close": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 11}, "aiochris.client.base.BaseChrisClient.search_plugins": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 6}, "aiochris.client.from_chrs": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 33}, "aiochris.client.from_chrs.StoredToken": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "aiochris.client.from_chrs.StoredToken.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogin": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogin.token": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 17}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 21}, "aiochris.client.from_chrs.ChrsLogins": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"qualname": 2, "fullname": 6, "annotation": 6, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "aiochris.client.from_chrs.ChrsLogins.load": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 45, "bases": 0, "doc": 3}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 8}, "aiochris.client.from_chrs.ChrsKeyringError": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 7}, "aiochris.client.normal": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.client.normal.ChrisClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 10, "doc": 18}, "aiochris.client.normal.ChrisClient.create_user": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 3}, "aiochris.errors": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.errors.raise_for_status": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 6}, "aiochris.errors.BaseClientError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 11}, "aiochris.errors.ResponseError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.BadRequestError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.InternalServerError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.IncorrectLoginError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.errors.NonsenseResponseError": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 11}, "aiochris.models": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.collection_links": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 4, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 302, "bases": 0, "doc": 3}, "aiochris.models.collection_links.CollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.CollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 323, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AdminCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 344, "bases": 0, "doc": 3}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 3}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "aiochris.models.data": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 38}, "aiochris.models.data.UserData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "aiochris.models.data.UserData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 3}, "aiochris.models.data.PluginInstanceData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 31}, "aiochris.models.data.PluginInstanceData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 682, "bases": 0, "doc": 3}, "aiochris.models.data.PluginInstanceData.previous_id": {"qualname": 3, "fullname": 6, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 25}, "aiochris.models.data.PluginInstanceData.size": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 32}, "aiochris.models.data.PluginInstanceData.template": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 2, "signature": 0, "bases": 0, "doc": 10}, "aiochris.models.data.FeedData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.data.FeedData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 397, "bases": 0, "doc": 3}, "aiochris.models.data.FeedNoteData": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.data.FeedNoteData.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 3}, "aiochris.models.logged_in": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 36}, "aiochris.models.logged_in.User": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 3}, "aiochris.models.logged_in.User.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "aiochris.models.logged_in.File": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 7}, "aiochris.models.logged_in.File.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 103, "bases": 0, "doc": 3}, "aiochris.models.logged_in.File.parent": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 76}, "aiochris.models.logged_in.PACSFile": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 33}, "aiochris.models.logged_in.PACSFile.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 258, "bases": 0, "doc": 3}, "aiochris.models.logged_in.PluginInstance": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.logged_in.PluginInstance.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 682, "bases": 0, "doc": 3}, "aiochris.models.logged_in.PluginInstance.get_feed": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 11}, "aiochris.models.logged_in.PluginInstance.get": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 9}, "aiochris.models.logged_in.PluginInstance.set": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 12}, "aiochris.models.logged_in.PluginInstance.delete": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "aiochris.models.logged_in.PluginInstance.wait": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 217, "bases": 0, "doc": 126}, "aiochris.models.logged_in.FeedNote": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 3}, "aiochris.models.logged_in.FeedNote.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 123, "bases": 0, "doc": 3}, "aiochris.models.logged_in.FeedNote.get_feed": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 10}, "aiochris.models.logged_in.FeedNote.set": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 6}, "aiochris.models.logged_in.Feed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 10}, "aiochris.models.logged_in.Feed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 397, "bases": 0, "doc": 3}, "aiochris.models.logged_in.Feed.set": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 39}, "aiochris.models.logged_in.Feed.get_note": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 3}, "aiochris.models.logged_in.Plugin": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 16}, "aiochris.models.logged_in.Plugin.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 242, "bases": 0, "doc": 3}, "aiochris.models.logged_in.Plugin.create_instance": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 173}, "aiochris.models.public": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "aiochris.models.public.ComputeResource": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.models.public.ComputeResource.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "aiochris.models.public.PluginParameter": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 14}, "aiochris.models.public.PluginParameter.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 298, "bases": 0, "doc": 3}, "aiochris.models.public.PublicPlugin": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 6}, "aiochris.models.public.PublicPlugin.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 221, "bases": 0, "doc": 3}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 12}, "aiochris.models.public.PublicPlugin.get_parameters": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 9}, "aiochris.models.public.PublicPlugin.print_help": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "aiochris.types": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "aiochris.types.Username": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 6}, "aiochris.types.Password": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 6}, "aiochris.types.ChrisURL": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 7}, "aiochris.types.ApiUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 16}, "aiochris.types.ResourceId": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 15}, "aiochris.types.PluginName": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 7}, "aiochris.types.ImageTag": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 11}, "aiochris.types.PluginVersion": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 8}, "aiochris.types.PluginUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 28}, "aiochris.types.AdminUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 12}, "aiochris.types.NoteId": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 9}, "aiochris.types.NoteUrl": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 4, "signature": 0, "bases": 0, "doc": 22}, "aiochris.util": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.util.search": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "aiochris.util.search.Search": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 197}, "aiochris.util.search.Search.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 130, "bases": 0, "doc": 3}, "aiochris.util.search.Search.first": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 22, "bases": 0, "doc": 23}, "aiochris.util.search.Search.get_only": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 224}, "aiochris.util.search.Search.count": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 31}, "aiochris.util.search.acollect": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 35}, "aiochris.util.search.TooMuchPaginationError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 16}, "aiochris.util.search.GetOnlyError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 10}, "aiochris.util.search.NoneSearchError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 14}, "aiochris.util.search.ManySearchError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 13}}, "length": 171, "save": true}, "index": {"qualname": {"root": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 6}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "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": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Status.finishedSuccessfully": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Status.finishedWithError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ParameterTypeName.float": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.types.Username": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 17}}}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 10}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.started": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.scheduled": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginName": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris.types.PluginVersion": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ParameterTypeName": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.Password": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 8}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ChrisURL": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 5}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "d": {"docs": {"aiochris.Status.created": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 5, "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": {"aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.cancelled": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.registeringFiles": {"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": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.ResourceId": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.ResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ParameterTypeName.integer": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.InternalServerError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}}, "df": 1}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 11, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Status.waiting": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BaseClientError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"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": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BadRequestError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.NoteId": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"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": {"aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "fullname": {"root": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.Status": {"tf": 1}, "aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}, "aiochris.client": {"tf": 1}, "aiochris.client.admin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.client.normal": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models": {"tf": 1}, "aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util": {"tf": 1}, "aiochris.util.search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 171}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.anon": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 6}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.admin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 14}, "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": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 21}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Status.finishedSuccessfully": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Status.finishedWithError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 4}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ParameterTypeName.float": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.types.Username": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.util": {"tf": 1}, "aiochris.util.search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 12}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.util.search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.first": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1.4142135623730951}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 23}}}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}}, "df": 10}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.started": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.scheduled": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 7, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginName": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris.types.PluginVersion": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ParameterTypeName": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 5}}}}}}}}, "s": {"docs": {"aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.Password": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.models.public": {"tf": 1}, "aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 10, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 8}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ChrisURL": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 15, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 5}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "d": {"docs": {"aiochris.Status.created": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 5, "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": {"aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 13, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.cancelled": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client": {"tf": 1}, "aiochris.client.admin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.client.normal": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 46}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.registeringFiles": {"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": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.ResourceId": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.ResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 26, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 24}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ParameterTypeName.integer": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.InternalServerError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}}, "df": 1}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 11, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Status.waiting": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 4}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BaseClientError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "d": {"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": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BadRequestError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 26}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}}, "df": 13}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 13}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.normal": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.NoteId": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.errors": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 8}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models": {"tf": 1}, "aiochris.models.collection_links": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.ComputeResource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 62}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}}, "df": 1}}}}}}}}, "annotation": {"root": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"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": {}, "df": 0, "[": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}}, "default_value": {"root": {"docs": {"aiochris.Status.created": {"tf": 1.4142135623730951}, "aiochris.Status.waiting": {"tf": 1.4142135623730951}, "aiochris.Status.scheduled": {"tf": 1.4142135623730951}, "aiochris.Status.started": {"tf": 1.4142135623730951}, "aiochris.Status.registeringFiles": {"tf": 1.4142135623730951}, "aiochris.Status.finishedSuccessfully": {"tf": 1.4142135623730951}, "aiochris.Status.finishedWithError": {"tf": 1.4142135623730951}, "aiochris.Status.cancelled": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.string": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.integer": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.float": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.boolean": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 27, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 12}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.started": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.scheduled": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.created": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Status.cancelled": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ChrisURL": {"tf": 1}}, "df": 1}}}}}}}}, "x": {"2": {"7": {"docs": {"aiochris.Status.created": {"tf": 1.4142135623730951}, "aiochris.Status.waiting": {"tf": 1.4142135623730951}, "aiochris.Status.scheduled": {"tf": 1.4142135623730951}, "aiochris.Status.started": {"tf": 1.4142135623730951}, "aiochris.Status.registeringFiles": {"tf": 1.4142135623730951}, "aiochris.Status.finishedSuccessfully": {"tf": 1.4142135623730951}, "aiochris.Status.finishedWithError": {"tf": 1.4142135623730951}, "aiochris.Status.cancelled": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.string": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.integer": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.float": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName.boolean": {"tf": 1.4142135623730951}}, "df": 12}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "g": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Status.created": {"tf": 1}, "aiochris.Status.waiting": {"tf": 1}, "aiochris.Status.scheduled": {"tf": 1}, "aiochris.Status.started": {"tf": 1}, "aiochris.Status.registeringFiles": {"tf": 1}, "aiochris.Status.finishedSuccessfully": {"tf": 1}, "aiochris.Status.finishedWithError": {"tf": 1}, "aiochris.Status.cancelled": {"tf": 1}, "aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 12}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Status.waiting": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status.registeringFiles": {"tf": 1.4142135623730951}}, "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, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.ResourceId": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Status.finishedSuccessfully": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Status.finishedWithError": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ParameterTypeName.float": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ParameterTypeName.string": {"tf": 1}, "aiochris.ParameterTypeName.integer": {"tf": 1}, "aiochris.ParameterTypeName.float": {"tf": 1}, "aiochris.ParameterTypeName.boolean": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.Password": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginName": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris.types.PluginVersion": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ParameterTypeName.integer": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ParameterTypeName.boolean": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 3}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.types.NoteId": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 12}}}}}, "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": {"aiochris.types.Username": {"tf": 1}}, "df": 1}}}}}}}}}}, "signature": {"root": {"1": {"0": {"0": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"0": {"0": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "9": {"docs": {"aiochris.Search.__init__": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 2}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.449489742783178}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2.449489742783178}, "aiochris.util.search.Search.__init__": {"tf": 1.4142135623730951}}, "df": 6}, "docs": {}, "df": 0}, "5": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}, "docs": {"aiochris.AnonChrisClient.from_url": {"tf": 9.591663046625438}, "aiochris.AnonChrisClient.search_plugins": {"tf": 7}, "aiochris.ChrisClient.create_user": {"tf": 11.958260743101398}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 8}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 10.295630140987}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 13.114877048604}, "aiochris.Search.__init__": {"tf": 10.246950765959598}, "aiochris.Search.first": {"tf": 4.358898943540674}, "aiochris.Search.get_only": {"tf": 4.69041575982343}, "aiochris.Search.count": {"tf": 3.4641016151377544}, "aiochris.acollect": {"tf": 5.477225575051661}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 8}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 10.295630140987}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 13.114877048604}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 9.591663046625438}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 12.409673645990857}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 10.677078252031311}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 13.527749258468683}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 7.211102550927978}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 4.898979485566356}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 4.47213595499958}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 7}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 5.385164807134504}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 7}, "aiochris.client.base.BaseChrisClient.new": {"tf": 10.862780491200215}, "aiochris.client.base.BaseChrisClient.close": {"tf": 3.1622776601683795}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 7}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 6.708203932499369}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 7.681145747868608}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 3.4641016151377544}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 7.54983443527075}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 3.4641016151377544}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 5.385164807134504}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 6}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 10.488088481701515}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 11.958260743101398}, "aiochris.errors.raise_for_status": {"tf": 4.898979485566356}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 2}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 4.47213595499958}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 4.47213595499958}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 15.556349186104045}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 16.09347693943108}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 16.61324772583615}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 4.47213595499958}, "aiochris.models.data.UserData.__init__": {"tf": 8}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 23.194827009486403}, "aiochris.models.data.FeedData.__init__": {"tf": 17.663521732655695}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 9.9498743710662}, "aiochris.models.logged_in.User.__init__": {"tf": 9.486832980505138}, "aiochris.models.logged_in.File.__init__": {"tf": 9.055385138137417}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 14.422205101855956}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 23.194827009486403}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 4.898979485566356}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 4.898979485566356}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 8.06225774829855}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 3.4641016151377544}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 13.152946437965905}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 9.9498743710662}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 4.898979485566356}, "aiochris.models.logged_in.FeedNote.set": {"tf": 8.06225774829855}, "aiochris.models.logged_in.Feed.__init__": {"tf": 17.663521732655695}, "aiochris.models.logged_in.Feed.set": {"tf": 9.1104335791443}, "aiochris.models.logged_in.Feed.get_note": {"tf": 4.898979485566356}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 13.856406460551018}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 8}, "aiochris.models.public.ComputeResource.__init__": {"tf": 10.816653826391969}, "aiochris.models.public.PluginParameter.__init__": {"tf": 15.362291495737216}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 13.228756555322953}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 6.48074069840786}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 6.48074069840786}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 3.872983346207417}, "aiochris.util.search.Search.__init__": {"tf": 10.246950765959598}, "aiochris.util.search.Search.first": {"tf": 4.358898943540674}, "aiochris.util.search.Search.get_only": {"tf": 4.69041575982343}, "aiochris.util.search.Search.count": {"tf": 3.4641016151377544}, "aiochris.util.search.acollect": {"tf": 5.477225575051661}}, "df": 80, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 23, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 15}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}}, "df": 6}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 2.449489742783178}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 2.449489742783178}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 15, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 7, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 9}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 8}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 28}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 10}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.4142135623730951}}, "df": 13}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 5, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.4142135623730951}, "aiochris.models.data.UserData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.User.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 15}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "i": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 12, "t": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 2}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 2.8284271247461903}, "aiochris.Search.__init__": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 2.8284271247461903}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 2}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1.4142135623730951}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 3.7416573867739413}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 2}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2.23606797749979}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1.7320508075688772}}, "df": 38, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.7320508075688772}}, "df": 5, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.449489742783178}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "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": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 30}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 43}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 3}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "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": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 23}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 30}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"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": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "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": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 20}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 8}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 19, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2.8284271247461903}, "aiochris.models.data.FeedData.__init__": {"tf": 3}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2.8284271247461903}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 3}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 23, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}}, "df": 6}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 6}}}}}, "m": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"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": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2.23606797749979}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2.23606797749979}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 20}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 11}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 21}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.ChrisClient.create_user": {"tf": 2}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 2}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 3.872983346207417}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 4}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 4.47213595499958}, "aiochris.models.data.FeedData.__init__": {"tf": 3.1622776601683795}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.User.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 4.47213595499958}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 3.1622776601683795}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 3}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.ComputeResource.__init__": {"tf": 2}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 2.8284271247461903}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 61}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "y": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 6}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2}}, "df": 11}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 2.23606797749979}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 2.23606797749979}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 21, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 13, "s": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}}, "df": 8, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 7}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 3.7416573867739413}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 3.872983346207417}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 4}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 4.242640687119285}, "aiochris.models.data.FeedData.__init__": {"tf": 3.1622776601683795}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.User.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 4.242640687119285}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.__init__": {"tf": 3.1622776601683795}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 2.8284271247461903}, "aiochris.models.public.ComputeResource.__init__": {"tf": 2}, "aiochris.models.public.PluginParameter.__init__": {"tf": 2}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 2.6457513110645907}}, "df": 34}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 3}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 3}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}}, "df": 6}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 8}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 13, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}}, "df": 3}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.4142135623730951}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 5, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 2}, "k": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 2.23606797749979}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2.23606797749979}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 15, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 5, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}, "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": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}, "aiochris.models.data.UserData.__init__": {"tf": 1}, "aiochris.models.logged_in.User.__init__": {"tf": 1}}, "df": 4}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 5}}}, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.ChrisClient.create_user": {"tf": 1}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1}}, "df": 2}, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1.4142135623730951}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.4142135623730951}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 2}, "aiochris.models.data.FeedData.__init__": {"tf": 2}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 2}, "aiochris.models.logged_in.Feed.__init__": {"tf": 2}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 5}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.__init__": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 19}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.Search.__init__": {"tf": 1}, "aiochris.util.search.Search.__init__": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search.__init__": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1.4142135623730951}}, "df": 2}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 2.8284271247461903}, "aiochris.models.logged_in.Feed.__init__": {"tf": 2.8284271247461903}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 4, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 7, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 4}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}}}, "f": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}}, "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": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 6}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.File.__init__": {"tf": 1}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1}}, "df": 4}}}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data.FeedData.__init__": {"tf": 1}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1}}, "df": 2}}}}}}}, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.data.PluginInstanceData.__init__": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1}}, "df": 2}}, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1.4142135623730951}}, "df": 2}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PluginParameter.__init__": {"tf": 1}}, "df": 1}}}}, "x": {"2": {"7": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "bases": {"root": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 6, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 21}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4}, "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": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1.4142135623730951}}, "df": 2}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 8}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1}}, "df": 3}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}}}}}}}, "~": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "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": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}}, "df": 11}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 6}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}}, "df": 7, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.FeedData": {"tf": 1}, "aiochris.models.data.FeedNoteData": {"tf": 1}, "aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}}, "df": 7}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "~": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.Status": {"tf": 1.4142135623730951}, "aiochris.ParameterTypeName": {"tf": 1.4142135623730951}}, "df": 2}}}, "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": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.User": {"tf": 1}, "aiochris.models.logged_in.PluginInstance": {"tf": 1}, "aiochris.models.logged_in.FeedNote": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}}, "df": 4}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.User": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.FeedNote": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.Feed": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"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, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.PluginInstance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.models.logged_in.Plugin": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in.Plugin": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}, "1": {"0": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "1": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris": {"tf": 2}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 2}}, "df": 4}, "2": {"0": {"0": {"0": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 8}, "3": {"9": {"docs": {"aiochris": {"tf": 7.874007874011811}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 4.898979485566356}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 4.898979485566356}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 3.7416573867739413}, "aiochris.models.logged_in.File.parent": {"tf": 2}}, "df": 5}, "docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}, "4": {"4": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 3}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 1}}}}, "7": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "9": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris": {"tf": 41.12177038990418}, "aiochris.AnonChrisClient": {"tf": 1.7320508075688772}, "aiochris.AnonChrisClient.from_url": {"tf": 2.8284271247461903}, "aiochris.AnonChrisClient.search_plugins": {"tf": 2.449489742783178}, "aiochris.ChrisClient": {"tf": 2.23606797749979}, "aiochris.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient": {"tf": 2.23606797749979}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 17.11724276862369}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 9.327379053088816}, "aiochris.Search.__init__": {"tf": 1.7320508075688772}, "aiochris.Search.first": {"tf": 3.1622776601683795}, "aiochris.Search.get_only": {"tf": 10.535653752852738}, "aiochris.Search.count": {"tf": 3}, "aiochris.acollect": {"tf": 3.4641016151377544}, "aiochris.Status": {"tf": 1.7320508075688772}, "aiochris.Status.created": {"tf": 1.7320508075688772}, "aiochris.Status.waiting": {"tf": 1.7320508075688772}, "aiochris.Status.scheduled": {"tf": 1.7320508075688772}, "aiochris.Status.started": {"tf": 1.7320508075688772}, "aiochris.Status.registeringFiles": {"tf": 1.7320508075688772}, "aiochris.Status.finishedSuccessfully": {"tf": 1.7320508075688772}, "aiochris.Status.finishedWithError": {"tf": 1.7320508075688772}, "aiochris.Status.cancelled": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.string": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.integer": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.float": {"tf": 1.7320508075688772}, "aiochris.ParameterTypeName.boolean": {"tf": 1.7320508075688772}, "aiochris.client": {"tf": 1.7320508075688772}, "aiochris.client.admin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient": {"tf": 2.23606797749979}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 17.11724276862369}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1.7320508075688772}, "aiochris.client.anon": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 2.8284271247461903}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 2.449489742783178}, "aiochris.client.authed": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 11.445523142259598}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 15.588457268119896}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 3.1622776601683795}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 3.605551275463989}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1.7320508075688772}, "aiochris.client.base": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 7.280109889280518}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs": {"tf": 3.4641016151377544}, "aiochris.client.from_chrs.StoredToken": {"tf": 2}, "aiochris.client.from_chrs.StoredToken.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 3}, "aiochris.client.from_chrs.ChrsLogin.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.token": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 2.23606797749979}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 2.6457513110645907}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 3}, "aiochris.client.from_chrs.ChrsLogins.__init__": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogins.load": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1.7320508075688772}, "aiochris.client.normal": {"tf": 1.7320508075688772}, "aiochris.client.normal.ChrisClient": {"tf": 2.23606797749979}, "aiochris.client.normal.ChrisClient.create_user": {"tf": 1.7320508075688772}, "aiochris.errors": {"tf": 1.7320508075688772}, "aiochris.errors.raise_for_status": {"tf": 1.7320508075688772}, "aiochris.errors.BaseClientError": {"tf": 1.7320508075688772}, "aiochris.errors.ResponseError": {"tf": 1.7320508075688772}, "aiochris.errors.BadRequestError": {"tf": 1.7320508075688772}, "aiochris.errors.InternalServerError": {"tf": 1.7320508075688772}, "aiochris.errors.IncorrectLoginError": {"tf": 1.7320508075688772}, "aiochris.errors.NonsenseResponseError": {"tf": 1.7320508075688772}, "aiochris.models": {"tf": 1.7320508075688772}, "aiochris.models.collection_links": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks.has_field": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AbstractCollectionLinks.get": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AnonymousCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AnonymousCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.CollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.CollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminApiCollectionLinks": {"tf": 1.7320508075688772}, "aiochris.models.collection_links.AdminApiCollectionLinks.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data": {"tf": 3.1622776601683795}, "aiochris.models.data.UserData": {"tf": 2.23606797749979}, "aiochris.models.data.UserData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData": {"tf": 2.23606797749979}, "aiochris.models.data.PluginInstanceData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 3}, "aiochris.models.data.PluginInstanceData.size": {"tf": 2.449489742783178}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedData": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedNoteData": {"tf": 1.7320508075688772}, "aiochris.models.data.FeedNoteData.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in": {"tf": 3}, "aiochris.models.logged_in.User": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.User.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.File.parent": {"tf": 6.928203230275509}, "aiochris.models.logged_in.PACSFile": {"tf": 2.6457513110645907}, "aiochris.models.logged_in.PACSFile.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 6.708203932499369}, "aiochris.models.logged_in.FeedNote": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.set": {"tf": 4.123105625617661}, "aiochris.models.logged_in.Feed.get_note": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.__init__": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 7.280109889280518}, "aiochris.models.public": {"tf": 1.7320508075688772}, "aiochris.models.public.ComputeResource": {"tf": 1.7320508075688772}, "aiochris.models.public.ComputeResource.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter": {"tf": 1.7320508075688772}, "aiochris.models.public.PluginParameter.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.__init__": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1.7320508075688772}, "aiochris.types": {"tf": 1.7320508075688772}, "aiochris.types.Username": {"tf": 1.4142135623730951}, "aiochris.types.Password": {"tf": 1.4142135623730951}, "aiochris.types.ChrisURL": {"tf": 1.4142135623730951}, "aiochris.types.ApiUrl": {"tf": 1.7320508075688772}, "aiochris.types.ResourceId": {"tf": 1.7320508075688772}, "aiochris.types.PluginName": {"tf": 1.4142135623730951}, "aiochris.types.ImageTag": {"tf": 1.7320508075688772}, "aiochris.types.PluginVersion": {"tf": 1.4142135623730951}, "aiochris.types.PluginUrl": {"tf": 4.123105625617661}, "aiochris.types.AdminUrl": {"tf": 2}, "aiochris.types.NoteId": {"tf": 1.7320508075688772}, "aiochris.types.NoteUrl": {"tf": 3.605551275463989}, "aiochris.util": {"tf": 1.7320508075688772}, "aiochris.util.search": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 9.327379053088816}, "aiochris.util.search.Search.__init__": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.first": {"tf": 3.1622776601683795}, "aiochris.util.search.Search.get_only": {"tf": 10.535653752852738}, "aiochris.util.search.Search.count": {"tf": 3}, "aiochris.util.search.acollect": {"tf": 3.4641016151377544}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1.7320508075688772}, "aiochris.util.search.GetOnlyError": {"tf": 1.7320508075688772}, "aiochris.util.search.NoneSearchError": {"tf": 1.7320508075688772}, "aiochris.util.search.ManySearchError": {"tf": 1.7320508075688772}}, "df": 171, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"1": {"2": {"3": {"4": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris": {"tf": 4.898979485566356}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.types": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 35, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 4.47213595499958}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 3.1622776601683795}, "aiochris.client.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 5}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 3, "s": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}}, "df": 2, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "2": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {"aiochris": {"tf": 4.47213595499958}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1.4142135623730951}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 20, "s": {"docs": {"aiochris": {"tf": 2.23606797749979}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 3.7416573867739413}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 9, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}, "d": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 11, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1}}}}}}}}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"0": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": null}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "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": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 3.4641016151377544}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 2}}, "l": {"docs": {}, "df": 0, "l": {"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": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 8}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 4}}}, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"5": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}}, "docs": {}, "df": 0}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 10, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 15}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.errors.raise_for_status": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 2, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "#": {"docs": {}, "df": 0, "l": {"1": {"6": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.types.Password": {"tf": 1}}, "df": 5}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.449489742783178}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 14}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 1}}, "c": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {"aiochris": {"tf": 3}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 5, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 4.69041575982343}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.Status": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 3}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}, "aiochris.models.logged_in.Plugin": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.449489742783178}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}}, "df": 30, "s": {"docs": {"aiochris": {"tf": 3.1622776601683795}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 14}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 3, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 2}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.23606797749979}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.models.data": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}, "l": {"2": {"2": {"docs": {"aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 1}, "4": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"3": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}, "4": {"docs": {"aiochris.client.from_chrs.ChrsLogin": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.449489742783178}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data": {"tf": 1}}, "df": 2}}, "e": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 3.1622776601683795}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 4}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 2.449489742783178}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}, "z": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 8}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1, "m": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "z": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8}, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}}, "df": 2}}}, "w": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 5}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"1": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "f": {"4": {"9": {"9": {"1": {"4": {"4": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"7": {"9": {"6": {"2": {"2": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {}, "df": 0, "f": {"8": {"docs": {}, "df": 0, "a": {"4": {"5": {"9": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"8": {"0": {"docs": {}, "df": 0, "d": {"8": {"docs": {}, "df": 0, "e": {"3": {"4": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "b": {"0": {"4": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"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}}}, "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}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 11}}, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 7}}, "r": {"docs": {"aiochris": {"tf": 2}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 10, "g": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"6": {"docs": {"aiochris.types.PluginUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"4": {"docs": {"aiochris.types.NoteUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}, "docs": {}, "df": 0}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 2}, "f": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.Status": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.23606797749979}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 29, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}}, "df": 3}}}}, "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": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 2}}, "df": 1, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"aiochris": {"tf": 4.358898943540674}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2.8284271247461903}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.Status": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.8284271247461903}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 2}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 2}, "aiochris.models.logged_in.Feed": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PluginParameter": {"tf": 1.7320508075688772}, "aiochris.models.public.PublicPlugin": {"tf": 1}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 49, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 3}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 3.4641016151377544}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 14, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "#": {"7": {"1": {"7": {"4": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}}}}, "s": {"docs": {"aiochris": {"tf": 2}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"aiochris": {"tf": 2}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 4, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "n": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 14, "d": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 16}, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2}}, "df": 1}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}}, "df": 4}}}}}}}, "y": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.types.AdminUrl": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}}, "df": 2}, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 5.5677643628300215}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 7}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 6}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "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, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 3, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "d": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"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": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 7}}, "l": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 14, "o": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "/": {"docs": {}, "df": 0, "v": {"1": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "docs": {}, "df": 0}}}, "p": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 4}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}}, "df": 4}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in.PluginInstance.get": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 5}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.types.PluginUrl": {"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": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 8}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 3}}, "w": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 9}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 5}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}}, "df": 2, "a": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.7320508075688772}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2.449489742783178}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.449489742783178}}, "df": 2, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.data": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 3, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 2}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2}}, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}, "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": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}}, "df": 4}}}}}}}}}}, "k": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"aiochris": {"tf": 2}}, "df": 1}}}}}, "docs": {}, "df": 0}}, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 5, "n": {"docs": {"aiochris": {"tf": 3.3166247903554}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 22, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.Status": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.7320508075688772}}, "df": 11, "s": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 7}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "o": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2}, "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": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"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": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "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": {"aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.models.public.PluginParameter": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "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": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.types.ImageTag": {"tf": 1.4142135623730951}}, "df": 4}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "b": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 11, "e": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 6}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "s": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 2}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.util.search.Search": {"tf": 2}, "aiochris.util.search.Search.get_only": {"tf": 2}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}}, "df": 23}, "f": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 2}}, "df": 5}, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}}, "df": 5, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "k": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 8, "s": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2.6457513110645907}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.6457513110645907}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 11}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 4, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 5}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}}}}}}}, "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": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.public": {"tf": 1}}, "df": 6}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 6, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "#": {"docs": {}, "df": 0, "l": {"1": {"8": {"docs": {"aiochris.client.from_chrs.StoredToken": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "3": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 4, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 7, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 13}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}}, "t": {"docs": {"aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data": {"tf": 1}}, "df": 1}}}}}}, "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": {"aiochris.errors.raise_for_status": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.types.AdminUrl": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}}}}}, "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, "c": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3}}, "n": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 5}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 4.898979485566356}, "aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 15}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 3.1622776601683795}, "aiochris.models.logged_in.File": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PACSFile": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 7}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 7}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "s": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.Search": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.7320508075688772}}, "df": 9, "s": {"docs": {"aiochris.Search": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.7320508075688772}}, "df": 3}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 3.7416573867739413}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 41, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}}}, "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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.4142135623730951}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 6, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "s": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 11, "r": {"1": {"2": {"3": {"4": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris": {"tf": 1}}, "df": 1}, "2": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "4": {"3": {"2": {"1": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.data.UserData": {"tf": 1}, "aiochris.models.logged_in.Feed": {"tf": 1}, "aiochris.types.Username": {"tf": 1}, "aiochris.types.Password": {"tf": 1}}, "df": 9, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.types.Username": {"tf": 1}}, "df": 6, "}": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}}, "df": 4}, "d": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 2.6457513110645907}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.7320508075688772}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 9}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 2.8284271247461903}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}, "aiochris.types.ChrisURL": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.PluginUrl": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 8}}, "p": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 3.1622776601683795}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 13, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 4}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 2}, "aiochris.Search.get_only": {"tf": 2.6457513110645907}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_feeds": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.plugin_instances": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_pacsfiles": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.search_plugins": {"tf": 1}, "aiochris.util.search.Search": {"tf": 2}, "aiochris.util.search.Search.get_only": {"tf": 2.6457513110645907}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 27, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}}}}}, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}}, "df": 2}, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 13}, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.errors.NonsenseResponseError": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "f": {"docs": {"aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 2}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.cubes": {"tf": 1}}, "df": 5}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 5}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}}, "df": 3}}, "b": {"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": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "n": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}, "w": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "s": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}}, "df": 3, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.Status": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.register_plugin_from_store": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.register_plugin_from_store": {"tf": 1}}, "df": 2}}}, "r": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.7320508075688772}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.first": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 4}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 1}}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}, "c": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 3}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.acollect": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 3}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 3.3166247903554}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}, "aiochris.types.PluginName": {"tf": 1}, "aiochris.types.ImageTag": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 11, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}}, "o": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}, "aiochris.util.search.GetOnlyError": {"tf": 1}}, "df": 14, "e": {"docs": {"aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.types.NoteUrl": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.errors.BaseClientError": {"tf": 1}, "aiochris.errors.ResponseError": {"tf": 1}, "aiochris.errors.BadRequestError": {"tf": 1}, "aiochris.errors.InternalServerError": {"tf": 1}, "aiochris.errors.IncorrectLoginError": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 7, "e": {"docs": {"aiochris.util.search.NoneSearchError": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "i": {"docs": {"aiochris": {"tf": 1.7320508075688772}}, "df": 1}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {"aiochris.AnonChrisClient.from_url": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.create_compute_resource": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.from_url": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}}, "df": 9, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.types": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.types.NoteId": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 9}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}, "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": {"aiochris": {"tf": 2.449489742783178}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.types.PluginVersion": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}}}}, "y": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 3}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.AnonChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search.first": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.anon.AnonChrisClient": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.search_compute_resources": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 24, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 3}}}, "i": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}}}}}}, "t": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "u": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 1}}}, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"aiochris": {"tf": 2.23606797749979}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.Search": {"tf": 2.23606797749979}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.user": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1.7320508075688772}, "aiochris.client.base.BaseChrisClient.new": {"tf": 2.6457513110645907}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1.4142135623730951}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.7320508075688772}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 2.23606797749979}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search": {"tf": 2.23606797749979}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 39, "s": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 3}}, "y": {"docs": {"aiochris.Search": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1.4142135623730951}}, "df": 3}, "n": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}}, "df": 1}, "m": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.Search.count": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.base.BaseChrisClient.close": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.get": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.set": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.delete": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.FeedNote.set": {"tf": 1}, "aiochris.models.logged_in.Feed.set": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.models.public.PublicPlugin.get_parameters": {"tf": 1}, "aiochris.models.public.PublicPlugin.print_help": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.7320508075688772}, "aiochris.util.search.Search.count": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 31}, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"aiochris": {"tf": 3.3166247903554}, "aiochris.AnonChrisClient": {"tf": 1.4142135623730951}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 2.23606797749979}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.acollect": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2.23606797749979}, "aiochris.client.anon.AnonChrisClient": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 2.23606797749979}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 2.6457513110645907}, "aiochris.models.data": {"tf": 1}, "aiochris.models.data.PluginInstanceData": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.get_feed": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1.7320508075688772}, "aiochris.models.logged_in.FeedNote.get_feed": {"tf": 1}, "aiochris.models.logged_in.Plugin": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 2}, "aiochris.models.public.PublicPlugin.get_compute_resources": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1.4142135623730951}, "aiochris.util.search.NoneSearchError": {"tf": 1}, "aiochris.util.search.ManySearchError": {"tf": 1}}, "df": 30, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 2.449489742783178}, "aiochris.client.authed.AuthenticatedClient.from_login": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_token": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogins.get_token_for": {"tf": 1}}, "df": 4}}}, "p": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}, "d": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.Search.count": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 2}}, "o": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "g": {"docs": {"aiochris.types.ImageTag": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.ParameterTypeName": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.client.from_chrs.ChrsLogin.is_for": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 6}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 5.0990195135927845}, "aiochris.Search.get_only": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 2}}, "df": 4}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.get_all_compute_resources": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4, "s": {"docs": {"aiochris": {"tf": 1}, "aiochris.Search": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1.4142135623730951}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.models.public.PublicPlugin.print_help": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"1": {"0": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "r": {"0": {"6": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"0": {"1": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 2}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 2}}, "df": 2}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 5, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}}}, "y": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 2}}, "x": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "d": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"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": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.Search": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.first": {"tf": 1}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search.first": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 8}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.models.data": {"tf": 1.4142135623730951}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.models.public": {"tf": 1}, "aiochris.types": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.from_chrs": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.models.data": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.client.base.BaseChrisClient": {"tf": 1}}, "df": 2}}}, "y": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.size": {"tf": 1.4142135623730951}, "aiochris.models.data.PluginInstanceData.template": {"tf": 1}}, "df": 4}, "r": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}}, "df": 2}}}, "o": {"docs": {"aiochris.ChrisClient": {"tf": 1}, "aiochris.ChrisAdminClient": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient": {"tf": 1}, "aiochris.client.normal.ChrisClient": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"aiochris.Search": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.errors.NonsenseResponseError": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}, "aiochris.models.logged_in.PACSFile": {"tf": 1}, "aiochris.types.ApiUrl": {"tf": 1}, "aiochris.types.ResourceId": {"tf": 1}, "aiochris.util.search.Search": {"tf": 1}}, "df": 8}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.util.search.TooMuchPaginationError": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 3.1622776601683795}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.Search.count": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 2}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.from_chrs": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}, "aiochris.models.data": {"tf": 1}, "aiochris.models.logged_in.Plugin.create_instance": {"tf": 1}, "aiochris.types.AdminUrl": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}, "aiochris.util.search.Search.count": {"tf": 1}}, "df": 12, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.Search.get_only": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.util.search.Search.get_only": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.username": {"tf": 1}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.data.PluginInstanceData.previous_id": {"tf": 1.4142135623730951}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"aiochris": {"tf": 1.4142135623730951}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.models.logged_in.File.parent": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"aiochris": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 1}}, "s": {"docs": {"aiochris.models.logged_in.PACSFile": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.models.logged_in.PluginInstance.wait": {"tf": 2}}, "df": 1}}}, "e": {"docs": {"aiochris": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "l": {"docs": {"aiochris.client.base.BaseChrisClient.new": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}, "aiochris.models.logged_in": {"tf": 1}}, "df": 2}}}}}, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"aiochris": {"tf": 1.4142135623730951}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"aiochris.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1.4142135623730951}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {"aiochris.models.data.PluginInstanceData": {"tf": 1}}, "df": 1, "s": {"docs": {"aiochris.client.authed.AuthenticatedClient.upload_file": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"aiochris": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"aiochris.client.from_chrs.ChrsLogin.to_keyring_username": {"tf": 1}, "aiochris.client.from_chrs.ChrsKeyringError": {"tf": 1}}, "df": 2}}}}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"aiochris": {"tf": 1.7320508075688772}, "aiochris.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.acollect": {"tf": 1}, "aiochris.client.admin.ChrisAdminClient.add_plugin": {"tf": 1}, "aiochris.client.anon.AnonChrisClient.search_plugins": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1.4142135623730951}, "aiochris.client.base.BaseChrisClient.new": {"tf": 1}, "aiochris.models.logged_in.PluginInstance.wait": {"tf": 1}, "aiochris.util.search.acollect": {"tf": 1}}, "df": 10, "r": {"docs": {"aiochris": {"tf": 1}, "aiochris.client.authed.AuthenticatedClient.from_chrs": {"tf": 1}}, "df": 2}}}}, "x": {"docs": {"aiochris.models.logged_in.Plugin.create_instance": {"tf": 2.23606797749979}}, "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.