上一页 1 2 3 4 5 6 7 8 9 10 ··· 34 下一页

2018年10月15日

在pypi上发布python包详细教程

摘要: 使用Python编程中Python的包安装非常方便,一般都是可以pip来安装搞定:pip install <package name>,我们自己写的python也可以发布在pypi上,很简单。 一、准备工作1.准备好你要发布的代码(简单的一个函数、一个类或者是一个你自己写的功能模块代码),测试代码以 阅读全文

posted @ 2018-10-15 11:37 zqifa 阅读(2135) 评论(1) 推荐(0) 编辑

2018年9月28日

nginx下js文件修改后访问不更新问题解决

摘要: 今天遇到一个问题,nginx下js修改后不更新,加版本号,刷新浏览器缓存都不行,重启服务器才行,修改后又不更新了而且加载的js文件会有乱码或者文件加载不全的问题。 解决办法:修改nginx.conf,sendfile off; http { sendfile off;} 重启nginx后问题解决。 阅读全文

posted @ 2018-09-28 18:10 zqifa 阅读(2601) 评论(0) 推荐(0) 编辑

2018年9月19日

sql查询:存在A表而不在B表中的数据

摘要: A、B两表,找出ID字段中,存在A表,但是不存在B表的数据。 方法一:使用 not inselect distinct A.ID from A where A.ID not in (select ID from B) 方法二:使用 left join...on... , "B.ID isnull" 阅读全文

posted @ 2018-09-19 11:56 zqifa 阅读(31075) 评论(1) 推荐(6) 编辑

2018年9月18日

docker 容器时间跟宿主机时间同步

摘要: docker 容器时间跟宿主机时间同步 docker cp /etc/localtime 87986863838b:/etc/docker cp /etc/localtime container-name:/etc/ 87986863838b或者container-name为容器id和容器名称 阅读全文

posted @ 2018-09-18 14:18 zqifa 阅读(402) 评论(0) 推荐(0) 编辑

2018年9月16日

netBeans 修改新建php文件头部注释模板

摘要: 用Netbeans(版本8.2)写php配置模板,模板配置好,可以省很多事,方便开发,而且,显得很专业。 新建php文件时: <?php /** * Encoding : UTF-8 * Created on : 2018-9-16 12:31:33 by author , email@xxx.co 阅读全文

posted @ 2018-09-16 12:46 zqifa 阅读(1075) 评论(0) 推荐(0) 编辑

2018年9月12日

django默认后台使用

摘要: 1.初始化数据python manage.py migrate 2.创建超级用户python manage.py createsuperuser 然后按照提示输入就可以了 3.admin管理页面找不到base.css,dashboard.css文件 在settings文件中设置STATIC_ROOT 阅读全文

posted @ 2018-09-12 10:16 zqifa 阅读(257) 评论(0) 推荐(0) 编辑

2018年9月11日

python string/list转换

摘要: python的read、write方法的操作对象都是string。输入、输出和逻辑业务上很多时候都要用到string、list互转。 1.简单用法 import stringstr = 'abcde'list = list(str)print list# ['a', 'b', 'c', 'd', ' 阅读全文

posted @ 2018-09-11 15:23 zqifa 阅读(1011) 评论(0) 推荐(1) 编辑

2018年9月10日

最全的常用正则表达式大全

摘要: 1.校验数字的表达式 1. 数字:^[0-9]*$ 2. n位的数字:^\d{n}$ 3. 至少n位的数字:^\d{n,}$ 4. m-n位的数字:^\d{m,n}$ 5. 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6. 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+( 阅读全文

posted @ 2018-09-10 17:38 zqifa 阅读(21647) 评论(2) 推荐(4) 编辑

python引入自定义模块

摘要: Python的包搜索路径 Python会在以下路径中搜索它想要寻找的模块:1. 程序所在的文件夹2. 标准库的安装路径3. 操作系统环境变量PYTHONPATH所包含的路径 将自定义库的路径添加到Python的库路径中去,有如下两种方法: 1. 动态的添加库路径。在程序运行过程中修改sys.path 阅读全文

posted @ 2018-09-10 14:43 zqifa 阅读(214) 评论(0) 推荐(0) 编辑

使用.pth文件扩展python环境路径

摘要: 使用.pth文件扩展python环境路径 有时候我们不希望把一个库放到 site-packages 下面,而是更愿意把它保留在原始的工程目录中,方便管理和维护。那么怎么能让 Python 运行环境找到这个库呢?通常的做法是在程序启动的时候,往sys.path里面增加这个目录,但是这样做非常的繁琐,最 阅读全文

posted @ 2018-09-10 14:32 zqifa 阅读(3365) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 34 下一页

导航