Pandas read_csv、read_excel 以文本形式读取零开头的纯数字字符 在转换高德地图城市编码的过程中,有很多城市编码开头是 0,当我转成 json 的时候,出来的结果是直接吧 数字前面的 0 去掉了,不符合预期。所以此时需要对列转类型。 import os import time import ... continue reading python zhuoyuebiji 2020/6/22 1189
ApkInstaller Apk 安装工具 Apk Installer——Apk 安装工具 介绍 Apk Installer(原名:WSAInstallTool,自1.2.3.0版本后更名)是一款Windows下自动 ... continue reading 软件测试 zhuoyuebiji 2024/9/24 1179
Django 模板中使用 widthratio 标签实现 乘法、除法 运算 先看官方文档 http://doc.codingdict.com/django/ref/templates/builtins.html#std:templatetag-widthratio(中文) https://docs.dj ... continue reading django zhuoyuebiji 2020/3/29 1167
Sentry 错误监控(Django 错误监控) Sentry 官网 https://sentry.io 邮件提醒 错误列表 Python 安装和使用 Install our Python SDK using pip: $ ... continue reading 软件测试 zhuoyuebiji 2019/6/13 1165
Django Admin Show Image from Imagefield(Django admin 图片预览) 在 Django 管理后台中,图片字段(ImageField)默认是显示路径,期望能看到图片预览图。 编写 ImageWidgetAdmin 继承 admin.ModelAdmin, 编写自 ... continue reading django zhuoyuebiji 2020/4/15 1165
Jenkins 之 Android 打包及上传至蒲公英 准备条件 iMAC,非必须(如果是 安卓 和 苹果 可以在同一台电脑上打包则要 Mac OS 系统的电脑,如果是只是给安卓打包 windows 电脑也是可以的, window 下 需要把 ls 换成 dir ... continue reading 软件测试 zhuoyuebiji 2019/6/11 1160
Centos 查看端口是否被使用(netstat 和 lsof) [root@VM_2_29_centos ~]# netstat -anp | grep 9090 tcp 0 0 127.0.0.1:9090 0.0.0.0:* ... continue reading centos zhuoyuebiji 2020/5/21 1159
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running 产生原因: 安装 docker 后没有启动 docker 解决方法1: su root # 先切换到root用户, 再执行以下命令 systemctl enable docker # 开机自动启动docker ... continue reading docker zhuoyuebiji 2021/4/12 1159
Django 使用邮箱登录(扩展用户表、继承 AbstractUser) # 前提 继承 django 自带的用户类(AbstractUser) # 环境 1. python: 3.6.x 2. django==1.11.22 # ... continue reading django zhuoyuebiji 2019/7/25 1158
Django import_export 个性化导出 model 里的 字段含有 choice 的值 models.py class UserProfile(AbstractUser): """ 用户 """ gender_choice = ( ("0", "女"), ... continue reading django zhuoyuebiji 2020/12/8 1152