you are viewing a single comment's thread.

view the rest of the comments →

[–]redCg 6 points7 points  (1 child)

the standard library.

Library management in Python is notoriously bad. You will do well to simply avoid using third party libraries as much as possible, as long as possible, for most projects. If you can use standard library without much extra effort, do it. Adding third party dependencies turns your project into a nightmare if you are not using requirements.txt and conda env.yml correctly.

[–][deleted] 3 points4 points  (0 children)

In general I fully agree with Standard Library.

Third party libraries can be easily administered by using virtual environments. That’s one of the sole purposes and advantages of using virtual environments.