├── .gitignore ├── LICENSE ├── README.md └── Snippets ├── README.md ├── all_sets.py ├── authorizations.py ├── auto_scroll.py ├── block_new_pm.py ├── delete_deleted.py ├── delete_messages.py ├── delete_migrated.py ├── filter_toggle.py ├── flip_text.py ├── flood_watch.py ├── generate_session.py ├── join_date.py ├── left_channels.py ├── nekobin.py ├── participant_percent.py ├── photo_threshold.py ├── profile_photos.py ├── recent_actions.py ├── resolve_invite_link.py ├── screenshot.py ├── thanos.py ├── unicode.py ├── unread.py └── word_count.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.ini 2 | *.session 3 | *.txt 4 | venv/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/README.md -------------------------------------------------------------------------------- /Snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/README.md -------------------------------------------------------------------------------- /Snippets/all_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/all_sets.py -------------------------------------------------------------------------------- /Snippets/authorizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/authorizations.py -------------------------------------------------------------------------------- /Snippets/auto_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/auto_scroll.py -------------------------------------------------------------------------------- /Snippets/block_new_pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/block_new_pm.py -------------------------------------------------------------------------------- /Snippets/delete_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/delete_deleted.py -------------------------------------------------------------------------------- /Snippets/delete_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/delete_messages.py -------------------------------------------------------------------------------- /Snippets/delete_migrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/delete_migrated.py -------------------------------------------------------------------------------- /Snippets/filter_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/filter_toggle.py -------------------------------------------------------------------------------- /Snippets/flip_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/flip_text.py -------------------------------------------------------------------------------- /Snippets/flood_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/flood_watch.py -------------------------------------------------------------------------------- /Snippets/generate_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/generate_session.py -------------------------------------------------------------------------------- /Snippets/join_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/join_date.py -------------------------------------------------------------------------------- /Snippets/left_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/left_channels.py -------------------------------------------------------------------------------- /Snippets/nekobin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/nekobin.py -------------------------------------------------------------------------------- /Snippets/participant_percent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/participant_percent.py -------------------------------------------------------------------------------- /Snippets/photo_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/photo_threshold.py -------------------------------------------------------------------------------- /Snippets/profile_photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/profile_photos.py -------------------------------------------------------------------------------- /Snippets/recent_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/recent_actions.py -------------------------------------------------------------------------------- /Snippets/resolve_invite_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/resolve_invite_link.py -------------------------------------------------------------------------------- /Snippets/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/screenshot.py -------------------------------------------------------------------------------- /Snippets/thanos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/thanos.py -------------------------------------------------------------------------------- /Snippets/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/unicode.py -------------------------------------------------------------------------------- /Snippets/unread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/unread.py -------------------------------------------------------------------------------- /Snippets/word_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColinShark/Pyrogram-Snippets/HEAD/Snippets/word_count.py --------------------------------------------------------------------------------