python-piped-api-client/search.js

46 lines
319 KiB
JavaScript

window.pdocSearch = (function(){
/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u<s.length;u++){var a=s[u];r[a]=this.pipeline.run(t.tokenizer(e[a]))}var l={};for(var c in o){var d=r[c]||r.any;if(d){var f=this.fieldSearch(d,c,o),h=o[c].boost;for(var p in f)f[p]=f[p]*h;for(var p in f)p in l?l[p]+=f[p]:l[p]=f[p]}}var v,g=[];for(var p in l)v={ref:p,score:l[p]},this.documentStore.hasDoc(p)&&(v.doc=this.documentStore.getDoc(p)),g.push(v);return g.sort(function(e,t){return t.score-e.score}),g},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=n[t].boost,s=null,u={};return 0!==r?(e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var r={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(s&&"AND"==i){var l={};for(var c in s)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(u,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in r?r[c]+=v:r[c]=v}},this),s=this.mergeScores(s,r,i)},this),s=this.coordNorm(s,u,e.length)):void 0},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,S=/(at|bl|iz)$/,x=new RegExp("([^aeiouylsz])\\1$"),w=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=S,a=x,l=w,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0}},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return!1;t=t[e[n]]}return!0},t.InvertedIndex.prototype.getNode=function(e){if(!e)return null;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return null;t=t[e[n]]}return t},t.InvertedIndex.prototype.getDocs=function(e){var t=this.getNode(e);return null==t?{}:t.docs},t.InvertedIndex.prototype.getTermFrequency=function(e,t){var n=this.getNode(e);return null==n?0:t in n.docs?n.docs[t].tf:0},t.InvertedIndex.prototype.getDocFreq=function(e){var t=this.getNode(e);return null==t?0:t.df},t.InvertedIndex.prototype.removeToken=function(e,t){if(e){var n=this.getNode(e);null!=n&&t in n.docs&&(delete n.docs[t],n.df-=1)}},t.InvertedIndex.prototype.expandToken=function(e,t,n){if(null==e||""==e)return[];var t=t||[];if(void 0==n&&(n=this.getNode(e),null==n))return t;n.df>0&&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;e<arguments.length;e++)t=arguments[e],~this.indexOf(t)||this.elements.splice(this.locationFor(t),0,t);this.length=this.elements.length},lunr.SortedSet.prototype.toArray=function(){return this.elements.slice()},lunr.SortedSet.prototype.map=function(e,t){return this.elements.map(e,t)},lunr.SortedSet.prototype.forEach=function(e,t){return this.elements.forEach(e,t)},lunr.SortedSet.prototype.indexOf=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;){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]?n++: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();o<r.length;o++)i.add(r[o]);return i},lunr.SortedSet.prototype.toJSON=function(){return this.toArray()},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
/** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"piped_api": {"fullname": "piped_api", "modulename": "piped_api", "type": "module", "doc": "<h1 id=\"piped-api-client-python\">Piped API client (Python)</h1>\n\n<p><a href=\"https://github.com/CWKevo/python-piped-api-client/actions/workflows/pytest.yml\"><img src=\"https://github.com/CWKevo/python-piped-api-client/actions/workflows/pytest.yml/badge.svg?branch=master\" alt=\"Test with pyTest\" /></a></p>\n\n<p>A Python API wrapper for <a href=\"https://piped-docs.kavin.rocks/\">Piped</a>. This can essentially be used as an alternative way to access YouTube's API, without needing to use an API key.</p>\n\n<h2 id=\"installation\">Installation</h2>\n\n<div class=\"pdoc-code codehilite\"><pre><span></span><code>pip install piped-api\n</code></pre></div>\n\n<h2 id=\"quickstart\">Quickstart</h2>\n\n<p>Getting started is very easy:</p>\n\n<div class=\"pdoc-code codehilite\"><pre><span></span><code><span class=\"kn\">from</span> <span class=\"nn\">piped_api</span> <span class=\"kn\">import</span> <span class=\"n\">PipedClient</span>\n\n<span class=\"n\">CLIENT</span> <span class=\"o\">=</span> <span class=\"n\">PipedClient</span><span class=\"p\">()</span>\n\n\n<span class=\"c1\"># Print out the first audio stream URL for a video:</span>\n<span class=\"n\">video</span> <span class=\"o\">=</span> <span class=\"n\">CLIENT</span><span class=\"o\">.</span><span class=\"n\">get_video</span><span class=\"p\">(</span><span class=\"n\">video_id</span><span class=\"p\">)</span>\n<span class=\"n\">audio_stream</span> <span class=\"o\">=</span> <span class=\"n\">video</span><span class=\"o\">.</span><span class=\"n\">get_streams</span><span class=\"p\">(</span><span class=\"s1\">&#39;audio&#39;</span><span class=\"p\">)[</span><span class=\"mi\">0</span><span class=\"p\">]</span>\n\n<span class=\"nb\">print</span><span class=\"p\">(</span><span class=\"sa\">f</span><span class=\"s2\">&quot;Audio stream URL: </span><span class=\"si\">{</span><span class=\"n\">audio_stream</span><span class=\"o\">.</span><span class=\"n\">url</span><span class=\"si\">}</span><span class=\"s2\"> (</span><span class=\"si\">{</span><span class=\"n\">audio_stream</span><span class=\"o\">.</span><span class=\"n\">mime_type</span><span class=\"si\">}</span><span class=\"s2\">)&quot;</span><span class=\"p\">)</span>\n</code></pre></div>\n\n<p>You can find more examples in the <a href=\"https://github.com/CWKevo/python-piped-api-client/tree/master/tests\"><code>tests</code></a> folder.</p>\n\n<h2 id=\"why\">Why?</h2>\n\n<!-- Soon... maybe.\n\nThis package has allowed me to start creating my open-source project, [ArchiveTube](https://github.com/CWKevo/ArchiveTube) - a scrapper and archive for YouTube content (videos and comments) - to preserve them and make them available to anyone, with ability to search for comments and videos. View hall of fame (most liked comments and videos), bring back dislikes via [ReturnYouTubeDislike.com](https://returnyoutubedislike.com), view deleted content and much more!\nGoogle has showed us that they make YouTube own us by harvesting our data. This is also followed by non-throught out decisions, which their users aren't happy with. Let's do it the other way around this time by reclaiming our content and entertainment back & make YouTube great again!\n-->\n\n<p>The creation of this package was primarily fueled by the same type of motivation <a href=\"https://piped-docs.kavin.rocks/docs/why/\">Piped has</a>.</p>\n\n<p>Google's API is not very easy-to-use - you must obtain some JSON thingy to use it, and it is very low-level and not very user-friendly.\nOn the other hand, this package accessed the <a href=\"https://piped.kavin.rocks/\">Piped API</a>, which has a much more high-level API and doesn't need an account or API keys.</p>\n\n<p>It is not meant to be a replacement for the official YouTube API, but it can help you to cut the strings that Google attaches to you when using their API.</p>\n\n<h2 id=\"useful-links\">Useful links</h2>\n\n<ul>\n<li><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/\">Piped's official API documentation</a></li>\n<li><a href=\"https://cwkevo.github.io/python-piped-api-client/\">Documentation for this package</a></li>\n</ul>\n\n<h2 id=\"support-me\">\ud83c\udf81 Support me</h2>\n\n<p>I create free software to benefit people.\nIf this project helps you and you like it, consider supporting me by donating via cryptocurrency:</p>\n\n<table>\n<thead>\n<tr>\n <th>Crypto</th>\n <th>Address</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n <td>Bitcoin</td>\n <td><a href=\"mailto:me@kevo.link\">E-mail me</a></td>\n</tr>\n<tr>\n <td>Ethereum</td>\n <td><code>0x12C598b3bC084710507c9d6d19C9434fD26864Cc</code></td>\n</tr>\n<tr>\n <td>Litecoin</td>\n <td><code>LgHQK1NQrRQ56AKvVtSxMubqbjSWh7DTD2</code></td>\n</tr>\n<tr>\n <td>Dash</td>\n <td><code>Xe7TYoRCYPdZyiQYDjgzCGxR5juPWV8PgZ</code></td>\n</tr>\n<tr>\n <td>Zcash:</td>\n <td><code>t1Pesobv3SShMHGfrZWe926nsnBo2pyqN3f</code></td>\n</tr>\n<tr>\n <td>Dogecoin:</td>\n <td><code>DALxrKSbcCXz619QqLj9qKXFnTp8u2cS12</code></td>\n</tr>\n<tr>\n <td>Ripple:</td>\n <td><code>rNQsgQvMbbBAd957XyDeNudA4jLH1ANERL</code></td>\n</tr>\n<tr>\n <td>Monero:</td>\n <td><code>48TfTddnpgnKBn13MdJNJwHfxDwwGngPgL3v6bNSTwGaXveeaUWzJcMUVrbWUyDSyPDwEJVoup2gmDuskkcFuNG99zatYFS</code></td>\n</tr>\n<tr>\n <td>Bitcoin Cash:</td>\n <td><code>qzx6pqzcltm7ely24wnhpzp65r8ltrqgeuevtrsj9n</code></td>\n</tr>\n<tr>\n <td>Ethereum Classic:</td>\n <td><code>0x383Dc3B83afBD66b4a5e64511525FbFeb2C023Db</code></td>\n</tr>\n</tbody>\n</table>\n\n<p>More cryptocurrencies are supported. If you are interested in donating with a different one, please <a href=\"mailto:me@kevo.link\">E-mail me</a>.\nNo other forms of donation are currently supported.</p>\n"}, "piped_api.client": {"fullname": "piped_api.client", "modulename": "piped_api.client", "type": "module", "doc": "<p></p>\n"}, "piped_api.client.APIError": {"fullname": "piped_api.client.APIError", "modulename": "piped_api.client", "qualname": "APIError", "type": "class", "doc": "<p>Raised when an API call fails</p>\n", "bases": "builtins.Exception"}, "piped_api.client.PipedClient": {"fullname": "piped_api.client.PipedClient", "modulename": "piped_api.client", "qualname": "PipedClient", "type": "class", "doc": "<p>An API client for <a href=\"https://piped.kavin.rocks\">Piped</a>.</p>\n\n<p>See also <a href=\"https://piped-docs.kavin.rocks/docs\">Piped API docs</a></p>\n"}, "piped_api.client.PipedClient.__init__": {"fullname": "piped_api.client.PipedClient.__init__", "modulename": "piped_api.client", "qualname": "PipedClient.__init__", "type": "function", "doc": "<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>base_api_url</code> - The base URL to the instance's API. Trailing slashes will be stripped.</li>\n<li><code>session</code> - A class/subclass of <code>requests.Session</code> to use for all requests.\nFor example, you could use <a href=\"https://pypi.org/project/requests-cache/\">requests-cache</a> to make all requests cacheable.</li>\n</ul>\n", "signature": "(\n self,\n base_api_url: str = 'https://pipedapi.kavin.rocks',\n session: Type[requests.sessions.Session] = <requests.sessions.Session object>\n)", "funcdef": "def"}, "piped_api.client.PipedClient.get_video": {"fullname": "piped_api.client.PipedClient.get_video", "modulename": "piped_api.client", "qualname": "PipedClient.get_video", "type": "function", "doc": "<p>Gets information about a specific video.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>video_id</code> - The ID of the video to get information for</li>\n<li><code>**kwargs</code> - Additional keyword arguments to pass to <code>requests.Session.get</code></li>\n</ul>\n\n<p><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/#streamsvideoid\">Piped Documentation</a></p>\n", "signature": "(self, video_id: str, **kwargs) -> piped_api.models.videos.Video", "funcdef": "def"}, "piped_api.client.PipedClient.get_comments": {"fullname": "piped_api.client.PipedClient.get_comments", "modulename": "piped_api.client", "qualname": "PipedClient.get_comments", "type": "function", "doc": "<p>Gets a list of comments for a specific video.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>video_id</code> - The ID of the video to get comments for</li>\n<li><code>nextpage</code> - Nextpage data, obtained from <code>.models.comments.Comments.nextpage</code> property. If this is <code>None</code>, the first page of comments is returned.\nThere are often 20 comments per page.</li>\n<li><code>**kwargs</code> - Additional keyword arguments to pass to <code>requests.Session.get</code></li>\n</ul>\n\n<p><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/#commentsvideoid\">Piped Documentation</a></p>\n", "signature": "(\n self,\n video_id: str,\n nextpage: Optional[Dict[str, Optional[str]]] = None,\n **kwargs\n) -> piped_api.models.comments.Comments", "funcdef": "def"}, "piped_api.client.PipedClient.get_trending": {"fullname": "piped_api.client.PipedClient.get_trending", "modulename": "piped_api.client", "qualname": "PipedClient.get_trending", "type": "function", "doc": "<p>Obtains trending videos for a specific country. If there are no trending videos (or <code>country_code</code> is invalid),\nan empty list is returned.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>country_code</code> - The country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\">ISO 3166-1 alpha-2</a>) to get trending videos for. This is automatically capitalized by this package,\nsince Piped for some reason doesn't accept lowercase country codes. Note: countries such as China or North Korea don't have trending videos, so they will always return an empty list.</li>\n<li><code>**kwargs</code> - Additional keyword arguments to pass to <code>requests.Session.get</code></li>\n</ul>\n\n<p><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/#trending\">Piped Documentation</a></p>\n", "signature": "(\n self,\n country_code: str = 'US',\n **kwargs\n) -> List[piped_api.models.videos.Video.RelatedStream]", "funcdef": "def"}, "piped_api.client.PipedClient.get_channel_by_id": {"fullname": "piped_api.client.PipedClient.get_channel_by_id", "modulename": "piped_api.client", "qualname": "PipedClient.get_channel_by_id", "type": "function", "doc": "<p>Gets information about a specific channel by its ID.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>channel_id</code> - The ID of the channel to get information for</li>\n<li><code>**kwargs</code> - Additional keyword arguments to pass to <code>requests.Session.get</code></li>\n</ul>\n\n<p><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/#channelchannelid\">Piped Documentation</a></p>\n", "signature": "(\n self,\n channel_id: str,\n nextpage: Optional[Dict[str, Optional[str]]] = None,\n **kwargs\n) -> Union[piped_api.models.channels.NextPageChannel, piped_api.models.channels.Channel]", "funcdef": "def"}, "piped_api.client.PipedClient.get_channel_by_name": {"fullname": "piped_api.client.PipedClient.get_channel_by_name", "modulename": "piped_api.client", "qualname": "PipedClient.get_channel_by_name", "type": "function", "doc": "<p>Gets information about a specific channel by its name.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>channel_name</code> - The name of the channel to get information for</li>\n<li><code>**kwargs</code> - Additional keyword arguments to pass to <code>requests.Session.get</code></li>\n</ul>\n\n<p><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/#cname\">Piped Documentation</a></p>\n", "signature": "(\n self,\n channel_name: str,\n **kwargs\n) -> piped_api.models.channels.Channel", "funcdef": "def"}, "piped_api.client.PipedClient.get_search_suggestions": {"fullname": "piped_api.client.PipedClient.get_search_suggestions", "modulename": "piped_api.client", "qualname": "PipedClient.get_search_suggestions", "type": "function", "doc": "<p>Obtains search suggestions for a query.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>search_query</code> - The query to get search suggestions for</li>\n<li><code>**kwargs</code> - Additional keyword arguments to pass to <code>requests.Session.get</code></li>\n</ul>\n\n<p><a href=\"https://piped-docs.kavin.rocks/docs/api-documentation/#suggestions\">Piped Documentation</a></p>\n", "signature": "(self, search_query: str, **kwargs) -> List[str]", "funcdef": "def"}, "piped_api.models": {"fullname": "piped_api.models", "modulename": "piped_api.models", "type": "module", "doc": "<p></p>\n"}, "piped_api.models.BasePipedModel": {"fullname": "piped_api.models.BasePipedModel", "modulename": "piped_api.models", "qualname": "BasePipedModel", "type": "class", "doc": "<p>Base class for all Piped models.</p>\n"}, "piped_api.models.BasePipedModel.__init__": {"fullname": "piped_api.models.BasePipedModel.__init__", "modulename": "piped_api.models", "qualname": "BasePipedModel.__init__", "type": "function", "doc": "<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>data</code> - The JSON (<code>dict</code>) data to initialize the model with.</li>\n</ul>\n", "signature": "(self, data: Dict[str, Any])", "funcdef": "def"}, "piped_api.models.channels": {"fullname": "piped_api.models.channels", "modulename": "piped_api.models.channels", "type": "module", "doc": "<p></p>\n"}, "piped_api.models.channels.NextPageChannel": {"fullname": "piped_api.models.channels.NextPageChannel", "modulename": "piped_api.models.channels", "qualname": "NextPageChannel", "type": "class", "doc": "<p>Represents a channel obtained via the <code>nextpage</code> endpoint.</p>\n\n<p>This model contains only <code>nextpage</code> and <code>relatedStreams</code>. It's a parent for <code>Channel</code>.</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.channels.NextPageChannel.nextpage": {"fullname": "piped_api.models.channels.NextPageChannel.nextpage", "modulename": "piped_api.models.channels", "qualname": "NextPageChannel.nextpage", "type": "variable", "doc": "<p>A JSON encoded string to be passed to the <code>'nextpage'</code> endpoint(s) when\nobtaining paginated data.</p>\n", "annotation": ": str"}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"fullname": "piped_api.models.channels.NextPageChannel.uploaded_videos", "modulename": "piped_api.models.channels", "qualname": "NextPageChannel.uploaded_videos", "type": "variable", "doc": "<p>List of uploaded videos from the current fetched data</p>\n\n<p>There are max. 30 videos per page</p>\n", "annotation": ": List[piped_api.models.videos.Video.RelatedStream]"}, "piped_api.models.channels.Channel": {"fullname": "piped_api.models.channels.Channel", "modulename": "piped_api.models.channels", "qualname": "Channel", "type": "class", "doc": "<p>Represents a YouTube channel.</p>\n\n<p>Contains properties of <code>NextPageChannel</code>.</p>\n", "bases": "NextPageChannel"}, "piped_api.models.channels.Channel.id": {"fullname": "piped_api.models.channels.Channel.id", "modulename": "piped_api.models.channels", "qualname": "Channel.id", "type": "variable", "doc": "<p>The channel's ID</p>\n", "annotation": ": str"}, "piped_api.models.channels.Channel.name": {"fullname": "piped_api.models.channels.Channel.name", "modulename": "piped_api.models.channels", "qualname": "Channel.name", "type": "variable", "doc": "<p>The channel's name</p>\n", "annotation": ": str"}, "piped_api.models.channels.Channel.avatar_url": {"fullname": "piped_api.models.channels.Channel.avatar_url", "modulename": "piped_api.models.channels", "qualname": "Channel.avatar_url", "type": "variable", "doc": "<p>The channel's avatar URL</p>\n", "annotation": ": str"}, "piped_api.models.channels.Channel.banner_url": {"fullname": "piped_api.models.channels.Channel.banner_url", "modulename": "piped_api.models.channels", "qualname": "Channel.banner_url", "type": "variable", "doc": "<p>The channel's banner URL</p>\n", "annotation": ": str"}, "piped_api.models.channels.Channel.description": {"fullname": "piped_api.models.channels.Channel.description", "modulename": "piped_api.models.channels", "qualname": "Channel.description", "type": "variable", "doc": "<p>The channel's description</p>\n", "annotation": ": str"}, "piped_api.models.channels.Channel.subscriber_count": {"fullname": "piped_api.models.channels.Channel.subscriber_count", "modulename": "piped_api.models.channels", "qualname": "Channel.subscriber_count", "type": "variable", "doc": "<p>The number of subscribers the channel has</p>\n", "annotation": ": int"}, "piped_api.models.channels.Channel.verified": {"fullname": "piped_api.models.channels.Channel.verified", "modulename": "piped_api.models.channels", "qualname": "Channel.verified", "type": "variable", "doc": "<p>Whether or not the channel is verified by YouTube (has a badge)</p>\n", "annotation": ": bool"}, "piped_api.models.comments": {"fullname": "piped_api.models.comments", "modulename": "piped_api.models.comments", "type": "module", "doc": "<p></p>\n"}, "piped_api.models.comments.Comments": {"fullname": "piped_api.models.comments.Comments", "modulename": "piped_api.models.comments", "qualname": "Comments", "type": "class", "doc": "<p>Base class for all Piped models.</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.comments.Comments.Comment": {"fullname": "piped_api.models.comments.Comments.Comment", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment", "type": "class", "doc": "<p>Base class for all Piped models.</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.comments.Comments.Comment.author": {"fullname": "piped_api.models.comments.Comments.Comment.author", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.author", "type": "variable", "doc": "<p>The name of the author of the comment</p>\n", "annotation": ": str"}, "piped_api.models.comments.Comments.Comment.comment_id": {"fullname": "piped_api.models.comments.Comments.Comment.comment_id", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.comment_id", "type": "variable", "doc": "<p>The comment ID</p>\n", "annotation": ": str"}, "piped_api.models.comments.Comments.Comment.comment_text": {"fullname": "piped_api.models.comments.Comments.Comment.comment_text", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.comment_text", "type": "variable", "doc": "<p>The text of the comment</p>\n", "annotation": ": str"}, "piped_api.models.comments.Comments.Comment.commented_time": {"fullname": "piped_api.models.comments.Comments.Comment.commented_time", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.commented_time", "type": "variable", "doc": "<p>The time the comment was made (format: <code>'x y ago'</code>).</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>The raw time from API also includes the <code>'(edited)'</code> suffix to mark comment as edited (if it was).\nBy accessing this property, the suffix is automatically removed.\nIf you for whatever reason want to keep the suffix, access this property directly via <code>Comment.data['commentedTime']</code></p>\n", "annotation": ": str"}, "piped_api.models.comments.Comments.Comment.is_edited": {"fullname": "piped_api.models.comments.Comments.Comment.is_edited", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.is_edited", "type": "variable", "doc": "<p>Whether or not the comment is edited.</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>This property checks whether there is <code>'(edited)'</code> in the <code>commentedTime</code> property, because that's where you get that from.\nSee <code>Comments.Comment.commented_time</code></p>\n", "annotation": ": bool"}, "piped_api.models.comments.Comments.Comment.commentor_url": {"fullname": "piped_api.models.comments.Comments.Comment.commentor_url", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.commentor_url", "type": "variable", "doc": "<p>The URL of the channel that made the comment</p>\n", "annotation": ": str"}, "piped_api.models.comments.Comments.Comment.replies_page": {"fullname": "piped_api.models.comments.Comments.Comment.replies_page", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.replies_page", "type": "variable", "doc": "<p>Same as <code>Comments.nextpage</code>, but to load replies.</p>\n\n<p><code>None</code> means that there are no replies.</p>\n", "annotation": ": Optional[str]"}, "piped_api.models.comments.Comments.Comment.hearted": {"fullname": "piped_api.models.comments.Comments.Comment.hearted", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.hearted", "type": "variable", "doc": "<p>Whether or not the comment has been hearted</p>\n", "annotation": ": bool"}, "piped_api.models.comments.Comments.Comment.like_count": {"fullname": "piped_api.models.comments.Comments.Comment.like_count", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.like_count", "type": "variable", "doc": "<p>The number of likes the comment has</p>\n", "annotation": ": int"}, "piped_api.models.comments.Comments.Comment.pinned": {"fullname": "piped_api.models.comments.Comments.Comment.pinned", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.pinned", "type": "variable", "doc": "<p>Whether or not the comment is pinned</p>\n", "annotation": ": bool"}, "piped_api.models.comments.Comments.Comment.thumbnail": {"fullname": "piped_api.models.comments.Comments.Comment.thumbnail", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.thumbnail", "type": "variable", "doc": "<p>The thumbnail of the commentor's channel</p>\n", "annotation": ": str"}, "piped_api.models.comments.Comments.Comment.verified": {"fullname": "piped_api.models.comments.Comments.Comment.verified", "modulename": "piped_api.models.comments", "qualname": "Comments.Comment.verified", "type": "variable", "doc": "<p>Whether or not the author of the comment is verified</p>\n", "annotation": ": bool"}, "piped_api.models.comments.Comments.get_comments": {"fullname": "piped_api.models.comments.Comments.get_comments", "modulename": "piped_api.models.comments", "qualname": "Comments.get_comments", "type": "function", "doc": "<p>Obtain a list of comments</p>\n", "signature": "(self) -> List[piped_api.models.comments.Comments.Comment]", "funcdef": "def"}, "piped_api.models.comments.Comments.disabled": {"fullname": "piped_api.models.comments.Comments.disabled", "modulename": "piped_api.models.comments", "qualname": "Comments.disabled", "type": "variable", "doc": "<p>Whether or not the comments are disabled</p>\n", "annotation": ": bool"}, "piped_api.models.comments.Comments.nextpage": {"fullname": "piped_api.models.comments.Comments.nextpage", "modulename": "piped_api.models.comments", "qualname": "Comments.nextpage", "type": "variable", "doc": "<p>A JSON encoded page, which is used for the nextpage endpoint.</p>\n\n<p>If there is no nextpage data, this returns <code>None</code>.</p>\n", "annotation": ": Optional[str]"}, "piped_api.models.videos": {"fullname": "piped_api.models.videos", "modulename": "piped_api.models.videos", "type": "module", "doc": "<p></p>\n"}, "piped_api.models.videos.Video": {"fullname": "piped_api.models.videos.Video", "modulename": "piped_api.models.videos", "qualname": "Video", "type": "class", "doc": "<p>Base class for all Piped models.</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.videos.Video.title": {"fullname": "piped_api.models.videos.Video.title", "modulename": "piped_api.models.videos", "qualname": "Video.title", "type": "variable", "doc": "<p>The title/name of the video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.description": {"fullname": "piped_api.models.videos.Video.description", "modulename": "piped_api.models.videos", "qualname": "Video.description", "type": "variable", "doc": "<p>The description of the video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.upload_date": {"fullname": "piped_api.models.videos.Video.upload_date", "modulename": "piped_api.models.videos", "qualname": "Video.upload_date", "type": "variable", "doc": "<p>The date the video was uploaded at.</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>Use <code>Video.data['uploadDate']</code> to get the raw string that was obtained from the API - this package\nautomatically converts the raw string to a <code>datetime.date</code> object.</p>\n", "annotation": ": datetime.date"}, "piped_api.models.videos.Video.uploader": {"fullname": "piped_api.models.videos.Video.uploader", "modulename": "piped_api.models.videos", "qualname": "Video.uploader", "type": "variable", "doc": "<p>The channel name of the author of the video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.uploader_url": {"fullname": "piped_api.models.videos.Video.uploader_url", "modulename": "piped_api.models.videos", "qualname": "Video.uploader_url", "type": "variable", "doc": "<p>The URI to the author's channel</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.uploader_avatar": {"fullname": "piped_api.models.videos.Video.uploader_avatar", "modulename": "piped_api.models.videos", "qualname": "Video.uploader_avatar", "type": "variable", "doc": "<p>The URL to the video author's avatar image</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.thumbnail_url": {"fullname": "piped_api.models.videos.Video.thumbnail_url", "modulename": "piped_api.models.videos", "qualname": "Video.thumbnail_url", "type": "variable", "doc": "<p>The URL to the video's thumbnail image</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.hls": {"fullname": "piped_api.models.videos.Video.hls", "modulename": "piped_api.models.videos", "qualname": "Video.hls", "type": "variable", "doc": "<p>The hls manifest URL, to be used for Livestreams</p>\n", "annotation": ": Optional[str]"}, "piped_api.models.videos.Video.dash": {"fullname": "piped_api.models.videos.Video.dash", "modulename": "piped_api.models.videos", "qualname": "Video.dash", "type": "variable", "doc": "<p>The dash manifest URL for OTF streams</p>\n", "annotation": ": Optional[str]"}, "piped_api.models.videos.Video.lbry_id": {"fullname": "piped_api.models.videos.Video.lbry_id", "modulename": "piped_api.models.videos", "qualname": "Video.lbry_id", "type": "variable", "doc": "<p>The lbry id of the video, if available. I assume this has something to do with https://lbry.com/</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.uploader_verified": {"fullname": "piped_api.models.videos.Video.uploader_verified", "modulename": "piped_api.models.videos", "qualname": "Video.uploader_verified", "type": "variable", "doc": "<p>Whether or not the channel that uploaded the video is verified by YouTube (badge)</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.duration": {"fullname": "piped_api.models.videos.Video.duration", "modulename": "piped_api.models.videos", "qualname": "Video.duration", "type": "variable", "doc": "<p>The duration of the video.</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>The original value from the API was in seconds (<code>Video.data['duration']</code>), but this package\nconverts it to a <code>datetime.timedelta</code> object.</p>\n", "annotation": ": datetime.timedelta"}, "piped_api.models.videos.Video.views": {"fullname": "piped_api.models.videos.Video.views", "modulename": "piped_api.models.videos", "qualname": "Video.views", "type": "variable", "doc": "<p>The number of views the video has received</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.likes": {"fullname": "piped_api.models.videos.Video.likes", "modulename": "piped_api.models.videos", "qualname": "Video.likes", "type": "variable", "doc": "<p>The amount of likes the video has received. <code>-1</code> if hidden</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.dislikes": {"fullname": "piped_api.models.videos.Video.dislikes", "modulename": "piped_api.models.videos", "qualname": "Video.dislikes", "type": "variable", "doc": "<p>The amount of dislikes the video has received. <code>-1</code> if hidden</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>This is obsolete since YouTube did a tiny gigantical little big whoopsie with their like system and screwed it all up\nYou can use awesome user-made projects such as https://returnyoutubedislike.com to obtain the dislike count</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream": {"fullname": "piped_api.models.videos.Video.Stream", "modulename": "piped_api.models.videos", "qualname": "Video.Stream", "type": "class", "doc": "<p>Either an audio or video stream of a video</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.videos.Video.Stream.url": {"fullname": "piped_api.models.videos.Video.Stream.url", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.url", "type": "variable", "doc": "<p>The URL of the stream</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Stream.format": {"fullname": "piped_api.models.videos.Video.Stream.format", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.format", "type": "variable", "doc": "<p>The format of the stream (<code>'M4A' or 'WEBMA_OPUS' or 'MPEG_4' or 'WEBM' or 'v3GPP'</code></p>\n\n<p>No, I don't know how many are there or what does each mean</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Stream.quality": {"fullname": "piped_api.models.videos.Video.Stream.quality", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.quality", "type": "variable", "doc": "<p>The standard quality we all know and love (e. g.: <code>'240p'</code> for video or <code>'128k'</code> for audio)</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Stream.mime_type": {"fullname": "piped_api.models.videos.Video.Stream.mime_type", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.mime_type", "type": "variable", "doc": "<p>If you come from web development (or other invidious area that works with these French mimes),\nthen you already know what this is. If not, consider <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types\">checking the Mozilla documentation</a></p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Stream.codec": {"fullname": "piped_api.models.videos.Video.Stream.codec", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.codec", "type": "variable", "doc": "<p>What is this? I don't know. A codec?</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Stream.video_only": {"fullname": "piped_api.models.videos.Video.Stream.video_only", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.video_only", "type": "variable", "doc": "<p>Whether or not the stream is video only (AKA. muted video)</p>\n", "annotation": ": bool"}, "piped_api.models.videos.Video.Stream.bitrate": {"fullname": "piped_api.models.videos.Video.Stream.bitrate", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.bitrate", "type": "variable", "doc": "<p>The bitrate of the stream</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.init_start": {"fullname": "piped_api.models.videos.Video.Stream.init_start", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.init_start", "type": "variable", "doc": "<p>Not sure what this does, but it seems to be useful for creating dash streams</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.init_end": {"fullname": "piped_api.models.videos.Video.Stream.init_end", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.init_end", "type": "variable", "doc": "<p>Not sure what this does, but it seems to be useful for creating dash streams</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.index_start": {"fullname": "piped_api.models.videos.Video.Stream.index_start", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.index_start", "type": "variable", "doc": "<p>Not sure what this does, but it seems to be useful for creating dash streams</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.index_end": {"fullname": "piped_api.models.videos.Video.Stream.index_end", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.index_end", "type": "variable", "doc": "<p>Not sure what this does, but it seems to be useful for creating dash streams</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.width": {"fullname": "piped_api.models.videos.Video.Stream.width", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.width", "type": "variable", "doc": "<p>The width of the stream. <code>'0'</code> for audio streams (makes sense)</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.height": {"fullname": "piped_api.models.videos.Video.Stream.height", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.height", "type": "variable", "doc": "<p>The height of the stream. <code>'0'</code> for audio streams (makes sense)</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.Stream.fps": {"fullname": "piped_api.models.videos.Video.Stream.fps", "modulename": "piped_api.models.videos", "qualname": "Video.Stream.fps", "type": "variable", "doc": "<p>Frames Per Second. This is usually <code>'0'</code> for audio and <code>'30'</code> or <code>'60'</code> for video</p>\n", "annotation": ": int"}, "piped_api.models.videos.Video.get_streams": {"fullname": "piped_api.models.videos.Video.get_streams", "modulename": "piped_api.models.videos", "qualname": "Video.get_streams", "type": "function", "doc": "<p>Get the streams of a video.</p>\n\n<h3 id=\"parameters\">Parameters:</h3>\n\n<ul>\n<li><code>type</code> - The type of stream to get. Either <code>'video'</code> or <code>'audio'</code></li>\n</ul>\n", "signature": "(\n self,\n type: Literal['video', 'audio'] = 'video'\n) -> List[piped_api.models.videos.Video.Stream]", "funcdef": "def"}, "piped_api.models.videos.Video.RelatedStream": {"fullname": "piped_api.models.videos.Video.RelatedStream", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream", "type": "class", "doc": "<p>A related stream (e. g.: related video to the current one from the right sidebar, video related to/uploaded by a channel and trending video).</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.videos.Video.RelatedStream.url": {"fullname": "piped_api.models.videos.Video.RelatedStream.url", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.url", "type": "variable", "doc": "<p>The URL to the related video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.title": {"fullname": "piped_api.models.videos.Video.RelatedStream.title", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.title", "type": "variable", "doc": "<p>The title of the related video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"fullname": "piped_api.models.videos.Video.RelatedStream.thumbnail", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.thumbnail", "type": "variable", "doc": "<p>The thumbnail URL of the related video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"fullname": "piped_api.models.videos.Video.RelatedStream.uploader_name", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.uploader_name", "type": "variable", "doc": "<p>The name of the channel that uploaded the related video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"fullname": "piped_api.models.videos.Video.RelatedStream.uploader_url", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.uploader_url", "type": "variable", "doc": "<p>The URL of the channel that uploaded the related video</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"fullname": "piped_api.models.videos.Video.RelatedStream.uploader_avatar", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.uploader_avatar", "type": "variable", "doc": "<p>The URL of the channel's avatar</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"fullname": "piped_api.models.videos.Video.RelatedStream.uploaded_date", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.uploaded_date", "type": "variable", "doc": "<p>The date the related video was uploaded (format: <code>'x y ago'</code>)</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.short_description": {"fullname": "piped_api.models.videos.Video.RelatedStream.short_description", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.short_description", "type": "variable", "doc": "<p>The short description of the related video. As far as I know, this is always <code>None</code> - perhaps some unused YouTube feature?</p>\n", "annotation": ": Optional[str]"}, "piped_api.models.videos.Video.RelatedStream.duration": {"fullname": "piped_api.models.videos.Video.RelatedStream.duration", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.duration", "type": "variable", "doc": "<p>The duration of the related video.</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>The original value from the API was in seconds (<code>Video.data['duration']</code>), but this package\nconverts it to a <code>datetime.timedelta</code> object.</p>\n", "annotation": ": datetime.timedelta"}, "piped_api.models.videos.Video.RelatedStream.views": {"fullname": "piped_api.models.videos.Video.RelatedStream.views", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.views", "type": "variable", "doc": "<p>The amount of views the related video has received</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"fullname": "piped_api.models.videos.Video.RelatedStream.uploaded", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.uploaded", "type": "variable", "doc": "<p>The date the related video was uploaded (as a <code>datetime.datetime</code> object).</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>The original value was in milliseconds since epoch (<code>Video.data['uploaded']</code>), but this package converts it to a <code>datetime.datetime</code> object.</p>\n", "annotation": ": datetime.datetime"}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"fullname": "piped_api.models.videos.Video.RelatedStream.uploader_verified", "modulename": "piped_api.models.videos", "qualname": "Video.RelatedStream.uploader_verified", "type": "variable", "doc": "<p>Whether or not the channel that uploaded the related video is verified by YouTube (e. g.: has badge)</p>\n", "annotation": ": bool"}, "piped_api.models.videos.Video.related_videos": {"fullname": "piped_api.models.videos.Video.related_videos", "modulename": "piped_api.models.videos", "qualname": "Video.related_videos", "type": "variable", "doc": "<p>List of related streams</p>\n", "annotation": ": List[piped_api.models.videos.Video.RelatedStream]"}, "piped_api.models.videos.Video.Subtitle": {"fullname": "piped_api.models.videos.Video.Subtitle", "modulename": "piped_api.models.videos", "qualname": "Video.Subtitle", "type": "class", "doc": "<p>Base class for all Piped models.</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.videos.Video.Subtitle.url": {"fullname": "piped_api.models.videos.Video.Subtitle.url", "modulename": "piped_api.models.videos", "qualname": "Video.Subtitle.url", "type": "variable", "doc": "<p>The URL to the subtitle</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Subtitle.mime_type": {"fullname": "piped_api.models.videos.Video.Subtitle.mime_type", "modulename": "piped_api.models.videos", "qualname": "Video.Subtitle.mime_type", "type": "variable", "doc": "<p>If you come from web development (or other invidious area that works with these French mimes),\nthen you already know what this is. If not, consider <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types\">checking the Mozilla documentation</a></p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Subtitle.name": {"fullname": "piped_api.models.videos.Video.Subtitle.name", "modulename": "piped_api.models.videos", "qualname": "Video.Subtitle.name", "type": "variable", "doc": "<p>The name of the language the captions are in</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Subtitle.code": {"fullname": "piped_api.models.videos.Video.Subtitle.code", "modulename": "piped_api.models.videos", "qualname": "Video.Subtitle.code", "type": "variable", "doc": "<p>The country code for the captions</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"fullname": "piped_api.models.videos.Video.Subtitle.auto_generated", "modulename": "piped_api.models.videos", "qualname": "Video.Subtitle.auto_generated", "type": "variable", "doc": "<p>Whether or not the captions are auto-generated by YouTube</p>\n", "annotation": ": bool"}, "piped_api.models.videos.Video.subtitles": {"fullname": "piped_api.models.videos.Video.subtitles", "modulename": "piped_api.models.videos", "qualname": "Video.subtitles", "type": "variable", "doc": "<p>A list of captions for the video</p>\n", "annotation": ": List[piped_api.models.videos.Video.Subtitle]"}, "piped_api.models.videos.Video.livestream": {"fullname": "piped_api.models.videos.Video.livestream", "modulename": "piped_api.models.videos", "qualname": "Video.livestream", "type": "variable", "doc": "<p>Whether or not the video is a livestream</p>\n", "annotation": ": bool"}, "piped_api.models.videos.Video.proxy_url": {"fullname": "piped_api.models.videos.Video.proxy_url", "modulename": "piped_api.models.videos", "qualname": "Video.proxy_url", "type": "variable", "doc": "<p>The base URL for Piped proxy</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Chapter": {"fullname": "piped_api.models.videos.Video.Chapter", "modulename": "piped_api.models.videos", "qualname": "Video.Chapter", "type": "class", "doc": "<p>A video chapter (or \"section\").</p>\n\n<p>YouTube displays a list of chapters, if there are timestamps in the description.</p>\n", "bases": "piped_api.models.BasePipedModel"}, "piped_api.models.videos.Video.Chapter.title": {"fullname": "piped_api.models.videos.Video.Chapter.title", "modulename": "piped_api.models.videos", "qualname": "Video.Chapter.title", "type": "variable", "doc": "<p>The title of the chapter</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Chapter.image": {"fullname": "piped_api.models.videos.Video.Chapter.image", "modulename": "piped_api.models.videos", "qualname": "Video.Chapter.image", "type": "variable", "doc": "<p>The image URL for the chapter</p>\n", "annotation": ": str"}, "piped_api.models.videos.Video.Chapter.start": {"fullname": "piped_api.models.videos.Video.Chapter.start", "modulename": "piped_api.models.videos", "qualname": "Video.Chapter.start", "type": "variable", "doc": "<p>The start time of the chapter</p>\n\n<h3 id=\"note\">Note:</h3>\n\n<p>The original value from the API was in seconds, this package automatically converts it to <code>datetime.timedelta</code></p>\n", "annotation": ": datetime.timedelta"}, "piped_api.models.videos.Video.chapters": {"fullname": "piped_api.models.videos.Video.chapters", "modulename": "piped_api.models.videos", "qualname": "Video.chapters", "type": "variable", "doc": "<p>A list of chapters for the video</p>\n", "annotation": ": List[piped_api.models.videos.Video.Chapter]"}}, "docInfo": {"piped_api": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 596}, "piped_api.client": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "piped_api.client.APIError": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "piped_api.client.PipedClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "piped_api.client.PipedClient.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 60}, "piped_api.client.PipedClient.get_video": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 53}, "piped_api.client.PipedClient.get_comments": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 94}, "piped_api.client.PipedClient.get_trending": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 118}, "piped_api.client.PipedClient.get_channel_by_id": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 56}, "piped_api.client.PipedClient.get_channel_by_name": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 12, "bases": 0, "doc": 56}, "piped_api.client.PipedClient.get_search_suggestions": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 8, "bases": 0, "doc": 51}, "piped_api.models": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "piped_api.models.BasePipedModel": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.BasePipedModel.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 6, "bases": 0, "doc": 24}, "piped_api.models.channels": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "piped_api.models.channels.NextPageChannel": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 35}, "piped_api.models.channels.NextPageChannel.nextpage": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "piped_api.models.channels.Channel": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 16}, "piped_api.models.channels.Channel.id": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "piped_api.models.channels.Channel.name": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "piped_api.models.channels.Channel.avatar_url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.channels.Channel.banner_url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.channels.Channel.description": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "piped_api.models.channels.Channel.subscriber_count": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.channels.Channel.verified": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "piped_api.models.comments": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "piped_api.models.comments.Comments": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 9}, "piped_api.models.comments.Comments.Comment": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 9}, "piped_api.models.comments.Comments.Comment.author": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "piped_api.models.comments.Comments.Comment.comment_id": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "piped_api.models.comments.Comments.Comment.comment_text": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.comments.Comments.Comment.commented_time": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 74}, "piped_api.models.comments.Comments.Comment.is_edited": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 47}, "piped_api.models.comments.Comments.Comment.commentor_url": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.comments.Comments.Comment.replies_page": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 25}, "piped_api.models.comments.Comments.Comment.hearted": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "piped_api.models.comments.Comments.Comment.like_count": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.comments.Comments.Comment.pinned": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.comments.Comments.Comment.thumbnail": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.comments.Comments.Comment.verified": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "piped_api.models.comments.Comments.get_comments": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 9, "bases": 0, "doc": 7}, "piped_api.models.comments.Comments.disabled": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.comments.Comments.nextpage": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 28}, "piped_api.models.videos": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "piped_api.models.videos.Video": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 9}, "piped_api.models.videos.Video.title": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.videos.Video.description": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.videos.Video.upload_date": {"qualname": 3, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 48}, "piped_api.models.videos.Video.uploader": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.videos.Video.uploader_url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.videos.Video.uploader_avatar": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.videos.Video.thumbnail_url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "piped_api.models.videos.Video.hls": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.videos.Video.dash": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.videos.Video.lbry_id": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "piped_api.models.videos.Video.uploader_verified": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "piped_api.models.videos.Video.duration": {"qualname": 2, "fullname": 6, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "piped_api.models.videos.Video.views": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "piped_api.models.videos.Video.likes": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "piped_api.models.videos.Video.dislikes": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 58}, "piped_api.models.videos.Video.Stream": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 11}, "piped_api.models.videos.Video.Stream.url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.videos.Video.Stream.format": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 38}, "piped_api.models.videos.Video.Stream.quality": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 29}, "piped_api.models.videos.Video.Stream.mime_type": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 34}, "piped_api.models.videos.Video.Stream.codec": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.videos.Video.Stream.video_only": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 14}, "piped_api.models.videos.Video.Stream.bitrate": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.videos.Video.Stream.init_start": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "piped_api.models.videos.Video.Stream.init_end": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "piped_api.models.videos.Video.Stream.index_start": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "piped_api.models.videos.Video.Stream.index_end": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "piped_api.models.videos.Video.Stream.width": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "piped_api.models.videos.Video.Stream.height": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "piped_api.models.videos.Video.Stream.fps": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 29}, "piped_api.models.videos.Video.get_streams": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 39}, "piped_api.models.videos.Video.RelatedStream": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 28}, "piped_api.models.videos.Video.RelatedStream.url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "piped_api.models.videos.Video.RelatedStream.title": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "piped_api.models.videos.Video.RelatedStream.short_description": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 25}, "piped_api.models.videos.Video.RelatedStream.duration": {"qualname": 3, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 42}, "piped_api.models.videos.Video.RelatedStream.views": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"qualname": 3, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 49}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "piped_api.models.videos.Video.related_videos": {"qualname": 3, "fullname": 7, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "piped_api.models.videos.Video.Subtitle": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 9}, "piped_api.models.videos.Video.Subtitle.url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.videos.Video.Subtitle.mime_type": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 34}, "piped_api.models.videos.Video.Subtitle.name": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "piped_api.models.videos.Video.Subtitle.code": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"qualname": 4, "fullname": 8, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "piped_api.models.videos.Video.subtitles": {"qualname": 2, "fullname": 6, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "piped_api.models.videos.Video.livestream": {"qualname": 2, "fullname": 6, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "piped_api.models.videos.Video.proxy_url": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "piped_api.models.videos.Video.Chapter": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 24}, "piped_api.models.videos.Video.Chapter.title": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "piped_api.models.videos.Video.Chapter.image": {"qualname": 3, "fullname": 7, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "piped_api.models.videos.Video.Chapter.start": {"qualname": 3, "fullname": 7, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "piped_api.models.videos.Video.chapters": {"qualname": 2, "fullname": 6, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}}, "length": 105, "save": true}, "index": {"qualname": {"root": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.author": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"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": {"piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 8}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 4}, "s": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Chapter.image": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 8}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 61, "s": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 4}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}}, "df": 13, "s": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 18}, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Subtitle.code": {"tf": 1}}, "df": 1, "c": {"docs": {"piped_api.models.videos.Video.Stream.codec": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}}, "df": 10}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 4, "s": {"docs": {"piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}}, "df": 3}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.banner_url": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 6, "s": {"docs": {"piped_api.models.videos.Video.subtitles": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 15, "s": {"docs": {"piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 3}, "r": {"docs": {"piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 8}}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 10}}}, "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": {"piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 3}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.disabled": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.dash": {"tf": 1}}, "df": 1}}}, "u": {"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": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.related_videos": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 13}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.height": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.hls": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.likes": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.video_only": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.Stream.width": {"tf": 1}}, "df": 1}}}}}}}, "fullname": {"root": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}, "piped_api.client": {"tf": 1}, "piped_api.client.APIError": {"tf": 1}, "piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models": {"tf": 1}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.channels": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 105, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 8}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"piped_api": {"tf": 1}, "piped_api.client": {"tf": 1}, "piped_api.client.APIError": {"tf": 1}, "piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models": {"tf": 1}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.channels": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 105, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.author": {"tf": 1}}, "df": 1}}}, "o": {"docs": {"piped_api.models.videos.Video.Subtitle.auto_generated": {"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": {"piped_api.client": {"tf": 1}, "piped_api.client.APIError": {"tf": 1}, "piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 10}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}}, "df": 13, "s": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.comments": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.get_comments": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments.disabled": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.nextpage": {"tf": 1.4142135623730951}}, "df": 19}, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Subtitle.code": {"tf": 1}}, "df": 1, "c": {"docs": {"piped_api.models.videos.Video.Stream.codec": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}}, "df": 10, "s": {"docs": {"piped_api.models.channels": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}}, "df": 12}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 4, "s": {"docs": {"piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 4}, "s": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Chapter.image": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 8}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 61, "s": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 62}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 4}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}}, "df": 3}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.banner_url": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 6, "s": {"docs": {"piped_api.models.videos.Video.subtitles": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 15, "s": {"docs": {"piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models": {"tf": 1}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.channels": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 94}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 3}, "r": {"docs": {"piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 8}}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 10}}}, "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": {"piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 3}}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.disabled": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.dash": {"tf": 1}}, "df": 1}}}, "u": {"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": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.related_videos": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 13}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.height": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.hls": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.likes": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.video_only": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.Stream.width": {"tf": 1}}, "df": 1}}}}}}}, "annotation": {"root": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 77, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}}, "df": 40}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.subtitles": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 4}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 4}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 4, "s": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}}, "df": 2}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 13}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 10}}}}, "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, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 5}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 3}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 1}}}}}}}}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 2}, "piped_api.client.PipedClient.get_video": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.4142135623730951}, "piped_api.models.BasePipedModel.__init__": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.get_comments": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.get_streams": {"tf": 1.7320508075688772}}, "df": 10, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 10}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 8}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}}, "df": 1}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 6}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 1, "[": {"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, "s": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}}, "df": 3}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 7}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_channel_by_name": {"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, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"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, "t": {"docs": {"piped_api.models.comments.Comments.get_comments": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.get_comments": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 1}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 8}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 8}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"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": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 8}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.Channel": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "doc": {"root": {"0": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 4, "x": {"1": {"2": {"docs": {}, "df": 0, "c": {"5": {"9": {"8": {"docs": {}, "df": 0, "b": {"3": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"0": {"8": {"4": {"7": {"1": {"0": {"5": {"0": {"7": {"docs": {}, "df": 0, "c": {"9": {"docs": {}, "df": 0, "d": {"6": {"docs": {}, "df": 0, "d": {"1": {"9": {"docs": {}, "df": 0, "c": {"9": {"4": {"3": {"4": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "d": {"2": {"6": {"8": {"6": {"4": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}, "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}, "3": {"8": {"3": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"3": {"docs": {}, "df": 0, "b": {"8": {"3": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"6": {"6": {"docs": {}, "df": 0, "b": {"4": {"docs": {}, "df": 0, "a": {"5": {"docs": {}, "df": 0, "e": {"6": {"4": {"5": {"1": {"1": {"5": {"2": {"5": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"2": {"docs": {}, "df": 0, "c": {"0": {"2": {"3": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "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}}, "1": {"2": {"8": {"docs": {}, "df": 0, "k": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 3}, "2": {"0": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}}, "df": 1}, "4": {"0": {"docs": {}, "df": 0, "p": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}, "3": {"0": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 2}, "1": {"6": {"6": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "4": {"8": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "n": {"1": {"3": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"3": {"docs": {}, "df": 0, "v": {"6": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"2": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"9": {"9": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}}, "docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}, "6": {"0": {"docs": {"piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"piped_api": {"tf": 17.52141546793523}, "piped_api.client": {"tf": 1.7320508075688772}, "piped_api.client.APIError": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient": {"tf": 3}, "piped_api.client.PipedClient.__init__": {"tf": 4.47213595499958}, "piped_api.client.PipedClient.get_video": {"tf": 4.795831523312719}, "piped_api.client.PipedClient.get_comments": {"tf": 5.744562646538029}, "piped_api.client.PipedClient.get_trending": {"tf": 5.291502622129181}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 4.795831523312719}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 4.795831523312719}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 4.795831523312719}, "piped_api.models": {"tf": 1.7320508075688772}, "piped_api.models.BasePipedModel": {"tf": 1.7320508075688772}, "piped_api.models.BasePipedModel.__init__": {"tf": 3.605551275463989}, "piped_api.models.channels": {"tf": 1.7320508075688772}, "piped_api.models.channels.NextPageChannel": {"tf": 3.7416573867739413}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 2.6457513110645907}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 2}, "piped_api.models.channels.Channel": {"tf": 2.8284271247461903}, "piped_api.models.channels.Channel.id": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.name": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.banner_url": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.description": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.verified": {"tf": 1.7320508075688772}, "piped_api.models.comments": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments.Comment": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 4.242640687119285}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 3.872983346207417}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 3.1622776601683795}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.get_comments": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.disabled": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.nextpage": {"tf": 2.8284271247461903}, "piped_api.models.videos": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.title": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.description": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.upload_date": {"tf": 3.605551275463989}, "piped_api.models.videos.Video.uploader": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.hls": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.dash": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.lbry_id": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.duration": {"tf": 3.605551275463989}, "piped_api.models.videos.Video.views": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.likes": {"tf": 2.23606797749979}, "piped_api.models.videos.Video.dislikes": {"tf": 3}, "piped_api.models.videos.Video.Stream": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.format": {"tf": 2.8284271247461903}, "piped_api.models.videos.Video.Stream.quality": {"tf": 3.4641016151377544}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 2}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.width": {"tf": 2.6457513110645907}, "piped_api.models.videos.Video.Stream.height": {"tf": 2.6457513110645907}, "piped_api.models.videos.Video.Stream.fps": {"tf": 3.7416573867739413}, "piped_api.models.videos.Video.get_streams": {"tf": 4.58257569495584}, "piped_api.models.videos.Video.RelatedStream": {"tf": 2}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 2.6457513110645907}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 2}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 3.605551275463989}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 3.872983346207417}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 2}, "piped_api.models.videos.Video.related_videos": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 2}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.subtitles": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.livestream": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.proxy_url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter": {"tf": 2.449489742783178}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter.start": {"tf": 2.8284271247461903}, "piped_api.models.videos.Video.chapters": {"tf": 1.4142135623730951}}, "df": 105, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 2.6457513110645907}, "piped_api.client.PipedClient": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 14, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.channels.Channel": {"tf": 1}}, "df": 1}}}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 7}}}}}, "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": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 9}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 3, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {"piped_api": {"tf": 2.23606797749979}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 27, "p": {"docs": {}, "df": 0, "i": {"docs": {"piped_api": {"tf": 3.605551275463989}, "piped_api.client.APIError": {"tf": 1}, "piped_api.client.PipedClient": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 9}}, "s": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 7, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.APIError": {"tf": 1}, "piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream": {"tf": 1}}, "df": 5, "d": {"docs": {"piped_api": {"tf": 2}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 6}}, "l": {"docs": {}, "df": 0, "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": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.client.PipedClient": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 2}}, "l": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}}, "df": 8}, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"piped_api": {"tf": 2.449489742783178}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 7}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 1, "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": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 4}}}}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}}, "df": 5}}}}}, "t": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "i": {"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": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 6}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 10, "a": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 6}}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 3}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}}, "df": 3}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.models.videos.Video.Stream.video_only": {"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": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "c": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}}, "df": 4}}}}}}}, "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": {"piped_api": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"piped_api": {"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, "c": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 5}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 2.23606797749979}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}}, "df": 10, "s": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 2.449489742783178}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}}, "df": 2, "s": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}, "c": {"docs": {"piped_api.models.videos.Video.Stream.codec": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.7320508075688772}, "piped_api.models.channels.NextPageChannel": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 21}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 4, "s": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "s": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.upload_date": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 8}, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 6, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.Stream.width": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.APIError": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}}, "df": 3}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 11}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1, "b": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2, "m": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1, "a": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"piped_api": {"tf": 2}, "piped_api.client.PipedClient": {"tf": 1}, "piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_trending": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.4142135623730951}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 32, "m": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}}, "df": 3}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 12}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}}}}}}, "t": {"1": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "v": {"3": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"9": {"2": {"6": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"2": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "f": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}, "docs": {}, "df": 0}}}}}}}, "docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}}, "df": 4, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 2.23606797749979}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 23}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"piped_api": {"tf": 2.8284271247461903}, "piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_video": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_comments": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 2.449489742783178}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1.7320508075688772}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.description": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.upload_date": {"tf": 2.23606797749979}, "piped_api.models.videos.Video.uploader": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.uploader_url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.duration": {"tf": 2}, "piped_api.models.videos.Video.views": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.likes": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.dislikes": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.Stream.url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.format": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.width": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.height": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.get_streams": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 2}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.Subtitle.code": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter.start": {"tf": 2}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 82, "i": {"docs": {}, "df": 0, "r": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 8}}, "y": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}, "n": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 11}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}}, "df": 3}}}}}}}}, "o": {"docs": {"piped_api": {"tf": 2.8284271247461903}, "piped_api.client.PipedClient.__init__": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_video": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_comments": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_trending": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.7320508075688772}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 31, "/": {"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, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 1}}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.get_streams": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 2}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 3, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.title": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 8, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 10}, "u": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 9}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}}, "df": 7}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.banner_url": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 4, "d": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}}, "df": 3}, "r": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 5}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.url": {"tf": 1}, "piped_api.models.videos.Video.proxy_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}}, "df": 17}, "i": {"docs": {"piped_api.models.videos.Video.uploader_url": {"tf": 1}}, "df": 1}}, "p": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 8}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "u": {"docs": {"piped_api": {"tf": 2.6457513110645907}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1.4142135623730951}}, "df": 7, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 9}}}}}}}, "s": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.channels.Channel.avatar_url": {"tf": 1}, "piped_api.models.channels.Channel.banner_url": {"tf": 1}, "piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api": {"tf": 2.23606797749979}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 10, "s": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}}, "df": 10}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 2}}}, "o": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Subtitle.url": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.7320508075688772}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 4}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 7}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.7320508075688772}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Stream.fps": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 3}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1.7320508075688772}, "piped_api.models.channels.NextPageChannel": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1.4142135623730951}}, "df": 5, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.channels.Channel": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "o": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 5, "t": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 18, "e": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 9}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.7320508075688772}, "piped_api.models.channels.Channel.name": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}}, "df": 6}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}}, "df": 3}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 6}}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 6}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 6}}}}, "i": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}}, "df": 5, "n": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "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": {"piped_api.client.PipedClient.get_video": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"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": {"piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"piped_api": {"tf": 2}, "piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_trending": {"tf": 1.7320508075688772}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 19, "o": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.Chapter.image": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.7320508075688772}, "piped_api.models.channels.Channel.id": {"tf": 1}, "piped_api.models.comments.Comments.Comment.comment_id": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 7}, "t": {"docs": {"piped_api": {"tf": 2.23606797749979}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 12, "s": {"docs": {"piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 2}}, "f": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 11}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.7320508075688772}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}}}}}, "z": {"docs": {}, "df": 0, "x": {"6": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"7": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"2": {"4": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "p": {"6": {"5": {"docs": {}, "df": 0, "r": {"8": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "j": {"9": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}}}}}}}}}}}}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}}}}}}, "docs": {}, "df": 0}}}, "g": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_video": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_comments": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1.4142135623730951}}, "df": 10, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}}, "df": 4}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}}}}}, "v": {"3": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api": {"tf": 2}}, "df": 1}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"piped_api": {"tf": 2.23606797749979}, "piped_api.client.PipedClient.get_video": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_comments": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.uploader": {"tf": 1}, "piped_api.models.videos.Video.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.thumbnail_url": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 36, "s": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 2}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1.4142135623730951}}, "df": 2}}}}, "a": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 3}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "f": {"docs": {"piped_api": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.__init__": {"tf": 1}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1.7320508075688772}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.author": {"tf": 1.4142135623730951}, "piped_api.models.comments.Comments.Comment.comment_text": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.comments.Comments.Comment.thumbnail": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.title": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.uploader": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.url": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.bitrate": {"tf": 1}, "piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_avatar": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.name": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.Chapter.title": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 46, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}}, "df": 3}}, "s": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}}, "df": 1}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1.4142135623730951}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "e": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 3}}}, "f": {"docs": {"piped_api.models.videos.Video.dash": {"tf": 1}}, "df": 1}}, "r": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.is_edited": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.pinned": {"tf": 1}, "piped_api.models.comments.Comments.Comment.verified": {"tf": 1}, "piped_api.models.comments.Comments.disabled": {"tf": 1}, "piped_api.models.videos.Video.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Stream": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 2.23606797749979}, "piped_api.models.videos.Video.Stream.quality": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Stream.video_only": {"tf": 1}, "piped_api.models.videos.Video.Stream.fps": {"tf": 1}, "piped_api.models.videos.Video.get_streams": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.auto_generated": {"tf": 1}, "piped_api.models.videos.Video.livestream": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 21, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 4}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}}, "m": {"4": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1.7320508075688772}}, "df": 1}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.channels.NextPageChannel": {"tf": 1}}, "df": 2, "s": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.BasePipedModel": {"tf": 1}, "piped_api.models.comments.Comments": {"tf": 1}, "piped_api.models.comments.Comments.Comment": {"tf": 1}, "piped_api.models.videos.Video": {"tf": 1}, "piped_api.models.videos.Video.Subtitle": {"tf": 1}}, "df": 6}}}}, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.Stream.video_only": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"piped_api": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "s": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.Stream.width": {"tf": 1}, "piped_api.models.videos.Video.Stream.height": {"tf": 1}}, "df": 2}}}, "x": {"docs": {"piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commentor_url": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "k": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.hls": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}}, "df": 2}}}}}, "y": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.models.channels.Channel.subscriber_count": {"tf": 1}, "piped_api.models.channels.Channel.verified": {"tf": 1}, "piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}, "piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.videos.Video.lbry_id": {"tf": 1}, "piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}}, "df": 11}, "n": {"docs": {}, "df": 0, "d": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.hearted": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.height": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.hls": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"piped_api": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Stream.quality": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 2, "s": {"docs": {"piped_api.models.comments.Comments.Comment.like_count": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.comments.Comments.get_comments": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}, "piped_api.models.videos.Video.subtitles": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}, "piped_api.models.videos.Video.chapters": {"tf": 1}}, "df": 8}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"piped_api.models.videos.Video.livestream": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.hls": {"tf": 1}}, "df": 1}}}}}}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "k": {"1": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "q": {"5": {"6": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "h": {"7": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"2": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}, "docs": {}, "df": 0}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.Subtitle.name": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"piped_api.models.videos.Video.lbry_id": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 5, "n": {"docs": {"piped_api": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1.4142135623730951}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}, "piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 9}}}}}}}}}}, "s": {"docs": {"piped_api.client.PipedClient": {"tf": 1}}, "df": 1}}, "n": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.videos.Video.Stream.format": {"tf": 1}, "piped_api.models.videos.Video.Stream.codec": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"piped_api": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}, "piped_api.models.videos.Video.dash": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.init_end": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_start": {"tf": 1}, "piped_api.models.videos.Video.Stream.index_end": {"tf": 1}}, "df": 6}}, "l": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "z": {"6": {"1": {"9": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "j": {"9": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"8": {"docs": {}, "df": 0, "u": {"2": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"1": {"2": {"docs": {"piped_api": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}}}}}}}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.models.BasePipedModel.__init__": {"tf": 1.4142135623730951}, "piped_api.models.channels.NextPageChannel.nextpage": {"tf": 1}, "piped_api.models.channels.NextPageChannel.uploaded_videos": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.comments.Comments.nextpage": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 10}, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.upload_date": {"tf": 1}, "piped_api.models.videos.Video.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 2}, "piped_api.models.videos.Video.Chapter.start": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.BasePipedModel.__init__": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.disabled": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1, "s": {"docs": {"piped_api.models.videos.Video.dislikes": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {"piped_api.models.videos.Video.dislikes": {"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": {"piped_api.models.channels.Channel.description": {"tf": 1}, "piped_api.models.videos.Video.description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.Chapter": {"tf": 1}}, "df": 4}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.Stream.mime_type": {"tf": 1}, "piped_api.models.videos.Video.Subtitle.mime_type": {"tf": 1}}, "df": 2}}}}}}}}}}, "u": {"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": {"piped_api.models.videos.Video.duration": {"tf": 1.4142135623730951}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.comments.Comments.Comment.replies_page": {"tf": 1.4142135623730951}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}, "piped_api.models.channels.Channel": {"tf": 1}}, "df": 2}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.client.PipedClient.__init__": {"tf": 2}, "piped_api.client.PipedClient.get_video": {"tf": 1}, "piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_id": {"tf": 1}, "piped_api.client.PipedClient.get_channel_by_name": {"tf": 1}, "piped_api.client.PipedClient.get_search_suggestions": {"tf": 1}}, "df": 7}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.PipedClient.get_comments": {"tf": 1}, "piped_api.client.PipedClient.get_trending": {"tf": 1}}, "df": 2}}, "s": {"docs": {"piped_api.models.comments.Comments.nextpage": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"piped_api.client.PipedClient.get_trending": {"tf": 1}, "piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.RelatedStream": {"tf": 1.7320508075688772}, "piped_api.models.videos.Video.RelatedStream.url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.title": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.thumbnail": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_name": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_url": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.short_description": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.duration": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploader_verified": {"tf": 1}, "piped_api.models.videos.Video.related_videos": {"tf": 1}}, "df": 13, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"piped_api.models.channels.NextPageChannel": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.models.videos.Video.views": {"tf": 1}, "piped_api.models.videos.Video.likes": {"tf": 1}, "piped_api.models.videos.Video.dislikes": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.views": {"tf": 1}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"piped_api.models.videos.Video.RelatedStream": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"9": {"5": {"7": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"4": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "h": {"1": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}}}}, "docs": {}, "df": 0}}}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"piped_api.client.APIError": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.upload_date": {"tf": 1.4142135623730951}}, "df": 2}}}, "x": {"docs": {"piped_api.models.comments.Comments.Comment.commented_time": {"tf": 1}, "piped_api.models.videos.Video.RelatedStream.uploaded_date": {"tf": 1}}, "df": 2, "e": {"7": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "r": {"5": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "v": {"8": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "z": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}}}}}}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}}}}}}, "docs": {}, "df": 0}}, "z": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"piped_api": {"tf": 1}}, "df": 1}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true};
// mirrored in build-search-index.js (part 1)
// Also split on html tags. this is a cheap heuristic, but good enough.
elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/);
let searchIndex;
if (docs._isPrebuiltIndex) {
console.info("using precompiled search index");
searchIndex = elasticlunr.Index.load(docs);
} else {
console.time("building search index");
// mirrored in build-search-index.js (part 2)
searchIndex = elasticlunr(function () {
this.pipeline.remove(elasticlunr.stemmer);
this.pipeline.remove(elasticlunr.stopWordFilter);
this.addField("qualname");
this.addField("fullname");
this.addField("annotation");
this.addField("default_value");
this.addField("signature");
this.addField("bases");
this.addField("doc");
this.setRef("fullname");
});
for (let doc of docs) {
searchIndex.addDoc(doc);
}
console.timeEnd("building search index");
}
return (term) => searchIndex.search(term, {
fields: {
qualname: {boost: 4},
fullname: {boost: 2},
annotation: {boost: 2},
default_value: {boost: 2},
signature: {boost: 2},
bases: {boost: 2},
doc: {boost: 1},
},
expand: true
});
})();