首页 |  我的博客 |  查看该博主内容分类 | 
摘要: 1. 安装https支持包 pip3 install django-extensions pip3 install django-werkzeug-debugger-runserver pip3 install pyOpenSSL 2. 在settings中添加 INSTALLED_APPS = [ 阅读全文
posted @ 2022-09-19 21:11 Z哎呀 阅读(1184) 评论(0) 推荐(0)
摘要: 前置准备 先进行升级openssl到1.1.1,或者安装时直接指定安装1.1.1版本,如果没有安高版本openssl,升级openssl,pip安装库会出现各种异常 openssl version cd /usr/local/src && wget https://www.openssl.org/s 阅读全文
posted @ 2022-09-19 16:27 Z哎呀 阅读(617) 评论(0) 推荐(0)
摘要: #1、字典(可转字符串、元组、列表) dict = {'name': 'Zara', 'age': 7, 'class': 'First'} #字典转为字符串,返回:<type 'str'> {'age': 7, 'name': 'Zara', 'class': 'First'} print typ 阅读全文
posted @ 2022-09-19 00:21 Z哎呀 阅读(160) 评论(0) 推荐(0)