#python

 

2023-12-15

itertools

import:: import itertools

2023-09-24

functions

doc:: [内置函数](https://docs.python.org/zh-cn/3/library/functions.html)

2023-09-15

os

- import:: import os - doc:: [library/os](https://docs.python.org/zh-cn/3/library/os.html) ...

2023-09-11

tomllib

- import:: import tomlib - doc:: [tomllib](https://docs.python.org/zh-cn/3/library/tomllib....

2023-09-11

with

doc:: [with 语句](https://docs.python.org/zh-cn/3.12/reference/compound_stmts.html#the-with...

2023-08-03

hexdigest

import:: import hashlib

2023-07-14

update_kuma-api

- install:: `pip install uptime-kuma-api` - import:: `from uptime_kuma_api import UptimeKum...

2023-05-13

miniconda

## 安装配置

2023-04-11

circle

`cv2.circle(img, center, redius, color, thickness, lineType, shift)`

2023-04-11

imread

import::

2023-04-11

rectangle

`cv2.rectangle(img, pt1, pt2, color, thickness, lineType, shift)`

2023-04-04

calendar

- import:: import calendar - doc:: [calendar](https://docs.python.org/zh-cn/3/library/calen...

2023-04-04

openpyxl

install:: pip 3 install openpyxl

2023-03-19

shared_ctx

shared_ctx 类似于 [[ctx]],可以在应用程序的整个生命周期内共享状态,不同的是 shared_ctx 可以...

2023-03-08

Image

import:: doc::

2023-03-08

DataFrame

doc:: [DataFrame](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html)

2023-03-08

pandas

import::

2023-03-07

listeners

监听器添加方式

2023-02-13

black

- install:: pip3 install black - use:: black file.py - github:: [psf/black](https://github....

2023-02-13

mypy

- install:: pip3 install mypy - use:: mypy file.py - github:: [python/mypy](https://github....

2023-02-11

copy

import:: import copy

2023-02-07

uuid

use:: `import uuid`

2023-02-05

一行流

## if

2023-01-01

logging

```python import logging from logging.handlers import RotatingFileHandler

2022-12-22

aiohttp

install:: pip3 install aiohttp

2022-12-21

datetime

import:: import datetime

2022-12-21

时间计算

### datatime 时间计算

2022-12-21

时间转换

- 时间戳: - 转字符串 - 转时间元组 - 字符串 - 转时间戳 - 转时间元组 - 时间元...

2022-12-15

collections

- import:: import collections - doc:: [collections](https://docs.python.org/zh-cn/3/library...

2022-12-15

enum

import:: import enum

2022-12-11

re

import:: `import re`

2022-12-11

textwrap

import:: import textwrap

2022-12-07

pynvml

- use:: import pynvml - install:: pip3 install nvidia-ml-py3 - github:: nicolargo/nvidia-ml...

2022-11-29

multiprocessing

- import:: import multiprocessing - doc:: [multiprocessing](https://docs.python.org/zh-cn/3...

2022-11-29

queue

- import:: `import queue` - doc:: [queue](https://docs.python.org/zh-cn/3/library/queue.htm...

2022-11-26

concurrent

## futures

2022-11-23

如何返回 IP

```python from flask import Flask, request, jsonify

2022-11-23

最小 Flask 实例

```python # 一个最小的 Flask 应用 app = Flask(__name__)

2022-11-23

随机密码生成

```python import sys import string import secrets

2022-11-21

字典合并

```python x = { "a": 1, "b": 2, } y = { "z": 42 } ```

2022-09-23

sorted

import::

2022-08-16

difflib

import:: import difflib

2022-06-30

蛇形转大驼峰

```python def snake_to_pascal(word): """蛇形转大驼峰"""

2022-06-06

装饰器

- 使用方法(语法糖) - 带参数 - 类

2022-05-31

类型注解

在 [[Python]] 中类型注解不会进行额外的效验。

2022-05-26

ElementTree

import:: `import xml.etree.ElementTree as ET`

2022-05-07

flask-socketio

install :: `pip install flask-socketio`

2022-04-28

csv

import:: `import csv`

2022-04-28

sqlalchemy

- install:: `pip install sqlalchemy` - import:: `import sqlalchemy` - github:: [sqlalchemy/...

2022-04-26

selectROI

- `cv2.selectROI(windowName, img, showCrosshair=None, fromCenter=None)` - windowName: ...

2022-04-25

pickle

import:: `import pickle`

2022-04-24

dict

`dict1.pop('name')` 删除指定键

2022-04-24

pprint

import:: from pprint import pprint

2022-04-17

pathlib

- doc:: [library/pathlib](https://docs.python.org/zh-cn/3/library/pathlib.html) - desc:: 系...

2022-04-16

argparse

- import:: import argparse - doc:: [argparse](https://docs.python.org/zh-cn/3/library/argpa...

2022-04-08

pymysql

- [pymysql: 给 sql 语句传递字典参数 | Jeremy's blog](https://isyin.cn/note/2018-10-25-2121/...

2022-04-01

OCR

- [[paddleocr]] - 支持 [[pip]]、[[Docker]]、[[Linux|命令行]] - 非 Docker 部署,需 [...

2022-03-29

math

### 数字

2022-03-29

str

doc:: [str](https://docs.python.org/zh-cn/3/library/stdtypes.html#str)

2022-03-29

time

import:: import time

2022-03-29

concurrency

## 并发

2022-03-29

filesys

## 函数

2022-03-27

args

import::

2022-03-27

click

- install:: - import:: - github:: - doc::

2022-03-17

CSV 转字典

```python import csv

2022-02-01

如何合并列表

### 如何合并列表

2022-02-01

如何在写入数据时换行

在行尾插入==\n==

2022-02-01

如何在字符串中插入变量

```python # 方式一 var = 'Hello {0}'.format('World') # 方式二 var = 'Hello {name}'.format(n...

2022-02-01

如何把列表转换为字符串

- `''.join(<list>)`:可指定任意间隔字符(无法转换 int 类型列表) - `''.join([sgr(_) for _ i...

2022-02-01

如何把字典指定字段写入到 CSV

假设有个字典 x 有 a、b、c、d 四个键值对,但我们只需要其中的 a 和 d。

2022-02-01

如何清除 open 的空行

使用 `<line>.strip()`清除

2022-02-01

如何直接从字典中获取键或值

```python dict = {'num': 42}

2022-02-01

如何获取字典中的第一个键

- `list(<dict>.keys())[0]`:获取字典的键,然后使用 #list 转换为列表并取第一个值 ---

2022-01-01

jinja2

定界符