Python-包-运行日志-rich
Rich is a Python library for writing rich text (with color and style) to the terminal, and for displaying advanced content such as tables, markdown, a
...
Python包-Numpy记录
官方文档
模块的安装1pip install pyvcf
安装可能的异常记录Error1pyvcf的最新版(0.6.8)安装需要使用use_2to3 (在setuptools>=58 后不支持该参数)所以需要对setuptools进行版本调整,过高过低都会出现该参数缺失无法变异的情况。1pip
...
Python包-Pyyaml
安装1pip install pyyaml
格式介绍123456raincoat: 1coins: 5books: 23spectacles: 2chairs: 12pens: 6
数据读取1234567#!/usr/bin/env python3import yamlwith open('item
...
Python包-pysam
文件读写文件读写句柄bam_file : bam文件路径
读取文件1samfile = pysam.AlignmentFile(bam_file) # 读取文件句柄
写入文件1234567WriteBam = pysam.AlignmentFile(bam_file , "wb"
...
Python包-python-docx撰写word
参考博客
python-sendkeys 模拟键盘事件的模块
导入需要的包
12345import win32apiimport win32conimport win32guifrom ctypes import *import time
设置鼠标双击的函数,通过坐标控制双击位点
12345
...