首页 > 编程语言 >Python..gitignore文件

Python..gitignore文件

时间:2024-11-18 16:14:21浏览次数:3  
标签:文件 .. Python lock py pdm version gitignore

.gitignore 文件

# Byte-compiled / optimized / DLL files
__pycache__/       """Python 文件编译后的缓存目录。git上传时会忽略该目录下的文件"""
*.py[cod]        """Python 文件编译后的字节码文件(如 .pyc、.pyo、.pyd)。"""
*$py.class		"""Python 文件编译后的类文件。"""

# C extensions
*.so	"""C 语言扩展生成的共享库文件。"""

# Distribution / packaging
.Python
build/
develop-eggs/	""".Python、build/、develop-eggs/ 等:这些是 Python 包分发和构建过程中生成的一些临时文件和目录。"""
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller		
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec		"""*.manifest、*.spec:PyInstaller 构建可执行文件时生成的配置和清单文件。"""

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
"""pip-log.txt、pip-delete-this-directory.txt:pip 安装日志文件。"""

# Unit test / coverage reports  
htmlcov/		"""htmlcov/、.tox/ 等:单元测试和覆盖率报告生成的文件和目录。"""
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot		"""*.mo、*.pot:国际化的翻译文件。"""

# Django stuff:
*.log			"""*.log、local_settings.py 等:Django 项目中的日志文件和本地配置文件。"""
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy			""".scrapy:Scrapy 爬虫框架的相关文件。"""

# Sphinx documentation
docs/_build/			"""docs/_build/:Sphinx 生成文档的构建目录。"""

# PyBuilder
.pybuilder/				""".pybuilder/、target/:PyBuilder 构建工具生成的文件。"""
target/

# Jupyter Notebook
.ipynb_checkpoints		""".ipynb_checkpoints:Jupyter Notebook 的检查点文件。"""

# IPython
profile_default/			"""profile_default/、ipython_config.py:IPython 的配置和默认配置文件。"""
ipython_config.py

# pyenv
#   For a library or package, you might want to ignore these files since the code is
#   intended to run in multiple environments; otherwise, check them in:
# .python-version 
 """.python-version:pyenv 使用的 Python 版本文件。"""

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# poetry
#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
#   This is especially recommended for binary packages to ensure reproducibility, and is more
#   commonly ignored for libraries.
#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
#   in version control.
#   https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/		""".pdm.toml、.pdm-python、.pdm-build/:pdm 相关的配置和构建文件。"""

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
"""__pypackages__/:PEP 582 定义的包目录。"""
# Celery stuff
celerybeat-schedule
celerybeat.pid
"""celerybeat-schedule、celerybeat.pid:Celery 任务调度器的相关文件。"""
# SageMath parsed files
*.sage.py
"""*.sage.py:SageMath 解析生成的 Python 文件。"""
# Environments
.env			""".env、.venv 等:虚拟环境相关文件。"""
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject			""".spyderproject、.spyproject:Spyder IDE 的项目设置文件。"""
.spyproject

# Rope project settings
.ropeproject
""".ropeproject:Rope(Python 重构工具)的项目设置文件。"""
# mkdocs documentation
/site
"""/site:mkdocs 生成的静态文档目录。"""
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
""".mypy_cache/、.dmypy.json 等:mypy 类型检查器的缓存文件。"""
# Pyre type checker
.pyre/
""".pyre/:Pyre 类型检查器的相关文件。"""
# pytype static type analyzer
.pytype/
""".pytype/:pytype 静态类型分析器的相关文件。"""
# Cython debug symbols
cython_debug/
"""cython_debug/:Cython 调试符号文件。"""
# PyCharm
#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
#  and can be added to the global gitignore or merged into this file.  For a more nuclear
#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
""".idea/:PyCharm IDE 的项目配置文件。看不到就是隐藏文件"""

