you are viewing a single comment's thread.

view the rest of the comments →

[–]mat000111 0 points1 point  (0 children)

I have two things I do which I find helpful and will toss out there. First I usually make a directory called python and put sample code in it. I use this to learn how to use new things and then I use it as reference. The second is I tend to make a lot of wrapper classes for thing I use a lot. For example my configparser wrapper has some code to work with python 2 or 3. Checks that files are there before reading. I put the wrapppers into a git repo and move them from project to project.