Hello Python community! There are a lot of resources online targeted at beginners that want to learn Python but very rarely do you see articles talking about moving to Python when you already have tons of experience in other languages like Ruby, and especially, many years of Perl experience and is interested in moving to Python.

I’m not looking for information on how to program in Python, that’s really easy to find and most of the learning curve will be learning about the standard libraries and overcoming the years of muscle memory from other languages. I’m looking for information on the following topics:

  • What’s the recommended project structure for a library or a program that’ll be distributed via PyPI?
  • What are the general best practices to follow when writing “clean Python code”?
  • What’s the most commonly followed style guide for the language?
  • How does import work internally and how does it perform its path lookup for local files (specifically for importing modules internal to a project)?
  • How to properly set up pyenv for a project? (This one is tricky for me because the Python community loves pyenv and I’m used to having packages globally installed in Ruby and Perl)