## books - automate the boring stuff [notes](https://jokestir.github.io/assets/python/automatetutorials.txt) - python 101, python 201 by driscoll ## minimalism > simplicity is the ultimate sophistication - classes are evil. use functions. think in terms of functions and datastructures. - think in terms of map, filter, reduce. - threads are evil. () - dont use threads. use process. - favorite datastructures: sets, dicts, structs, namedtuples and tuples, txt, config, shelve, json, sqlite, trees - store everything on filesystem as key:value pair ## structure * code.py // single file for everything. just like levelsio. bottle.py or django * settings.conf // store configs * assets // css, jquery, html, includes * data // data in the form of json, xml, sqlite * logging // logs go here. loguru * workers //python background services for scraping, training etc. ## frameworks * web: cherry.py / bottle.py, brython * mobile: kivy * desktop: pysimplegui, tkinter * nocode: https://www.makerpad.co/tool-directory * textblob, fastext, keras for ml * for dist. use shiv/zip files. pyinstaller/py2exe/docker as backup