《编程小白的第一本Python入门书》
代码都是在Python3.6运行
- 重量单位转换 Python 3.6版本
- 直角三角形斜边计算 Python 3.6版本
- 9X9 乘法表 Python 3.6版本
- 空文本文件创建 Python 3.6版本
- 偶数 Python 3.6版本
- 复利函数 Python 3.6版本
- 猜大小 Python 3.6版本
- 赌钱小游戏 Python 3.6版本
- 伪手机验证码 Python 3.6版本
- 词频统计 Python 3.6版本
《FlaskWeb开发:基于Python的Web应用开发实战》
- 基于Flask的Web应用
修改添加tag的方式
- Flask 程序的基本结构
|-flasky/
|-app/
|-templates/
|-static/
|-main/
|-__init__.py
|-errors.py
|-forms.py
|-views.py
|-__init__.py
|-email.py
|-models.py
|-migrations/
|-tests/
|-__init__.py
|-test*.py
|-venv/
|-requirements.txt
|-config.py
|-manage.py
- 关于Requirement.txt
用过这个环境做其他项目,所以模块有点多
《Python编程:从入门到实践》
-
- 依赖于 Pygame 模块
-
- Matplotlib模块
pip install -i https://pypi.douban.com/simple matplotlib
- Pygal模块
pip install -i https://pypi.douban.com/simple pygal
- Pygal_maps_world模块
pip install -i https://pypi.douban.com/simple pygal_maps_world
- Requests模块
pip install -i https://pypi.douban.com/simple requests
- Matplotlib模块
-
- Django模块
python -m pip install -i https://pypi.douban.com/simple Django
D:\anaconda3\envs\spider\Scripts\django-admin.exe startproject WebApplication
D:\anaconda3\envs\spider\python manage.py migrate
D:\anaconda3\envs\spider\python manage.py runserver
D:\anaconda3\envs\spider\python manage.py startapp DjangoApplication
D:\anaconda3\envs\spider\python manage.py makemigrations DjangoApplication
D:\anaconda3\envs\spider\python manage.py migrate
- 创建超级用户
D:\Projects\MyGitHub\ReadBooks\Python编程:从入门到实践\WebApplication>D:\anaconda3\envs\spider\python manage.py createsuperuser
Username (leave blank to use 'xxx'): Deteriorator
Email address: 1930812245@qq.com
Password:(123456)
Password (again):
This password is too short. It must contain at least 8 characters.
This password is too common.
This password is entirely numeric.
Bypass password validation and create user anyway? [y/N]: y
Superuser created successfully.
- 创建超级用户
- Django模块