摘要:
compile ./configure --prefix=/usr/local/nginx \ --with-http_v3_module \ --with-http_v2_module \ --with-cc-opt="-I../boringssl/include" \ --with-ld-opt 阅读全文
摘要:
Install pip install 'fastapi-cdn-host>=0.5.2' Code import fastapi_cdn_host from fastapi import FastAPI app = FastAPI( openapi_url="/api/v1/openapi.jso 阅读全文
摘要:
祥开龙角应三农,小队旌旗猎猎风。 models.py class Group(Model): id = IntField(pk=True) name = CharField(max_length=10) class User(Model): id = IntField(pk=True) group 阅读全文
摘要:
网上比较容易找到的是pip install git+https://github.com/waketzheng/fastapi-cdn-host.git这种方式 如果电脑未配置或没启用外网加速器,这种方式简直慢得像蜗牛,改用ssh则会块很多很多: 一般情况 pip install git+ssh:/ 阅读全文
摘要:
Install 直接pip安装,需要Python3.10+ pip install fastdfs-client Initial client 可以用其他教程的client.conf配置文件的方式,也可以直接传入ip列表进行初始化 from fastdfs_client import Fastdfs 阅读全文
摘要:
utils.py: import functools import re from datetime import datetime, timedelta from typing import Union # pip install python-dateutil from dateutil imp 阅读全文
摘要:
FastDFS(https://github.com/happyfish100/fastdfs/wiki)推荐的nginx启动方式是直接执行/usr/local/nginx/sbin/nginx 如果配成用systemctl管理的话,更符合常规使用习惯,而且可以设为开机启动,具体如下: /lib/s 阅读全文
摘要:
代码如下: from io import BytesIO from pathlib import Path from typing import Annotated, Literal, Optional, Tuple, Union # pip install pillow opencv-python 阅读全文
摘要:
但使龙城飞将在,不教胡马度阴山。落后就要挨打,挨打要立正,真理只在大炮范围之内。 近代列强的欺侮历历在目,现今无耻之邦公然排海,而强盗政党则列实体清单无休止制裁。 中东乌克炮火不断,我们不是生在和平的年代,而是生在和平的国度。勿忘国耻,吾辈当自强! 代码如下: import os from cont 阅读全文
摘要:
大致代码如下: import cv2 import numpy as np from fastapi import HTTPException RgbRangeType = tuple[tuple[int, int, int], tuple[int, int, int]] class Validat 阅读全文