%global _empty_manifest_terminate_build 0 Name: python-telegram-bell Version: 0.7.1 Release: 1 Summary: Notify you when something is mentioned in a telegram channel License: MIT URL: https://pypi.org/project/telegram-bell/ Source0: https://mirrors.nju.edu.cn/pypi/web/packages/6b/33/587f530c6b7f08b6b9d64a5902f4d39bedc2f6b838cddea97dc3dc025d93/telegram-bell-0.7.1.tar.gz BuildArch: noarch Requires: python3-telethon Requires: python3-12factor-configclasses Requires: python3-rich Requires: python3-asyncclick Requires: python3-anyio Requires: python3-dotenv %description # telegram-bell ![PyPI](https://img.shields.io/pypi/v/telegram-bell) Notify you when something is mentioned in a telegram channel. ## Install pip install telegram-bell ## Usage ### CLI #### Run tbell run Before you can use, it will ask you for: - your Telegram API ID - your Telegram API hash - channels and keywords which you want to get notified - Telegram token (2FA) The app will then forward the matching messages to your "Saved Messages" channel in Telegram over time. #### Config tbell config You can reconfigure the application at any time with this command. #### Show susbscribed channels tbell show ### Systemd user service Clone the repo and: cd telegram-bell/scripts sh install_service.sh sh start_service.sh # it will ask you for config Check the service is running: sh check_service.sh You can check the services logs too: sh show_service_logs.sh If the service fails or the machine is restarted, the service will run transparently again. If you want to change your config in some moment: tbell config sh restart_service.sh %package -n python3-telegram-bell Summary: Notify you when something is mentioned in a telegram channel Provides: python-telegram-bell BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-telegram-bell # telegram-bell ![PyPI](https://img.shields.io/pypi/v/telegram-bell) Notify you when something is mentioned in a telegram channel. ## Install pip install telegram-bell ## Usage ### CLI #### Run tbell run Before you can use, it will ask you for: - your Telegram API ID - your Telegram API hash - channels and keywords which you want to get notified - Telegram token (2FA) The app will then forward the matching messages to your "Saved Messages" channel in Telegram over time. #### Config tbell config You can reconfigure the application at any time with this command. #### Show susbscribed channels tbell show ### Systemd user service Clone the repo and: cd telegram-bell/scripts sh install_service.sh sh start_service.sh # it will ask you for config Check the service is running: sh check_service.sh You can check the services logs too: sh show_service_logs.sh If the service fails or the machine is restarted, the service will run transparently again. If you want to change your config in some moment: tbell config sh restart_service.sh %package help Summary: Development documents and examples for telegram-bell Provides: python3-telegram-bell-doc %description help # telegram-bell ![PyPI](https://img.shields.io/pypi/v/telegram-bell) Notify you when something is mentioned in a telegram channel. ## Install pip install telegram-bell ## Usage ### CLI #### Run tbell run Before you can use, it will ask you for: - your Telegram API ID - your Telegram API hash - channels and keywords which you want to get notified - Telegram token (2FA) The app will then forward the matching messages to your "Saved Messages" channel in Telegram over time. #### Config tbell config You can reconfigure the application at any time with this command. #### Show susbscribed channels tbell show ### Systemd user service Clone the repo and: cd telegram-bell/scripts sh install_service.sh sh start_service.sh # it will ask you for config Check the service is running: sh check_service.sh You can check the services logs too: sh show_service_logs.sh If the service fails or the machine is restarted, the service will run transparently again. If you want to change your config in some moment: tbell config sh restart_service.sh %prep %autosetup -n telegram-bell-0.7.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-telegram-bell -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Fri May 05 2023 Python_Bot - 0.7.1-1 - Package Spec generated