Skip to content

Commit b95edbc

Browse files
docs
1 parent 3a8db5d commit b95edbc

17 files changed

+23
-24
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ machine of [HETZNER CLOUD](https://www.hetzner.com) - [get 20 EUR starting credi
356356
## Installation and Upgrade
357357
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
358358

359-
Anaconda packages are available from Python version 3.8 and higher, But only in the latest module version!
359+
Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!
360360

361361
For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.
362362

dev/sphinx/source/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,9 @@ machine of [HETZNER CLOUD](https://www.hetzner.com) - [get 20 EUR starting credi
356356
## Installation and Upgrade
357357
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
358358

359-
Anaconda packages are available from Python version 3.8 and higher.
359+
Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!
360360

361-
For the PyPy interpreter we offer packages only from Python version 3.9 and higher.
361+
For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.
362362

363363
The current dependencies are listed [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt).
364364

docs/_modules/index.html

+1-1
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 Mar 28 2024 at 02:15 (CET).
257+
Last updated on Mar 28 2024 at 11:19 (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

+3-4
Original file line numberDiff line numberDiff line change
@@ -1055,9 +1055,8 @@ <h1>Source code for unicorn_binance_websocket_api.manager</h1><div class="highli
10551055
<span class="n">stopped_streams</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">stream_id</span><span class="p">)</span>
10561056
<span class="k">for</span> <span class="n">stream_id</span> <span class="ow">in</span> <span class="n">stopped_streams</span><span class="p">:</span>
10571057
<span class="k">if</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">stream_list</span><span class="p">[</span><span class="n">stream_id</span><span class="p">][</span><span class="s1">&#39;status&#39;</span><span class="p">]</span> <span class="o">==</span> <span class="s2">&quot;stopped&quot;</span>
1058-
<span class="ow">or</span> <span class="bp">self</span><span class="o">.</span><span class="n">stream_list</span><span class="p">[</span><span class="n">stream_id</span><span class="p">][</span><span class="s1">&#39;status&#39;</span><span class="p">]</span><span class="o">.</span><span class="n">startswith</span><span class="p">(</span><span class="s2">&quot;crashed&quot;</span><span class="p">))</span> \
1059-
<span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">stream_list</span><span class="p">[</span><span class="n">stream_id</span><span class="p">][</span><span class="s1">&#39;seconds_since_has_stopped&#39;</span><span class="p">]</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span><span class="p">:</span>
1060-
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">stream_list</span><span class="p">[</span><span class="n">stream_id</span><span class="p">][</span><span class="s1">&#39;seconds_since_has_stopped&#39;</span><span class="p">]</span> <span class="o">&gt;</span> <span class="n">age</span><span class="p">:</span>
1058+
<span class="ow">or</span> <span class="bp">self</span><span class="o">.</span><span class="n">stream_list</span><span class="p">[</span><span class="n">stream_id</span><span class="p">][</span><span class="s1">&#39;status&#39;</span><span class="p">]</span><span class="o">.</span><span class="n">startswith</span><span class="p">(</span><span class="s2">&quot;crashed&quot;</span><span class="p">)):</span>
1059+
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">get_stream_info</span><span class="p">(</span><span class="n">stream_id</span><span class="o">=</span><span class="n">stream_id</span><span class="p">)[</span><span class="s1">&#39;seconds_since_has_stopped&#39;</span><span class="p">]</span> <span class="o">&gt;</span> <span class="n">age</span><span class="p">:</span>
10611060
<span class="n">logger</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;BinanceWebSocketApiManager._auto_data_cleanup_stopped_streams() - &quot;</span>
10621061
<span class="sa">f</span><span class="s2">&quot;Removing all remaining data of stream with stream_id=</span><span class="si">{</span><span class="n">stream_id</span><span class="si">}</span><span class="s2"> from &quot;</span>
10631062
<span class="sa">f</span><span class="s2">&quot;this instance!&quot;</span><span class="p">)</span>
@@ -4927,7 +4926,7 @@ <h3>Navigation</h3>
49274926
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
49284927
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
49294928
See <a href="/license.html">License</a> for more information.<br />
4930-
Last updated on Mar 28 2024 at 01:32 (CET).
4929+
Last updated on Mar 28 2024 at 11:19 (CET).
49314930
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
49324931
<br />
49334932
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/_sources/readme.md.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,9 @@ machine of [HETZNER CLOUD](https://www.hetzner.com) - [get 20 EUR starting credi
356356
## Installation and Upgrade
357357
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
358358

359-
Anaconda packages are available from Python version 3.8 and higher.
359+
Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!
360360

361-
For the PyPy interpreter we offer packages only from Python version 3.9 and higher.
361+
For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.
362362

363363
The current dependencies are listed [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt).
364364

docs/changelog.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3911,7 +3911,7 @@ <h3>Navigation</h3>
39113911
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
39123912
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
39133913
See <a href="/license.html">License</a> for more information.<br />
3914-
Last updated on Mar 28 2024 at 02:15 (CET).
3914+
Last updated on Mar 28 2024 at 11:19 (CET).
39153915
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
39163916
<br />
39173917
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/code_of_conduct.html

+1-1
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 Mar 28 2024 at 02:15 (CET).
402+
Last updated on Mar 28 2024 at 11:19 (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

+1-1
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 Mar 28 2024 at 02:15 (CET).
341+
Last updated on Mar 28 2024 at 11:19 (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

+1-1
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ <h3>Navigation</h3>
779779
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
780780
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
781781
See <a href="/license.html">License</a> for more information.<br />
782-
Last updated on Mar 28 2024 at 02:15 (CET).
782+
Last updated on Mar 28 2024 at 11:19 (CET).
783783
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
784784
<br />
785785
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ <h3>Navigation</h3>
10541054
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
10551055
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
10561056
See <a href="/license.html">License</a> for more information.<br />
1057-
Last updated on Mar 28 2024 at 02:15 (CET).
1057+
Last updated on Mar 28 2024 at 11:19 (CET).
10581058
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
10591059
<br />
10601060
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/license.html

+1-1
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 Mar 28 2024 at 02:15 (CET).
392+
Last updated on Mar 28 2024 at 11:19 (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

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ <h3>Navigation</h3>
494494
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
495495
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
496496
See <a href="/license.html">License</a> for more information.<br />
497-
Last updated on Mar 28 2024 at 01:32 (CET).
497+
Last updated on Mar 28 2024 at 11:19 (CET).
498498
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
499499
<br />
500500
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/py-modindex.html

+1-1
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 Mar 28 2024 at 02:15 (CET).
305+
Last updated on Mar 28 2024 at 11:19 (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

+3-3
Original file line numberDiff line numberDiff line change
@@ -645,8 +645,8 @@ <h2>Live Demo<a class="headerlink" href="#live-demo" title="Link to this heading
645645
<section id="installation-and-upgrade">
646646
<h2>Installation and Upgrade<a class="headerlink" href="#installation-and-upgrade" title="Link to this heading"></a></h2>
647647
<p>The module requires Python 3.7 and runs smoothly up to and including Python 3.12.</p>
648-
<p>Anaconda packages are available from Python version 3.8 and higher.</p>
649-
<p>For the PyPy interpreter we offer packages only from Python version 3.9 and higher.</p>
648+
<p>Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!</p>
649+
<p>For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.</p>
650650
<p>The current dependencies are listed <a class="reference external" href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt">here</a>.</p>
651651
<p>If you run into errors during the installation take a look <a class="reference external" href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-suite/wiki/Installation">here</a>.</p>
652652
<section id="a-cython-binary-pypy-or-source-code-based-cpython-wheel-of-the-latest-version-with-pip-from-pypi">
@@ -1038,7 +1038,7 @@ <h3>Navigation</h3>
10381038
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
10391039
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
10401040
See <a href="/license.html">License</a> for more information.<br />
1041-
Last updated on Mar 28 2024 at 02:15 (CET).
1041+
Last updated on Mar 28 2024 at 11:19 (CET).
10421042
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
10431043
<br />
10441044
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

docs/search.html

+1-1
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 Mar 28 2024 at 02:15 (CET).
230+
Last updated on Mar 28 2024 at 11:19 (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

+1-1
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 Mar 28 2024 at 02:15 (CET).
347+
Last updated on Mar 28 2024 at 11:19 (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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4282,7 +4282,7 @@ <h3>Navigation</h3>
42824282
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
42834283
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
42844284
See <a href="/license.html">License</a> for more information.<br />
4285-
Last updated on Mar 28 2024 at 01:32 (CET).
4285+
Last updated on Mar 28 2024 at 11:19 (CET).
42864286
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
42874287
<br />
42884288
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

0 commit comments

Comments
 (0)