ta-lib 0.4.33__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- ta_lib-0.4.33/AUTHORS +2 -0
- ta_lib-0.4.33/COPYRIGHT +2 -0
- ta_lib-0.4.33/LICENSE +21 -0
- ta_lib-0.4.33/MANIFEST.in +6 -0
- ta_lib-0.4.33/PKG-INFO +718 -0
- ta_lib-0.4.33/README.md +677 -0
- ta_lib-0.4.33/pyproject.toml +8 -0
- ta_lib-0.4.33/setup.cfg +4 -0
- ta_lib-0.4.33/setup.py +187 -0
- ta_lib-0.4.33/ta_lib.egg-info/PKG-INFO +718 -0
- ta_lib-0.4.33/ta_lib.egg-info/SOURCES.txt +24 -0
- ta_lib-0.4.33/ta_lib.egg-info/dependency_links.txt +1 -0
- ta_lib-0.4.33/ta_lib.egg-info/requires.txt +1 -0
- ta_lib-0.4.33/ta_lib.egg-info/top_level.txt +1 -0
- ta_lib-0.4.33/talib/__init__.py +344 -0
- ta_lib-0.4.33/talib/_ta_lib.c +110174 -0
- ta_lib-0.4.33/talib/_ta_lib.pyx +6 -0
- ta_lib-0.4.33/talib/abstract.py +27 -0
- ta_lib-0.4.33/talib/deprecated.py +2 -0
- ta_lib-0.4.33/talib/stream.py +6 -0
- ta_lib-0.4.33/tests/conftest.py +244 -0
- ta_lib-0.4.33/tests/test_abstract.py +369 -0
- ta_lib-0.4.33/tests/test_func.py +197 -0
- ta_lib-0.4.33/tests/test_pandas.py +51 -0
- ta_lib-0.4.33/tests/test_polars.py +88 -0
- ta_lib-0.4.33/tests/test_stream.py +67 -0
ta_lib-0.4.33/AUTHORS
ADDED
ta_lib-0.4.33/COPYRIGHT
ADDED
ta_lib-0.4.33/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Redistribution and use in source and binary forms, with or without
|
2
|
+
modification, are permitted provided that the following conditions are met:
|
3
|
+
|
4
|
+
1. Redistributions of source code must retain the above copyright notice,
|
5
|
+
this list of conditions and the following disclaimer.
|
6
|
+
|
7
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
8
|
+
this list of conditions and the following disclaimer in the documentation
|
9
|
+
and/or other materials provided with the distribution.
|
10
|
+
|
11
|
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
12
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
13
|
+
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
14
|
+
DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
15
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
16
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
17
|
+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
18
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
19
|
+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
20
|
+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
21
|
+
|