Linux
Windows
W-程序
存储
网络技术
防火墙
虚拟化
路由交换
数据库
mysql
脚本语言
python
大模型
软件中心
学海无涯
有疑问可发邮件
[email protected]
。
累计撰写
326
篇文章
累计创建
85
个标签
累计收到
0
条评论
栏目
Linux
Windows
W-程序
存储
网络技术
防火墙
虚拟化
路由交换
数据库
mysql
脚本语言
python
大模型
软件中心
目 录
CONTENT
以下是
python
相关的文章
2020-07-07
uwsgi.ini 配置
2020年7月7日更新 解决了多线程前端无法获取数据问题。 [uwsgi] # 字符编码 env = LC_CTYPE=zh_CN.utf-8 # 项目目录 chdir=/Project/WEB_PRO # 进程个数 wsgi-file=WEB_PRO/wsgi.py pidfile=/tmp/uw
2020-07-07
13
0
0
python
2020-06-10
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.2.
描述 在升级django版本的过程中,遇到以下问题: 问题一: pip3 install --upgrade mysqlclient /usr/bin/ld: 找不到 –lmariadb 解决方式: yum install mariadb-libs MariaDB-shared 问题二: 启动dj
2020-06-10
15
0
0
python
2020-05-22
django开发环境与生产环境配置
概述 一个项目在开发过程中,需要对生产环境进行优化及版本叠加,因使用不同的数据源及接口地址,需要对配置进行区分。 开发环境:pycharm + django + python manage.py 生产环境:django + uwsgi + nginx 配置说明 通过系统环境变量进行区域生产服务器和开
2020-05-22
10
0
0
python
2020-04-15
Nginx通过uwsgi发布Django项目导致Apscheduler计划任务不自动启动
说明 通过uwsgi启动Django项目,导致项目里面的计划任务不能跟随项目的启动自动运行,需要用户通过网页打开项目之后,计划任务才正常执行。 解决方式 原因是使用python manage.py runserver 0.0.0.0:80启动项目是通过manage.py进行驱动的,无论调用放置在哪个
2020-04-15
6
0
0
python
2020-04-15
Nginx通过uwsgi发布Django项目导致Apscheduler计划任务不能正常运行
说明 在项目中,需要使用到定时执行函数的操作,通过Apscheduler写了一个定时任务,启动时发现出现以下错误。 Exception in thread Thread-18: Traceback (most recent call last): File "/usr/local/softwar
2020-04-15
5
0
0
python
2020-04-13
Python-Snap7获取西门子PLC 300数值
说明 在一次数采项目中,对现场PLC300进行取数。本人小白,在网上搜罗了大量信息,终于找到解决方法。 准备事项 1. 操作系统 2.Python环境(本次使用Python3.6.6) 3.Snap7 connect connect('192.168.0.1', rack=0,slot=1) 三个参
2020-04-13
11
0
0
python
2020-01-01
urllib3 (1.25.6) or chardet (2.2.1) doesn't match a supported version! RequestsDependencyWarning)
问题: 在使用bypy进行备份上传时,报以下错误。 /usr/lib/python2.7/site-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.6) or chardet (2.2.1) doe
2020-01-01
9
0
0
脚本语言
python
2019-12-05
解决Python3.x在django中设置Content-Disposition,保存中文命名的文件
问题描述 使用xlwt进行导出文件时,在Content-Disposition中设置英文文件名称可以正常下载及显示,当设置为中文名称时,无法显示文件名称,无法下载。 异常图片 解决方式 原有代码:
2019-12-05
4
0
0
python
2019-07-08
Python使用Ldap3进行Windows AD域管理
一、安装 pip install ldap3 二、基本使用 1. 设置服务器 1.1 设置单个服务器 server=Server('192.168.1.1',use_ssl=True,get_info=ALL) 1.2 设置多个服务器 Ad_IP_List=['192.168.1.1','192.1
2019-07-08
12
0
0
python
2019-07-07
Django 使用uwsgi 部署在 nginx上,中文乱码
众所周知,python3相比python2的一个最大的改变就是str统一是unicode编码的,带有中文的字符串再也不用写成 u'中文' 这么麻烦,但是最近却遇到了 print('中文') 报错。 UnicodeEncodeError: 'ascii' codec can't encode char
2019-07-07
6
0
0
python
1
2
3
4
5