Python
rotateX
这个作者很懒,什么都没留下…
展开
-
centos Python3.7.2 flask+uwsgi+nginx环境搭建
flask+uwsgi+nginx原创 2019-11-27 17:08:36 · 182 阅读 · 0 评论 -
flask datatables服务端分页(一)
html<table id="parkdata" class="table table-bordered table-hover"> <thead> <tr> <th>编号</th> <th>名称</th> <...原创 2019-10-21 12:50:28 · 1188 阅读 · 0 评论 -
解决 with open('xx.csv' , 'w+', newline='')生成文件乱码
保存后,发现打开文件都是乱码,后面通过查找资料发现encoding参数要改为“utf_8_sig”才行,“utf-8”是不行的原创 2019-09-03 19:28:38 · 4569 阅读 · 0 评论 -
[Python]requests 得到headers解析为dict
requests 得到headers解析为dict转载 2019-06-14 09:37:41 · 1581 阅读 · 1 评论 -
Python金额大写转换
# 判断是否包含小数点,还有判断是否只包含小数点和数字的这边没写出来def is_contain_dot(check_str): check_str = str(check_str) for ch in check_str: if ch == '.': return True return Falsedef digital_t...原创 2019-05-29 11:33:48 · 2825 阅读 · 0 评论 -
阿里云25号端口被封换465端口
EMAIL_USE_SSL = TrueEMAIL_HOST = 'smtp.qq.com'EMAIL_PORT = 465EMAIL_HOST_USER = 'xxxxx@qq.com'EMAIL_HOST_PASSWORD = 'xxxxxxx'EMAIL_FROM = 'xxxx@qq.com'原创 2019-02-28 17:48:06 · 1802 阅读 · 1 评论 -
python 遍历list
1 # 方法1 2 print '遍历列表方法1:' 3 for i in list: 4 print("序号:%s 值:%s" % (list.index(i) + 1, i)) 5 6 # 方法2 7 print '\n遍历列表方法2:' 8 for i in range(len(list)): 9 print("序号:%s 值:%s" % (i ...转载 2018-12-26 14:53:38 · 1497 阅读 · 0 评论 -
Django时间查询
1、gt:大于某个时间now = datetime.datetime.now()#前一天start = now – datetime.timedelta(hours=23, minutes=59, seconds=59)a=yourobject.objects .filter(youdatetimcolumn__gt=start)2、gte:大于等于某个时间:a=yourobjec...转载 2018-12-26 14:32:04 · 705 阅读 · 1 评论 -
Django使用apscheduler完成定时任务
python 3.7/Django2.1/apscheduler2.1.2使用 apscheduler 3.5 Django服务就不能启动,不知道为什么,换了2.1就正常https://blog.csdn.net/stormdony/article/details/81144605转载 2018-12-03 09:42:02 · 1771 阅读 · 0 评论 -
Django修改后台title
site.py文件# Text to put at the end of each page's <title>.site_title = gettext_lazy('site_title')# Text to put in each page's <h1>.site_header = gettext_lazy('site_header')# Tex...原创 2018-10-26 22:53:56 · 1485 阅读 · 0 评论 -
python list反向排序方法
# 方法一 利用list的分片操作x = [1, 2, 3, 4, 5]print(x[::-1])# 方法二 list.reverse()。改变原list,无返回x = [1, 2, 3, 4, 5]x.reverse()print(x)# 方法三 reversed(list)。不改变原list,有返回,但返回类型不是list,而是<class 'list_reve...原创 2018-09-16 16:57:53 · 9586 阅读 · 0 评论