About 50 results
Open links in new tab
  1. What's the best practice using a settings(config) file in Python?

    The goal is to simplify using many arguments in a Python program by writing a config (settings) file that dynamically can add an item. What is the best practice for using a settings (config) file or importing a …

  2. Python "best formatting practice" for lists, dictionary, etc

    Oct 21, 2010 · 45 I have been looking over the Python documentation for code formatting best practice for large lists and dictionaries, for example,

  3. What is the best project structure for a Python application?

    310 This blog post by Jean-Paul Calderone is commonly given as an answer in #python on Freenode. Filesystem structure of a Python project Do: name the directory something related to your project. …

  4. What is the best practice for imports when developing a Python …

    Jan 1, 2023 · To conclude the question: What is the best practice to import modules and sub-packages freely and nicely from within sub-directories of a Python package that is currently under construction? …

  5. Good or bad practice in Python: import in the middle of a file

    It is not bad practice to have scopped imports. So that the import applies only to the function you used it in. I think the code would be more readable though if the imports where grouped together at the top …

  6. Python: Is it a good practice to rely on import to execute code?

    Jun 23, 2022 · 6 In Python, is it a good practice to rely on import to execute code, like in the example below? The code in mod.py is supposed to load some config, and needs to be executed once only. It …

  7. Is it a good practice to use try-except-else in Python?

    Apr 22, 2013 · That is its primary purpose. Without the else-clause, the only option to run additional code before finalization would be the clumsy practice of adding the code to the try-clause. That is clumsy …

  8. What is the common header format of Python files?

    Oct 6, 2009 · Proposed Solution I propose to make the Python source code encoding both visible and changeable on a per-source file basis by using a special comment at the top of the file to declare the …

  9. dry - Best practice for reusing python code - Stack Overflow

    Aug 5, 2011 · I have write a python library app (which contains several *.py files). And several of my python projects need to reuse the code in the library app. What's the recommended best practice for …

  10. Best practice of python virtual environment deployment

    Anyway, this is my experience with virtual environments created with the python -m venv command. So, ideally you would have shell access to your production environment and be able to create the virtual …