Skip to content

Commit 00ab49a

Browse files
release 2.6.0 docs
1 parent 7daa9a4 commit 00ab49a

File tree

15 files changed

+22
-20
lines changed

15 files changed

+22
-20
lines changed

docs/_modules/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ <h3>Navigation</h3>
254254
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
255255
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
256256
See <a href="/license.html">License</a> for more information.<br />
257-
Last updated on May 06 2024 at 20:41 (CET).
257+
Last updated on May 07 2024 at 10:18 (CET).
258258
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
259259
<br />
260260
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/_modules/unicorn_binance_websocket_api/manager.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ <h1>Source code for unicorn_binance_websocket_api.manager</h1><div class="highli
578578
<span class="k">if</span> <span class="n">warn_on_update</span> <span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_update_available</span><span class="p">():</span>
579579
<span class="n">update_msg</span> <span class="o">=</span> <span class="sa">f</span><span class="s2">&quot;Release </span><span class="si">{</span><span class="bp">self</span><span class="o">.</span><span class="n">name</span><span class="si">}</span><span class="s2">_&quot;</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">get_latest_version</span><span class="p">()</span> <span class="o">+</span> <span class="s2">&quot; is available, &quot;</span> \
580580
<span class="sa">f</span><span class="s2">&quot;please consider updating! (Changelog: &quot;</span> \
581-
<span class="sa">f</span><span class="s2">&quot;https://unicorn-binance-websocket-api.docs.lucit.tech/CHANGELOG.html)&quot;</span>
581+
<span class="sa">f</span><span class="s2">&quot;https://unicorn-binance-websocket-api.docs.lucit.tech/changelog.html)&quot;</span>
582582
<span class="nb">print</span><span class="p">(</span><span class="n">update_msg</span><span class="p">)</span>
583583
<span class="n">logger</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="n">update_msg</span><span class="p">)</span>
584584
<span class="bp">self</span><span class="o">.</span><span class="n">restclient</span> <span class="o">=</span> <span class="n">BinanceWebSocketApiRestclient</span><span class="p">(</span><span class="n">debug</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">debug</span><span class="p">,</span>
@@ -838,6 +838,9 @@ <h1>Source code for unicorn_binance_websocket_api.manager</h1><div class="highli
838838
<span class="k">except</span> <span class="ne">KeyError</span> <span class="k">as</span> <span class="n">error_msg</span><span class="p">:</span>
839839
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.send_with_stream(</span><span class="si">{</span><span class="n">stream_id</span><span class="si">}</span><span class="s2"> - KeyError: </span><span class="si">{</span><span class="n">error_msg</span><span class="si">}</span><span class="s2">&quot;</span><span class="p">)</span>
840840
<span class="k">return</span> <span class="kc">False</span>
841+
<span class="k">except</span> <span class="ne">AttributeError</span> <span class="k">as</span> <span class="n">error_msg</span><span class="p">:</span>
842+
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.send_with_stream(</span><span class="si">{</span><span class="n">stream_id</span><span class="si">}</span><span class="s2"> - AttributeError: </span><span class="si">{</span><span class="n">error_msg</span><span class="si">}</span><span class="s2">&quot;</span><span class="p">)</span>
843+
<span class="k">return</span> <span class="kc">False</span>
841844
<span class="k">else</span><span class="p">:</span>
842845
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.send_with_stream(</span><span class="si">{</span><span class="n">stream_id</span><span class="si">}</span><span class="s2"> - No valid asyncio loop!&quot;</span><span class="p">)</span>
843846
<span class="k">return</span> <span class="kc">False</span></div>
@@ -4607,9 +4610,9 @@ <h1>Source code for unicorn_binance_websocket_api.manager</h1><div class="highli
46074610
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.split_payload() CEX result is None!&quot;</span><span class="p">)</span>
46084611
<span class="k">return</span> <span class="kc">None</span>
46094612
<span class="k">elif</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_exchange_type</span><span class="p">(</span><span class="s1">&#39;dex&#39;</span><span class="p">):</span>
4610-
<span class="c1"># Todo: ???</span>
4611-
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.split_payload() DEX result is None!&quot;</span><span class="p">)</span>
4612-
<span class="k">return</span> <span class="kc">None</span>
4613+
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.split_payload() DEX result is None! (Dev: Todo!)&quot;</span><span class="p">)</span>
4614+
<span class="c1"># Todo:</span>
4615+
<span class="c1"># return None</span>
46134616
<span class="k">else</span><span class="p">:</span>
46144617
<span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager.split_payload() result is None!&quot;</span><span class="p">)</span>
46154618
<span class="k">return</span> <span class="kc">None</span></div>
@@ -5139,7 +5142,7 @@ <h3>Navigation</h3>
51395142
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
51405143
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
51415144
See <a href="/license.html">License</a> for more information.<br />
5142-
Last updated on May 06 2024 at 20:40 (CET).
5145+
Last updated on May 07 2024 at 10:18 (CET).
51435146
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
51445147
<br />
51455148
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/changelog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3988,7 +3988,7 @@ <h3>Navigation</h3>
39883988
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
39893989
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
39903990
See <a href="/license.html">License</a> for more information.<br />
3991-
Last updated on May 06 2024 at 20:41 (CET).
3991+
Last updated on May 07 2024 at 10:18 (CET).
39923992
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
39933993
<br />
39943994
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/code_of_conduct.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ <h3>Navigation</h3>
399399
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
400400
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
401401
See <a href="/license.html">License</a> for more information.<br />
402-
Last updated on May 06 2024 at 20:41 (CET).
402+
Last updated on May 07 2024 at 10:18 (CET).
403403
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
404404
<br />
405405
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/contributing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ <h3>Navigation</h3>
338338
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
339339
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
340340
See <a href="/license.html">License</a> for more information.<br />
341-
Last updated on May 06 2024 at 20:41 (CET).
341+
Last updated on May 07 2024 at 10:18 (CET).
342342
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
343343
<br />
344344
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/genindex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ <h3>Navigation</h3>
781781
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
782782
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
783783
See <a href="/license.html">License</a> for more information.<br />
784-
Last updated on May 06 2024 at 20:41 (CET).
784+
Last updated on May 07 2024 at 10:18 (CET).
785785
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
786786
<br />
787787
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ <h3>Navigation</h3>
10701070
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
10711071
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
10721072
See <a href="/license.html">License</a> for more information.<br />
1073-
Last updated on May 06 2024 at 20:41 (CET).
1073+
Last updated on May 07 2024 at 10:18 (CET).
10741074
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
10751075
<br />
10761076
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/license.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ <h3>Navigation</h3>
389389
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
390390
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
391391
See <a href="/license.html">License</a> for more information.<br />
392-
Last updated on May 06 2024 at 20:41 (CET).
392+
Last updated on May 07 2024 at 10:18 (CET).
393393
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
394394
<br />
395395
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/modules.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ <h3>Navigation</h3>
495495
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
496496
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
497497
See <a href="/license.html">License</a> for more information.<br />
498-
Last updated on May 06 2024 at 20:40 (CET).
498+
Last updated on May 07 2024 at 10:18 (CET).
499499
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
500500
<br />
501501
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/py-modindex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ <h3>Navigation</h3>
302302
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
303303
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
304304
See <a href="/license.html">License</a> for more information.<br />
305-
Last updated on May 06 2024 at 20:41 (CET).
305+
Last updated on May 07 2024 at 10:18 (CET).
306306
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
307307
<br />
308308
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/readme.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ <h3>Navigation</h3>
10751075
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
10761076
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
10771077
See <a href="/license.html">License</a> for more information.<br />
1078-
Last updated on May 06 2024 at 20:41 (CET).
1078+
Last updated on May 07 2024 at 10:18 (CET).
10791079
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
10801080
<br />
10811081
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/search.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ <h3>Navigation</h3>
227227
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
228228
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
229229
See <a href="/license.html">License</a> for more information.<br />
230-
Last updated on May 06 2024 at 20:41 (CET).
230+
Last updated on May 07 2024 at 10:18 (CET).
231231
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
232232
<br />
233233
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/security.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ <h3>Navigation</h3>
344344
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
345345
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
346346
See <a href="/license.html">License</a> for more information.<br />
347-
Last updated on May 06 2024 at 20:41 (CET).
347+
Last updated on May 07 2024 at 10:18 (CET).
348348
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
349349
<br />
350350
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/unicorn_binance_websocket_api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4313,7 +4313,7 @@ <h3>Navigation</h3>
43134313
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
43144314
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
43154315
See <a href="/license.html">License</a> for more information.<br />
4316-
Last updated on May 06 2024 at 20:40 (CET).
4316+
Last updated on May 07 2024 at 10:18 (CET).
43174317
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
43184318
<br />
43194319
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

unicorn_binance_websocket_api/manager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
from typing_extensions import Literal
6161

6262
__app_name__: str = "unicorn-binance-websocket-api"
63-
__version__: str = "2.5.0"
63+
__version__: str = "2.6.0"
6464

6565
logger = logging.getLogger("unicorn_binance_websocket_api")
6666

@@ -4133,7 +4133,6 @@ def split_payload(self, params, method, max_items_per_request=350):
41334133
logger.error(f"BinanceWebSocketApiManager.split_payload() CEX result is None!")
41344134
return None
41354135
elif self.is_exchange_type('dex'):
4136-
# Todo: ???
41374136
logger.error(f"BinanceWebSocketApiManager.split_payload() DEX result is None! (Dev: Todo!)")
41384137
# Todo:
41394138
# return None

0 commit comments

Comments
 (0)