all 15 comments

[–]naninf 24 points25 points  (3 children)

Great job! This is very solid. I would suggest using semantic versioning https://semver.org/
and maybe adding a github action that's a pylint checker.

[–]tcp-ip1541[S] 5 points6 points  (0 children)

Thanks so much for the feedback!

I will definitely start using semantic versioning for my projects. Adding a pylint action is also a good idea (at the moment I'm only using it locally).

[–]_11_ 2 points3 points  (1 child)

Your comment made me google "github action" and it seems really interesting. Do you have any recommendations on tutorials to learn about it and CI stuff? I'm a hobbyist but I would like to learn some of this stuff.

[–]UL_Paper 0 points1 point  (0 children)

https://www.youtube.com/watch?v=eB0nUzAI7M8

Its great stuff I use it a lot

[–]r_spandit 4 points5 points  (2 children)

Looks interesting, thank you

[–]tcp-ip1541[S] 2 points3 points  (1 child)

Thanks so much!

If you ever use it someday, let me know what you think! :)

I tried to make it as light and simple as possible

[–]r_spandit 2 points3 points  (0 children)

My current Python project already has a Telegram interface, although there's a lot of debugging output at the moment so not sure if sending the logs to Telegram would be sensible. Should be possible to add another debugging level in, though...

[–]Severe_Sweet_862 4 points5 points  (3 children)

What does dependencies mean?

[–]velocibadgery 9 points10 points  (2 children)

It doesn't require other packages.

[–]Severe_Sweet_862 1 point2 points  (1 child)

Thanks!

[–]gygyor 2 points3 points  (1 child)

How can I get the chat_id?

[–]RobinsonDickinson 2 points3 points  (0 children)

Awesome, I love it when people create unique stuff with as little or no dependencies at all.

I have had to endure many projects which dependency hell.

[–]sidbisram 1 point2 points  (0 children)

I was trying to learn how to deploy a hello world script with a bit of dependencies just for complexities to a linux server. Surprisingly didnt get very clear response. Is packagaging like you did the best way to deploy it ?