|
@ -1744,9 +1744,9 @@ db = connector.connect(host=<str>, user=<str>, password=<str>, |
|
|
<pre><code class="python language-python hljs"><bin_file>.write(<mview>) <span class="hljs-comment"># Writes mview to a binary file.</span> |
|
|
<pre><code class="python language-python hljs"><bin_file>.write(<mview>) <span class="hljs-comment"># Writes mview to a binary file.</span> |
|
|
<bytes> = bytes(<mview>) <span class="hljs-comment"># Creates a new bytes object.</span> |
|
|
<bytes> = bytes(<mview>) <span class="hljs-comment"># Creates a new bytes object.</span> |
|
|
<bytes> = <bytes>.join(<coll_of_mviews>) <span class="hljs-comment"># Joins mviews using bytes object as sep.</span> |
|
|
<bytes> = <bytes>.join(<coll_of_mviews>) <span class="hljs-comment"># Joins mviews using bytes object as sep.</span> |
|
|
|
|
|
<list> = list(<mview>) <span class="hljs-comment"># Returns list of ints or floats.</span> |
|
|
</code></pre> |
|
|
</code></pre> |
|
|
<pre><code class="python language-python hljs"><list> = list(<mview>) <span class="hljs-comment"># Returns list of ints or floats.</span> |
|
|
|
|
|
<str> = str(<mview>, <span class="hljs-string">'utf-8'</span>) |
|
|
|
|
|
|
|
|
<pre><code class="python language-python hljs"><str> = str(<mview>, <span class="hljs-string">'utf-8'</span>) |
|
|
<int> = int.from_bytes(<mview>, byteorder=<span class="hljs-string">'big|little'</span>, signed=<span class="hljs-keyword">False</span>) |
|
|
<int> = int.from_bytes(<mview>, byteorder=<span class="hljs-string">'big|little'</span>, signed=<span class="hljs-keyword">False</span>) |
|
|
<span class="hljs-string">'<hex>'</span> = <mview>.hex() |
|
|
<span class="hljs-string">'<hex>'</span> = <mview>.hex() |
|
|
</code></pre> |
|
|
</code></pre> |
|
|