
python
文章平均质量分 56
Muxiyale
Java小学员。
展开
-
09-Django配置mysql数据库
1. 在settings.py中配置 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # 数据库引擎 'NAME': 'mydb', # 你要存储数据的库名,事先要创建之 'USER': 'root', # 数据库用户名 ...原创 2019-06-22 23:47:30 · 249 阅读 · 0 评论 -
08-使用pyinstaller将Python脚本文件进行打包
写好了Python的脚本文件,想要生成.exe的可执行文件,方便其他人的使用。 所以就有了这个博客的记录 1.首先安装pyinstaller 安装方式为:pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple -i https://pypi.tuna.tsinghua.edu.cn/simple 表示从国内的站点进行下...原创 2019-06-20 11:36:32 · 221 阅读 · 0 评论 -
07-Python远程包仓库地址
https://pypi.tuna.tsinghua.edu.cn/simple/原创 2019-06-20 10:34:09 · 1361 阅读 · 0 评论 -
06-Windows下面安装pip
windows 环境下安装pip的步骤: 请参考以下的文章: https://blog.youkuaiyun.com/jin80506/article/details/83111848原创 2019-06-20 09:43:30 · 168 阅读 · 0 评论 -
Django 增删改查练习
Django 增删改查练习 Django下载 访问网址:https://www.djangoproject.com/download/ 从右侧下载:Latest release: Django-2.2.2.tar.gz Django安装 解压 tar zxvf Django-1.x.y.tar.gz 安装cd Django-1.x.y sudo python3 setup.py i...原创 2019-06-14 22:42:32 · 249 阅读 · 0 评论 -
03-django中的增删改查
Django 1.Django是一个基于python的高级web开发框架。 2.Django安装 http://www.runoob.com/django/django-install.html 3.mac 上面安装pip https://blog.youkuaiyun.com/mike__lee/article/details/72593684 4.创建Djan...原创 2018-10-26 20:58:24 · 319 阅读 · 0 评论 -
04-python简单爬虫_爬取网易新闻
# -*- coding: utf-8 -*- import os import sys import requests import re from lxml import etree """ 抓取网易新闻的爬虫 """ # 存储爬取到的结果 def StringListSave(save_path, filename, slist): if not os.path.exist...原创 2018-10-29 21:58:15 · 1226 阅读 · 0 评论 -
02-python破解
转载地址:http://blog.youkuaiyun.com/fx677588/article/details/58164902转载 2018-01-11 22:59:44 · 511 阅读 · 0 评论 -
01-python入门学习
Python简介 mac下Python的安装 第一个Python程序Python简介python是一个叫做“龟叔”的歪果仁开发的,在圣诞节闲的没事儿,目测也是一个宅男。 mac下Python的安装先安装Homebrow 然后brew install python就可以了。 第一个Python程序打开console,输入Python,就会进入Python界面,Python的命令输入开头是以**>>>*原创 2017-08-04 09:53:49 · 965 阅读 · 0 评论