随笔分类 -  其他分类

摘要:1,RPC(Remote Procedure Call) 远程过程调用。(调用远程服务就像调用本地函数一样,效率高,速度快。) 2,使用RPC场景:服务器间相互调用,为了效率更高,所以使用rpc. 3,python rpc的实现有 xmlrpc https://www.cnblogs.com/cod 阅读全文
posted @ 2022-08-05 09:00 王军的个人博客 阅读(35) 评论(0) 推荐(0)
摘要:1,需要检查python 安装的时候是否支持 https 进入python 环境,import ssl 如果正常导入就可以使用https,不能导入就需要进入下一步。 2,查看系统是否安装了openssl rpm -aq|grep openssl 必须所有版本必须对应上 如果没有需要安装: yum i 阅读全文
posted @ 2022-03-01 17:34 王军的个人博客 阅读(10878) 评论(0) 推荐(0)
摘要:1, python 对称加密使用 pycryptodome 库, 安装可能会失败:需要系统安装依赖Visual C++ Build Tools, windows 只能使用pycryptodome, linux 可以使用pycrypto 和 pycryptodome pip uninstall cry 阅读全文
posted @ 2021-11-05 17:00 王军的个人博客 阅读(634) 评论(0) 推荐(0)
摘要:谷歌插件安装地址,方便快捷,自动安装 https://chrome.google.com/webstore/detail/proxy-switchyomega/padekgcemlokbadohgkifijomclgjgif?hl=zh-CN 阅读全文
posted @ 2021-04-25 17:53 王军的个人博客 阅读(163) 评论(0) 推荐(0)
摘要:1, 使用python 提供的线程包 https://docs.python.org/3/library/concurrent.futures.html#threadpoolexecutor-example import time from concurrent.futures import Pro 阅读全文
posted @ 2021-04-25 17:04 王军的个人博客 阅读(78) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2019-09-26 21:25 王军的个人博客 阅读(5) 评论(0) 推荐(0)
摘要:1,git 的作用:git是目前世界上最先进的分布式版本控制系统(没有之一) 用在版本控制 和 代码整合 2,git 配置: 1,git init 初始化文件,会在自己的文件夹下创建一个.git 的隐藏文件,该文件就是本地的仓库。 2,cd .git 进入仓库配置个人信息,(config文件) gi 阅读全文
posted @ 2019-09-25 17:46 王军的个人博客 阅读(43) 评论(0) 推荐(0)