PyCharm - Have author appear before imports?

前端 未结 1 1289
迷失自我
迷失自我 2021-02-14 18:56

When you create new python files and add new imports, PyCharm will automatically add the imports and __author__ tag whenever it can by itself. However, by default the __author__

1条回答
  •  说谎
    说谎 (楼主)
    2021-02-14 19:13

    1. is according to the "Imports" section of PEP-8:

      Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants

      __author__ is a global "variable" and should therefore appear below the imports.

    2. You may go to Pycharm's settings (Ctrl-Alt-S), choose "File and Code Templates" and adjust the "Python Script" template to your liking.

    Pls Note: As mentioned by Martijn's comment below, item 1 of the above statement is no longer true as PEP8 has been updated (in June 2016) https://www.python.org/dev/peps/pep-0008/#id24 with a good example

    """
    This is the example module.
    This module does stuff.
    """
    
    from __future__ import barry_as_FLUFL
    
    __all__ = ['a', 'b', 'c']
    __version__ = '0.1'
    __author__ = 'Cardinal Biggles'
    
    import os
    import sys
    

    0 讨论(0)
提交回复
热议问题