Hide those nasty libraries behind an interface in Python

preview_player
Показать описание

M Y O N L I N E T R A I N I N G

#pythonforeveryone #programming #python
Рекомендации по теме
Комментарии
Автор

Honest opinion: don't create abstractions on your libraries to hide them. The principle here is YAGNI: you ain't gonna need it. If you actually replace a library, replace it manually. If you do that nearly yearly, *then* create an interface. But don't write interfaces or other abstractions for components that are never going to be altered.

andreashabermas
Автор

you are wasting memory by storing the excel data in the interim data types. you also make things slower.

youexpire