标签:文件,..,Python,lock,py,pdm,version,gitignore
From: https://blog.csdn.net/m0_69402477/article/details/143859408

相关文章

  • centos7安装python3.11
    1、安装编译环境和依赖包: sudoyumgroupinstall"DevelopmentTools"sudoyuminstallgccopenssl-develbzip2-devellibffi-develwget2、下载Python3.11.4源码包: wgethttps://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz3、解压源码包: tar-xvfPy......
  • python RSA加密解密
    RSA加密和解密是一种常见的非对称加密方法,主要用于保护数据的安全性。在RSA加密中,使用公钥对数据进行加密,使用私钥进行解密。pipinstallpycryptodomefromCrypto.PublicKeyimportRSAfromCrypto.CipherimportPKCS1_OAEPimportbinasciidefgenerate_keys():#生......
  • python 获取计算机电脑的配置信息
    获取电脑操作系统、CPU、内存、磁盘等信息。pipinstallplatformpipinstallpsutil通过使用platform库获取基本的操作系统和处理器信息,并使用psutil库检索更多详细的系统资源状态,如CPU频率、内存状态和磁盘使用情况。调用get_computer_config()自定义函数将返回一个包含全......
  • 《Python从入门到实践》第三章动手试一试
    3-1姓名:将一些朋友的姓名存储在一个列表中,并将其命名为names。#依次访问该列表中的每个元素,从而将每个朋友的姓名都打印出来。name=['李小华','李小青','张小雷','刘宗伟','张棉棉']print(name[0])print(name[1])print(name[2])print(name[3])print(name[4])forfrna......
  • 第九课 Python自动化之selenium 自动化unittest框架(9.3)
    自动化框架*一、介绍框架1、unittest框架是python中自带的框架2、作用:管理和组织测试用例当我们写的用例越来越多,我们就要考虑用例的编写的规范和组织,以便于后期的维护3、常见的自动化框架:po框架、pytest框架、unittest框架(我们讲解)4、unitest框架自带标准的库:有如下a、......
  • 基于yolov8、yolov5的玉米病害检测识别系统(含UI界面、训练好的模型、Python代码、数据
    项目介绍项目中所用到的算法模型和数据集等信息如下:算法模型:  yolov8、yolov8+SE注意力机制或yolov5、yolov5+SE注意力机制,直接提供最少两个训练好的模型。模型十分重要,因为有些同学的电脑没有GPU,无法自行训练。数据集:  网上下载的数据集,格式都已转......
  • python毕设超市进销存管理系统程序+论文
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表开题报告内容一、选题背景关于超市进销存管理系统的研究,现有研究主要以通用的企业进销存管理为主,专门针对超市这一特定场景的进销存管理系统研究较少。在国内外......
  • 【python系列】python数据类型的分类和比较
    一、数据类型的定义在程序设计的类型系统中,数据类型(英语:Datatype),又称资料型态、资料型别,是用来约束数据的解释。——Wikipedia从定义我们可以看出来,数字类型的理解最主要的是约束数据的解释,每个类型都有他们自己所使用得场景,这个就是数字类型的分类,分类的结果可以方便......
  • Python程序py代码加密方法
    Python程序语言使用方便,应用范围广,但Python的代码加密保护是一个问题,下面介绍一种专业的python程序py代码加密方法,可以有效地保护源代码! 下载最新加密锁开发工具包http://chinadlp.com/?list-DriveDownload.html 完全默认安装后,打开如下开发工具 在安装目录下找到python......
  • 我开源了一个支持python代码在浏览器实时渲染ui和交互的插件!
    1.这个项目是干什么的?AICodePreviewExtension是一款专为开发者设计的Chrome浏览器扩展程序。它旨在帮助用户在AI对话平台(如ChatGPT等)中轻松预览和交互代码,无需切换到本地环境即可测试和运行代码。通过提供实时渲染和代码管理功能,这个工具极大地提升了开发者在日常......