summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 06:28:00 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 06:28:00 +0000
commit84fdcb28990c54f68b748680607fae4c9ed88156 (patch)
tree0f217803929f7769c56badc1ea89ca96fa064ad9
parent602a689ea669bf8ed69ea274c5cd6418181fc6cb (diff)
automatic import of python-tradingview-ta
-rw-r--r--.gitignore1
-rw-r--r--python-tradingview-ta.spec271
-rw-r--r--sources1
3 files changed, 273 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..2d542a4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/tradingview_ta-3.3.0.tar.gz
diff --git a/python-tradingview-ta.spec b/python-tradingview-ta.spec
new file mode 100644
index 0000000..265e98e
--- /dev/null
+++ b/python-tradingview-ta.spec
@@ -0,0 +1,271 @@
+%global _empty_manifest_terminate_build 0
+Name: python-tradingview-ta
+Version: 3.3.0
+Release: 1
+Summary: Unofficial TradingView technical analysis API wrapper.
+License: MIT License
+URL: https://github.com/brian-the-dev/python-tradingview-ta
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a8/e1/5066e9e1ff3be56615fd5347501aaae92918947d30f76a36a7f707acfe0a/tradingview_ta-3.3.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-requests
+
+%description
+# python-tradingview-ta [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Documentation Status](https://readthedocs.org/projects/python-tradingview-ta/badge/?version=latest)](https://python-tradingview-ta.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://img.shields.io/pypi/v/tradingview-ta)](https://pypi.org/project/tradingview-ta/)
+ An unofficial python API wrapper to retrieve technical analysis from TradingView.
+
+ ![TradingView](https://raw.githubusercontent.com/brian-the-dev/python-tradingview-ta/main/images/tradingview.png)
+
+## Note
+ - Always update tradingview-ta for new features and bug fixes: `pip install -U tradingview_ta`
+ - Technical analysis for indices (index) is not supported by both TradingView and tradingview-ta, see issue [#67](https://github.com/brian-the-dev/python-tradingview-ta/issues/67) and [#84](https://github.com/brian-the-dev/python-tradingview-ta/issues/84).
+
+## Features
+* Faster response (compared to v2, which uses Selenium)
+* [Retrieve analysis for multiple symbols](https://python-tradingview-ta.readthedocs.io/en/latest/usage.html#retrieving-multiple-analysis)
+* Indicators
+
+## Demo
+You can try tradingview-ta online without installing Python: https://tradingview.brianthe.dev/.
+
+## Requirements
+ - Python 3.6 or newer.
+ - [Requests](https://pypi.org/project/requests/), included in installation.
+
+## Installation
+ [PyPI](https://pypi.org/project/tradingview-ta/) (stable, recommended):
+
+```pip install tradingview_ta```
+
+ GitHub (latest):
+
+```pip install git+https://github.com/brian-the-dev/python-tradingview-ta.git```
+
+
+## Example
+```python
+from tradingview_ta import TA_Handler, Interval, Exchange
+
+tesla = TA_Handler(
+ symbol="TSLA",
+ screener="america",
+ exchange="NASDAQ",
+ interval=Interval.INTERVAL_1_DAY,
+ # proxies={'http': 'http://example.com:8080'} # Uncomment to enable proxy (replace the URL).
+)
+print(tesla.get_analysis().summary)
+# Example output: {"RECOMMENDATION": "BUY", "BUY": 8, "NEUTRAL": 6, "SELL": 3}
+```
+
+Tip: Use https://tvdb.brianthe.dev/ if you don't know what symbol, screener, and exchange to use.
+
+## Documentation
+ [Read The Docs](https://python-tradingview-ta.readthedocs.io)
+
+## Issue
+ If you found a bug or have a question, please open an issue.
+
+## Warning
+ Trading is a risky activity, especially when done using an automated program. Never trade automatically without your supervision using results provided by tradingview-ta. Any monetary losses are not my fault.
+
+## Contributing
+ Pull requests (docs, bug fix, features) are welcomed! Any pull request (documentation, bug fix, features, etc) are welcomed. Please follow the [guidelines](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/CONTRIBUTING.md) and the [code of conduct](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/CODE_OF_CONDUCT.md).
+
+## License
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+%package -n python3-tradingview-ta
+Summary: Unofficial TradingView technical analysis API wrapper.
+Provides: python-tradingview-ta
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-tradingview-ta
+# python-tradingview-ta [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Documentation Status](https://readthedocs.org/projects/python-tradingview-ta/badge/?version=latest)](https://python-tradingview-ta.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://img.shields.io/pypi/v/tradingview-ta)](https://pypi.org/project/tradingview-ta/)
+ An unofficial python API wrapper to retrieve technical analysis from TradingView.
+
+ ![TradingView](https://raw.githubusercontent.com/brian-the-dev/python-tradingview-ta/main/images/tradingview.png)
+
+## Note
+ - Always update tradingview-ta for new features and bug fixes: `pip install -U tradingview_ta`
+ - Technical analysis for indices (index) is not supported by both TradingView and tradingview-ta, see issue [#67](https://github.com/brian-the-dev/python-tradingview-ta/issues/67) and [#84](https://github.com/brian-the-dev/python-tradingview-ta/issues/84).
+
+## Features
+* Faster response (compared to v2, which uses Selenium)
+* [Retrieve analysis for multiple symbols](https://python-tradingview-ta.readthedocs.io/en/latest/usage.html#retrieving-multiple-analysis)
+* Indicators
+
+## Demo
+You can try tradingview-ta online without installing Python: https://tradingview.brianthe.dev/.
+
+## Requirements
+ - Python 3.6 or newer.
+ - [Requests](https://pypi.org/project/requests/), included in installation.
+
+## Installation
+ [PyPI](https://pypi.org/project/tradingview-ta/) (stable, recommended):
+
+```pip install tradingview_ta```
+
+ GitHub (latest):
+
+```pip install git+https://github.com/brian-the-dev/python-tradingview-ta.git```
+
+
+## Example
+```python
+from tradingview_ta import TA_Handler, Interval, Exchange
+
+tesla = TA_Handler(
+ symbol="TSLA",
+ screener="america",
+ exchange="NASDAQ",
+ interval=Interval.INTERVAL_1_DAY,
+ # proxies={'http': 'http://example.com:8080'} # Uncomment to enable proxy (replace the URL).
+)
+print(tesla.get_analysis().summary)
+# Example output: {"RECOMMENDATION": "BUY", "BUY": 8, "NEUTRAL": 6, "SELL": 3}
+```
+
+Tip: Use https://tvdb.brianthe.dev/ if you don't know what symbol, screener, and exchange to use.
+
+## Documentation
+ [Read The Docs](https://python-tradingview-ta.readthedocs.io)
+
+## Issue
+ If you found a bug or have a question, please open an issue.
+
+## Warning
+ Trading is a risky activity, especially when done using an automated program. Never trade automatically without your supervision using results provided by tradingview-ta. Any monetary losses are not my fault.
+
+## Contributing
+ Pull requests (docs, bug fix, features) are welcomed! Any pull request (documentation, bug fix, features, etc) are welcomed. Please follow the [guidelines](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/CONTRIBUTING.md) and the [code of conduct](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/CODE_OF_CONDUCT.md).
+
+## License
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+%package help
+Summary: Development documents and examples for tradingview-ta
+Provides: python3-tradingview-ta-doc
+%description help
+# python-tradingview-ta [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Documentation Status](https://readthedocs.org/projects/python-tradingview-ta/badge/?version=latest)](https://python-tradingview-ta.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://img.shields.io/pypi/v/tradingview-ta)](https://pypi.org/project/tradingview-ta/)
+ An unofficial python API wrapper to retrieve technical analysis from TradingView.
+
+ ![TradingView](https://raw.githubusercontent.com/brian-the-dev/python-tradingview-ta/main/images/tradingview.png)
+
+## Note
+ - Always update tradingview-ta for new features and bug fixes: `pip install -U tradingview_ta`
+ - Technical analysis for indices (index) is not supported by both TradingView and tradingview-ta, see issue [#67](https://github.com/brian-the-dev/python-tradingview-ta/issues/67) and [#84](https://github.com/brian-the-dev/python-tradingview-ta/issues/84).
+
+## Features
+* Faster response (compared to v2, which uses Selenium)
+* [Retrieve analysis for multiple symbols](https://python-tradingview-ta.readthedocs.io/en/latest/usage.html#retrieving-multiple-analysis)
+* Indicators
+
+## Demo
+You can try tradingview-ta online without installing Python: https://tradingview.brianthe.dev/.
+
+## Requirements
+ - Python 3.6 or newer.
+ - [Requests](https://pypi.org/project/requests/), included in installation.
+
+## Installation
+ [PyPI](https://pypi.org/project/tradingview-ta/) (stable, recommended):
+
+```pip install tradingview_ta```
+
+ GitHub (latest):
+
+```pip install git+https://github.com/brian-the-dev/python-tradingview-ta.git```
+
+
+## Example
+```python
+from tradingview_ta import TA_Handler, Interval, Exchange
+
+tesla = TA_Handler(
+ symbol="TSLA",
+ screener="america",
+ exchange="NASDAQ",
+ interval=Interval.INTERVAL_1_DAY,
+ # proxies={'http': 'http://example.com:8080'} # Uncomment to enable proxy (replace the URL).
+)
+print(tesla.get_analysis().summary)
+# Example output: {"RECOMMENDATION": "BUY", "BUY": 8, "NEUTRAL": 6, "SELL": 3}
+```
+
+Tip: Use https://tvdb.brianthe.dev/ if you don't know what symbol, screener, and exchange to use.
+
+## Documentation
+ [Read The Docs](https://python-tradingview-ta.readthedocs.io)
+
+## Issue
+ If you found a bug or have a question, please open an issue.
+
+## Warning
+ Trading is a risky activity, especially when done using an automated program. Never trade automatically without your supervision using results provided by tradingview-ta. Any monetary losses are not my fault.
+
+## Contributing
+ Pull requests (docs, bug fix, features) are welcomed! Any pull request (documentation, bug fix, features, etc) are welcomed. Please follow the [guidelines](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/CONTRIBUTING.md) and the [code of conduct](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/CODE_OF_CONDUCT.md).
+
+## License
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+%prep
+%autosetup -n tradingview-ta-3.3.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-tradingview-ta -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 3.3.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..87c0eda
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+4fb81cd65e1f90267bbd5dc131293711 tradingview_ta-3.3.0.tar.gz