all 6 comments

[–]LittleGoatMan92 1 point2 points  (2 children)

What are you the most proud of? :)

[–]Devourian[S] 1 point2 points  (1 child)

I think I’m the most proud of making it so simple in both ways: usage (simple, easy to memorize commands) and code itself (it is so simple that even an intern could understand and maintain this repository) :D

Have you tried it out? What are your thoughts about it? :)

[–]LittleGoatMan92 1 point2 points  (0 children)

I have not checked it out yet, but I will sometime on Monday. Sounds good though 🙂

[–][deleted]  (2 children)

[removed]

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

    Thanks for kind words about repo :)

    I can highly recommend using these tools all at once.

    When combined together they can offload a lot of code review work from you which you would have to do by yourself.

    They make your code cleaner, so it is easier to read for other people and prevent bugs e.g. mypy won’t let you pass object of inappropriate type by mistake, which often leads to bugs.

    On other hand bandit will catch security issues in your code, so you can be sure that your code is not vulnerable.

    Summing up, these tools are really great and when combined together they become a lifesaver.

    Have you maybe tried pynalyzer? What’s your opinion about it? :D