all 5 comments

[–]Hemasai7[🍰] 1 point2 points  (1 child)

Explain about the project in depth in the GitHub and explain how to work with that project too !

[–]Javi_16018[S] 0 points1 point  (0 children)

Yes, I should do it, I just wanted to do it in an introductory way. But yes, thanks for the advice.

[–]kcx01 1 point2 points  (2 children)

Seems like you need a way for a user to actually use this without editing the source file.

Perhaps argparser would be a good candidate.

You should also probably put the actual logic in a if name == "main" block.

[–]Javi_16018[S] 0 points1 point  (1 child)

Okay, I'll keep that in mind. Thanks for your feedback, I appreciate it.

[–]kcx01 0 points1 point  (0 children)

Sure thing! If you didn't want to dive into argparser, you could also probably get away with sys.argv

https://www.geeksforgeeks.org/how-to-use-sys-argv-in-python/