随笔分类 -  005_python工具&&git

1
摘要:一、 需要把YOLOv3训练的结果的各个值记录到Excel中,实现python脚本如下: import re,xlwt f = open("epoch.txt") lines = f.readlines() #新建工作簿 workbook = xlwt.Workbook(encoding='utf- 阅读全文
posted @ 2021-12-23 01:03 arun_python 阅读(72) 评论(0) 推荐(0) 编辑
摘要:一、 在写论文时需要统计YOLOv3训练的数据集的数据,x轴为Epoch数量,左边Y轴为TrainingLoss,右边Y轴统计mAP值,使用matplotlib实现如下: # Adding a Y-Axis Label to the Secondary Y-Axis in Matplotlib # 阅读全文
posted @ 2021-12-23 00:04 arun_python 阅读(843) 评论(0) 推荐(0) 编辑
摘要:一、 (1)创建一个空的本地仓库 git init (2)添加远程分支 git remote add arun git@github.com:itcomputer12/itcomputer12.github.io.git (3)开启sparse checkout 模式 git config core 阅读全文
posted @ 2020-06-11 23:04 arun_python 阅读(758) 评论(0) 推荐(0) 编辑
摘要:一、进行十六进制运算 阅读全文
posted @ 2019-03-06 18:59 arun_python 阅读(150) 评论(0) 推荐(0) 编辑
摘要:一、json配置文件 json文件的互转,如下例子: 配置文件:example.json (1)把字典转换为json配置文件 输出: (2)再转化为文件: 输出: 二、ini配置文件 config.ini python test.py 阅读全文
posted @ 2019-03-02 12:35 arun_python 阅读(298) 评论(0) 推荐(0) 编辑
摘要:一、pdb https://docs.python.org/3/library/pdb.html 阅读全文
posted @ 2019-02-22 08:04 arun_python 阅读(755) 评论(0) 推荐(0) 编辑
摘要:一、线上zk访问延迟特别高需要统计一段时间内的zk写入路径top10,实现如下: 二、可以根据指定时间过滤日志路径的功能需要实现。 阅读全文
posted @ 2018-11-12 20:42 arun_python 阅读(210) 评论(0) 推荐(0) 编辑
摘要:#!/usr/bin/env python import sys import os import subprocess from decimal import Decimal from decimal import getcontext def cpu_proc(pid): ''' Reference:https://stackoverflow.com/questions/... 阅读全文
posted @ 2018-11-09 17:55 arun_python 阅读(345) 评论(0) 推荐(0) 编辑
摘要:一、由于线上域名证书快要过期,需要进行监测,顾写了一个方法用于线上证书过期监测,如下: 输出=> 二、由于域名数量特别地多,所以需要使用集合进行对已经更新的和未更新的域名进行统计 输出: 阅读全文
posted @ 2018-09-24 16:11 arun_python 阅读(156) 评论(0) 推荐(0) 编辑
摘要:一、获取指定日期的后(前)一(n)天 阅读全文
posted @ 2018-07-13 07:02 arun_python 阅读(154) 评论(0) 推荐(0) 编辑
摘要:一、vim-go使用经验总结 Official Webset: https://github.com/fatih/vim-go-tutorial 二、 1. 一键执行 这个不是插件,而是一个自定义的vim配置。很多时候我们写python,都是写一些较为简单的脚本,那么,这个一键执行的功能就非常实用, 阅读全文
posted @ 2018-03-23 17:49 arun_python 阅读(394) 评论(0) 推荐(0) 编辑
摘要:一、一行启动httpserver 你可以先登录容器(webssh),然后(注意必须是在/data/log/debug/pprof/目录) 例如生成 jvm dump文件 jmap -dump:format=b,file=/data/log/debug/pprof/heap.hprof javapid 阅读全文
posted @ 2018-02-02 11:54 arun_python 阅读(163) 评论(0) 推荐(0) 编辑
摘要:一、 安装Python 绝大多数Python入门书籍,都会介绍如何安装Python,然而,本书要介绍一种全新的安装方式。使用pyenv来安装并管理我们的环境。 pyenv简介 由于Python的依赖是基于site的,这多与生产环境来说,是一种简单而正确的方式,然后,对于我们的开发环境,基于这样的管理 阅读全文
posted @ 2017-11-01 19:06 arun_python 阅读(449) 评论(0) 推荐(0) 编辑
摘要:一、 https://www.json.cn 阅读全文
posted @ 2017-10-13 18:38 arun_python 阅读(130) 评论(0) 推荐(0) 编辑
摘要:一、Linux的安装 cd /usr/local/src && wget https://pypi.python.org/packages/source/a/ansible/ansible-1.9.6.tar.gz tar -xvf ansible-1.9.6.tar.gz && python se 阅读全文
posted @ 2017-04-05 08:47 arun_python 阅读(232) 评论(0) 推荐(0) 编辑
摘要:一、同事推荐的 pytest库 ==> 官网:http://doc.pytest.org/en/latest/ github地址==>https://github.com/pytest-dev/pytest/ 二、python标准库的unittest的特性和java的junit很相似。 阅读全文
posted @ 2017-03-17 21:50 arun_python 阅读(148) 评论(0) 推荐(0) 编辑
摘要:一、安装cmdb的驱动遇到了如下问题 [root@localhost 003_pyenv]# pip2.7 install cmdb_sdk==0.3.1 -i http://cmdb.elenet.me/devops/devops --trusted-host cmdb.elenet.meColl 阅读全文
posted @ 2017-03-10 07:33 arun_python 阅读(1356) 评论(0) 推荐(0) 编辑
摘要:2016-02-23 | 9,129字 | 分类于 工具 | 3条评论 去年小组在从 SVN 和 TFS 迁移到 Git 的过程中整理了这份文档,面向的用户是对 Git 和 SVN 可能都不是很了解的人。看到自己写了这么多,于是就拿出来分享下,有些东西可能写得比较浅,有错误还请指正。 1. 关于 G 阅读全文
posted @ 2016-07-03 14:31 arun_python 阅读(2419) 评论(0) 推荐(0) 编辑
摘要:一、 (1) (2) 二、 pipy国内镜像目前有: http://pypi.douban.com/ 豆瓣 http://pypi.hustunique.com/ 华中理工大学 http://pypi.sdutlinux.org/ 山东理工大学 http://pypi.mirrors.ustc.ed 阅读全文
posted @ 2016-07-02 18:35 arun_python 阅读(307) 评论(0) 推荐(0) 编辑
摘要:用默认的pip安装源pypi.python.org由于在国外经常会出现超时的问题,而且安装速度极其的慢,如下图中的超时问题=> 一、可通过以下方式解决。 二、 阅读全文
posted @ 2016-03-24 18:59 arun_python 阅读(3393) 评论(0) 推荐(0) 编辑

1
点击右上角即可分享
微信分享提示