diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-31 06:35:39 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-31 06:35:39 +0000 |
commit | 5d0afc32bd1e8670da25962169ce6f5e6a88663c (patch) | |
tree | 5a6e35e31830e1d029b442e40f0edbdb35c15783 /python-eksipy.spec | |
parent | 8a2f7e5b38541a562d566d71a8029ed787455e4e (diff) |
automatic import of python-eksipy
Diffstat (limited to 'python-eksipy.spec')
-rw-r--r-- | python-eksipy.spec | 287 |
1 files changed, 287 insertions, 0 deletions
diff --git a/python-eksipy.spec b/python-eksipy.spec new file mode 100644 index 0000000..22327e8 --- /dev/null +++ b/python-eksipy.spec @@ -0,0 +1,287 @@ +%global _empty_manifest_terminate_build 0 +Name: python-eksipy +Version: 2.0.1 +Release: 1 +Summary: Unofficial API for Eksi Sozluk. +License: GPL3 +URL: https://github.com/yusufusta/EksiPy +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/61/2b/26be510e8647ad4b311d67d097820774ecb0b764c50afcba05f5e127de5d/eksipy-2.0.1.tar.gz +BuildArch: noarch + +Requires: python3-requests-html +Requires: python3-requests + +%description +# eksipy + +kutsal bilgi kaynağı için unofficial ve private ASYNC API, giriş yapabilir; ~~mesaj gönderebilir~~, entry gönderebilirsiniz. + +       + +> bu proje mobil(rest) api veya herhangi bir api **kullanmamaktadır**. tamamen requests ile web'e istek gönderilmektedir. requests-html ile de (PyQuery) ile de parçalanmaktadır. _projenin temel amacı ekşi sözlükte ne yapabiliyorsanız bu kütüphane yapabilmektedir. v2.0 itibariyle çoğu fonksiyon desteklenmektedir._ + +> bu kütüphane **python 3.6** ve üstünde çalışmaktadır. + +## 📦 Kurulum + +[pip](https://pypi.org/) kullanarak kolay bir şekilde kurabilirsiniz: + +```sh +pip install eksipy +``` + +## 🛠 Doküman + +Dokümanlar `docs` klasöründedir. + +## 🔷 Örnek Kullanımlar + +[Burdaki klasöre bakabilirsiniz](https://github.com/yusufusta/eksipy/tree/master/examples) + +> Ayrıca hemen birkaç örnek verelim. + +**Başlık entrylerini getirelim:** + +```python +import eksipy +import asyncio +import os + + +async def getTopic(): + eksi = eksipy.Eksi() + topic = await eksi.getTopic("php") + entrys = await topic.getEntrys() + for entry in entrys: + print("*" * 10) + print(entry.text()) + print(entry.author.nick) + print("*" * 10) + +loop = asyncio.get_event_loop() +loop.run_until_complete(getTopic()) +``` + +## ☑️ To-Do + +- [ ] Kendi Exception sınıflarımız. +- [ ] Olay. +- [x] Daha iyi bir dokümantasyon. +- [ ] Tüm kullanıcı istatistikleri, görseller, sorunsallar... +- [ ] Zengin bir CLI uygulaması +- [ ] Özel mesaj +- [x] Async +- [ ] Testler +- [ ] Sorunsallar + +## 💻 Contributors + +Developer [Yusuf Usta](https://t.me/fusuf), yusuf@usta.email + +## 📒 License + +eksipy is available under the GPLv3 license. See the LICENSE file for more info. + + + + +%package -n python3-eksipy +Summary: Unofficial API for Eksi Sozluk. +Provides: python-eksipy +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-eksipy +# eksipy + +kutsal bilgi kaynağı için unofficial ve private ASYNC API, giriş yapabilir; ~~mesaj gönderebilir~~, entry gönderebilirsiniz. + +       + +> bu proje mobil(rest) api veya herhangi bir api **kullanmamaktadır**. tamamen requests ile web'e istek gönderilmektedir. requests-html ile de (PyQuery) ile de parçalanmaktadır. _projenin temel amacı ekşi sözlükte ne yapabiliyorsanız bu kütüphane yapabilmektedir. v2.0 itibariyle çoğu fonksiyon desteklenmektedir._ + +> bu kütüphane **python 3.6** ve üstünde çalışmaktadır. + +## 📦 Kurulum + +[pip](https://pypi.org/) kullanarak kolay bir şekilde kurabilirsiniz: + +```sh +pip install eksipy +``` + +## 🛠 Doküman + +Dokümanlar `docs` klasöründedir. + +## 🔷 Örnek Kullanımlar + +[Burdaki klasöre bakabilirsiniz](https://github.com/yusufusta/eksipy/tree/master/examples) + +> Ayrıca hemen birkaç örnek verelim. + +**Başlık entrylerini getirelim:** + +```python +import eksipy +import asyncio +import os + + +async def getTopic(): + eksi = eksipy.Eksi() + topic = await eksi.getTopic("php") + entrys = await topic.getEntrys() + for entry in entrys: + print("*" * 10) + print(entry.text()) + print(entry.author.nick) + print("*" * 10) + +loop = asyncio.get_event_loop() +loop.run_until_complete(getTopic()) +``` + +## ☑️ To-Do + +- [ ] Kendi Exception sınıflarımız. +- [ ] Olay. +- [x] Daha iyi bir dokümantasyon. +- [ ] Tüm kullanıcı istatistikleri, görseller, sorunsallar... +- [ ] Zengin bir CLI uygulaması +- [ ] Özel mesaj +- [x] Async +- [ ] Testler +- [ ] Sorunsallar + +## 💻 Contributors + +Developer [Yusuf Usta](https://t.me/fusuf), yusuf@usta.email + +## 📒 License + +eksipy is available under the GPLv3 license. See the LICENSE file for more info. + + + + +%package help +Summary: Development documents and examples for eksipy +Provides: python3-eksipy-doc +%description help +# eksipy + +kutsal bilgi kaynağı için unofficial ve private ASYNC API, giriş yapabilir; ~~mesaj gönderebilir~~, entry gönderebilirsiniz. + +       + +> bu proje mobil(rest) api veya herhangi bir api **kullanmamaktadır**. tamamen requests ile web'e istek gönderilmektedir. requests-html ile de (PyQuery) ile de parçalanmaktadır. _projenin temel amacı ekşi sözlükte ne yapabiliyorsanız bu kütüphane yapabilmektedir. v2.0 itibariyle çoğu fonksiyon desteklenmektedir._ + +> bu kütüphane **python 3.6** ve üstünde çalışmaktadır. + +## 📦 Kurulum + +[pip](https://pypi.org/) kullanarak kolay bir şekilde kurabilirsiniz: + +```sh +pip install eksipy +``` + +## 🛠 Doküman + +Dokümanlar `docs` klasöründedir. + +## 🔷 Örnek Kullanımlar + +[Burdaki klasöre bakabilirsiniz](https://github.com/yusufusta/eksipy/tree/master/examples) + +> Ayrıca hemen birkaç örnek verelim. + +**Başlık entrylerini getirelim:** + +```python +import eksipy +import asyncio +import os + + +async def getTopic(): + eksi = eksipy.Eksi() + topic = await eksi.getTopic("php") + entrys = await topic.getEntrys() + for entry in entrys: + print("*" * 10) + print(entry.text()) + print(entry.author.nick) + print("*" * 10) + +loop = asyncio.get_event_loop() +loop.run_until_complete(getTopic()) +``` + +## ☑️ To-Do + +- [ ] Kendi Exception sınıflarımız. +- [ ] Olay. +- [x] Daha iyi bir dokümantasyon. +- [ ] Tüm kullanıcı istatistikleri, görseller, sorunsallar... +- [ ] Zengin bir CLI uygulaması +- [ ] Özel mesaj +- [x] Async +- [ ] Testler +- [ ] Sorunsallar + +## 💻 Contributors + +Developer [Yusuf Usta](https://t.me/fusuf), yusuf@usta.email + +## 📒 License + +eksipy is available under the GPLv3 license. See the LICENSE file for more info. + + + + +%prep +%autosetup -n eksipy-2.0.1 + +%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-eksipy -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0.1-1 +- Package Spec generated |