Metadata-Version: 2.1
Name: pytifications
Version: 0.0.1
Summary: A python package to send notifications via telegram
Author-email: Knz13 <otaviomaya@gmail.com>
Project-URL: Homepage, https://github.com/knz13/pytifications
Project-URL: Bug Tracker, https://github.com/knz13/pytifications/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Pytifications

This is a python package to send messages to your telegram from python code

# Usage

First you'll need to create an account at the [pytificator](t.me/pytificator_bot) bot

After that just import the library like so

    from pytifications import Pytifications

    
    #use your credentials created at the bot
    messenger = Pytifications("myUsername","myPassword")

    #and send!
    messenger.send_message("hello from python!")
