@ -1729,18 +1729,6 @@ db = connector.connect(host=<str>, user=<str>, password=<str>,
</code></pre></div>
<pre><codeclass="python language-python hljs"><num> = <mview>[<index>] <spanclass="hljs-comment"># Returns int in range from 0 to 255.</span>
<mview> = <mview>[<slice>] <spanclass="hljs-comment"># Returns bytes even if it has only one element.</span>
<file>.write(<mview>)
</code></pre>
<pre><codeclass="python language-python hljs"><bytes> = <bytes>.join(<coll_of_mviews>) <spanclass="hljs-comment"># Joins elements using bytes object as separator.</span>
<div><h2id="deque"><ahref="#deque"name="deque">#</a>Deque</h2><p><strong>A thread-safe list with efficient appends and pops from either side. Pronounced "deck".</strong></p><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">from</span> collections <spanclass="hljs-keyword">import</span> deque
<div><h2id="table"><ahref="#table"name="table">#</a>Table</h2><div><h4id="printsacsvfileasanasciitable">Prints a CSV file as an ASCII table:</h4><pre><codeclass="python language-python hljs"><spanclass="hljs-comment"># $ pip3 install tabulate</span>