|
@ -1658,13 +1658,13 @@ db = connector.connect(host=<str>, user=<str>, password=<str>, |
|
|
</code></pre></div> |
|
|
</code></pre></div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div><h3 id="encode-1">Encode</h3><pre><code class="python language-python hljs"><bytes> = <str>.encode(<span class="hljs-string">'utf-8'</span>) <span class="hljs-comment"># Or: bytes(<str>, 'utf-8')</span> |
|
|
|
|
|
|
|
|
<div><h3 id="encode-1">Encode</h3><pre><code class="python language-python hljs"><bytes> = bytes(<str>, <span class="hljs-string">'utf-8'</span>) <span class="hljs-comment"># Or: <str>.encode('utf-8')</span> |
|
|
<bytes> = bytes(<coll_of_ints>) <span class="hljs-comment"># Ints must be in range from 0 to 255.</span> |
|
|
<bytes> = bytes(<coll_of_ints>) <span class="hljs-comment"># Ints must be in range from 0 to 255.</span> |
|
|
<bytes> = <int>.to_bytes(n_bytes, byteorder=<span class="hljs-string">'big|little'</span>, signed=<span class="hljs-keyword">False</span>) |
|
|
<bytes> = <int>.to_bytes(n_bytes, byteorder=<span class="hljs-string">'big|little'</span>, signed=<span class="hljs-keyword">False</span>) |
|
|
<bytes> = bytes.fromhex(<span class="hljs-string">'<hex>'</span>) |
|
|
<bytes> = bytes.fromhex(<span class="hljs-string">'<hex>'</span>) |
|
|
</code></pre></div> |
|
|
</code></pre></div> |
|
|
|
|
|
|
|
|
<div><h3 id="decode-1">Decode</h3><pre><code class="python language-python hljs"><str> = <bytes>.decode(<span class="hljs-string">'utf-8'</span>) <span class="hljs-comment"># Or: str(<bytes>, 'utf-8')</span> |
|
|
|
|
|
|
|
|
<div><h3 id="decode-1">Decode</h3><pre><code class="python language-python hljs"><str> = str(<bytes>, <span class="hljs-string">'utf-8'</span>) <span class="hljs-comment"># Or: <bytes>.decode('utf-8')</span> |
|
|
<list> = list(<bytes>) <span class="hljs-comment"># Returns ints in range from 0 to 255.</span> |
|
|
<list> = list(<bytes>) <span class="hljs-comment"># Returns ints in range from 0 to 255.</span> |
|
|
<int> = int.from_bytes(<bytes>, byteorder=<span class="hljs-string">'big|little'</span>, signed=<span class="hljs-keyword">False</span>) |
|
|
<int> = int.from_bytes(<bytes>, byteorder=<span class="hljs-string">'big|little'</span>, signed=<span class="hljs-keyword">False</span>) |
|
|
<span class="hljs-string">'<hex>'</span> = <bytes>.hex() |
|
|
<span class="hljs-string">'<hex>'</span> = <bytes>.hex() |
|
|