Skip to main content
added 142 characters in body
Source Link

I created a python module that reminds developers on Telegram application after code execution. It might be more helpful than making alarm sound.

Pypi link: https://pypi.org/project/devreminder/

Github link: https://github.com/cagataygulten/devreminder

Example:

In [1]>> from devreminder import DevReminder   remind = DevReminder(chat_id = 1932126911,import auto_remindtime In =[2]>>  False, time_threshold remind = DevReminder(1932126911,False,0)   In [3]>> remind.me("Test""Example")  time.sleep(6) 

Output:

An example of reminder message

Please follow README file for more information.

I created a python module that reminds developers on Telegram application after code execution. It might be more helpful than making alarm sound.

Pypi link: https://pypi.org/project/devreminder/

Github link: https://github.com/cagataygulten/devreminder

Example:

from devreminder import DevReminder   remind = DevReminder(chat_id = 1932126911, auto_remind = False, time_threshold = 0) remind.me("Test") 

Please follow README file for more information.

I created a python module that reminds developers on Telegram application after code execution. It might be more helpful than making alarm sound.

Pypi link: https://pypi.org/project/devreminder/

Github link: https://github.com/cagataygulten/devreminder

Example:

In [1]>> from devreminder import DevReminder import time In [2]>>   remind = DevReminder(1932126911,False,0)   In [3]>> remind.me("Example")  time.sleep(6) 

Output:

An example of reminder message

Please follow README file for more information.

Source Link

I created a python module that reminds developers on Telegram application after code execution. It might be more helpful than making alarm sound.

Pypi link: https://pypi.org/project/devreminder/

Github link: https://github.com/cagataygulten/devreminder

Example:

from devreminder import DevReminder remind = DevReminder(chat_id = 1932126911, auto_remind = False, time_threshold = 0) remind.me("Test") 

Please follow README file for more information.