I'm looking at this question Python: give start and end of week data from a given date. It seems most people prefer using standard libraries instead of going for something like pendulum
which seems to be much easier to use and readable in terms of code.
How do I think about the trade offs on what to choose when deciding on what approach to take? My main objective is to code once and not have to update the code ever again. This going from 2.7 to 3.x is really a pain to update my whole code base. It seems like I should always use standard library unless the library saves me tons of time.
Can a more experienced programmer comment on this?