上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 每次从数据库导出数据交付产品的时候常需要把json拍成excel """ json_to_excel.py ~~~~~~~ json文件转换为excel文件(xlsx) 注:最多容纳1048576行数据 """ import os import sys import json import open 阅读全文
posted @ 2024-04-11 19:55 anyiya 阅读(7) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-01-03 00:03 anyiya 阅读(5) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-01-02 23:35 anyiya 阅读(4) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-12-11 20:19 anyiya 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04 全程root用户 安装vnc和图形化界面 # 更新 apt update # 安装桌面环境 sudo apt install xfce4 xfce4-goodies # 安装vncserver apt install tightvncserver 安装noVNC git cl 阅读全文
posted @ 2023-09-22 14:19 anyiya 阅读(20) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04 全程root用户 安装 apt update apt install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common curl -fsSL https://d 阅读全文
posted @ 2023-09-22 14:14 anyiya 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04 全程root用户 一、安装 apt-get install -y openjdk-11-jdk # 将存储库密钥添加到系统 wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key 阅读全文
posted @ 2023-09-22 14:11 anyiya 阅读(15) 评论(0) 推荐(0) 编辑
摘要: main.py负责接收请求,异步起线程调用高度离散的B(a、b、c...).py类文件,B(a、b、c...).py类文件在执行结束后会统一调用C.py文件中的一个函数规范处理结果,C.py本来的用途是解耦提高代码复用,但在高并发情况下出现了数据冲突的问题。即只有B(a).py才会产生的结果给写进了 阅读全文
posted @ 2023-09-22 11:01 anyiya 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 需求是:使用playwright打开一个页面,并等待其中某一接口响应。 在看官网提供的 playwright-node.js 文档时很容易的找到了 **waitForResponse** ~~~ // Start waiting for response before clicking. Note 阅读全文
posted @ 2023-08-30 17:50 anyiya 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 初见vue2,试探了两天,第一次正经接触前端,蛮兴奋的。 # 创建接口 ~~~ import uvicorn from fastapi import FastAPI, Header from typing import Union from typing_extensions import Anno 阅读全文
posted @ 2023-08-11 16:49 anyiya 阅读(158) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页