background picture of the home page

上号-开黑

PydanticAI 使用

PydanticAI 使用 欢迎使用 pydantic-ai,这是一个专为生成式 AI 应用设计的 Python 代理框架,旨在帮助开发者更轻松地构建生产级应用程序。它由 Pydantic 团队开发,继承了 Pydantic 的类型安全和数据验证能力,并针对大型语言模型(LLM)进行了优化。 本文档

thumbnail of the cover of the post

Poetry 安装和使用指南

Poetry 安装和使用指南 环境准备和安装 使用 Conda 创建新环境(推荐): # 创建新的 Python 环境 conda create -n poetry-env python=3.10 # 激活环境 conda activate poetry-env 安装 Poetry: pip in

thumbnail of the cover of the post

funckeeper 是一个 Python 函数执行记录和追踪的工具

Funckeeper 🚧 警告:这是一个自用开源的项目! 📝 记录函数的执行过程和结果 🔍 追踪函数执行的详细信息(参数、返回值、执行时间等) 📊 统计分析函数的执行情况 🐛 捕获和分析函数执行中的错误 📤 支持导出分析报告(HTML格式) 链接: 代码 目的 funckeeper 是一

thumbnail of the cover of the post

在Python中,基类、元类和抽象类是面向对象编程的重要概念。以下是对这三种类的介绍及其使用示例

在Python中,基类、元类和抽象类是面向对象编程的重要概念。以下是对这三种类的介绍及其使用示例 1. 基类 (Base Class) 基类是其他类的父类,提供了共享的属性和方法。其他类可以继承基类,从而获得其功能。 继承的执行顺序 单一继承:当一个类继承自一个基类时,基类的构造函数(init)会在

thumbnail of the cover of the post

手动下载安装pypy的包

错误:mysqlclient-1.4.6-cp38-cp38-win_amd64.whl is not a supported wheel on this platform. 下载地址 https://www.lfd.uci.edu/~gohlke/pythonlibs/#pymssql pip install pymssql‑2.2.4‑cp38‑cp38‑win_amd64.whl 如果安装依然失败在 在第二个cp38改成cp38m -------------------------------------------------------------------------------- 参考文章: python mysqlclient-1.4.6-cp38-cp38-win32.whl is not a supported wheel on this platform. - Java学习者 - Java学习论坛 Java学习论者,Java学习论坛主要是给大家提供一个Java学习的平台,内容有Java学习,Linux服务器搭建,mysql数据库等一些开发常用技术,供大家学习! Java学习论坛不哭 [https://studyjava.cn/post/502]

thumbnail of the cover of the post

django老项目使用的xadmin在docker容器中安装

FROM python:3.6 # 时区 ENV TZ Asia/Shanghai RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ && echo 'Asia/Shanghai' >/etc/timezone # 拷贝 requirements 并安装依赖 COPY ./server/requirements.txt /tmp/requirements.txt RUN pip install -r /tmp/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple # 设置工作目录 WORKDIR /app COPY . /app # 对于安装xadmin,提前下载好对应的版本,然后更改导致报错的源码,最后压缩,复制到容器内安装 RUN cd server && pip install xadmin-django2.zip Xadmin django2 xadmin-django2.zip 1 MB download-circle [http://xfixm.com/content/files/2023/02/xadmin-django2.zip] 此安装包django3.6无问题,其他的没试过。

thumbnail of the cover of the post