Flask
Whity_Yuan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Flask learning notes 1
Environment Set Up 1. install python and pip3 2. install virtual environment tool pip3 install virtualenv 3. make a new directory and enter it to build the venv and activate it. virtualenv --no...原创 2019-05-06 22:14:31 · 174 阅读 · 0 评论 -
Flask learning note 2
1. Set up main script for running from flask import Flask, render_template, url_for # modules that are needed in this part. # render_template can render the template we defined in the templates fold...原创 2019-05-07 14:59:30 · 193 阅读 · 0 评论 -
Flask learning note (RESTful API)
REST -- REpresentational State Transfer Resource: namely data (use URL to locate data?) REpresentational : how you represent your data, like using JSON,XML,JPEG, etc.. State Transfer: use HTTP ver...转载 2019-05-09 21:28:59 · 219 阅读 · 0 评论 -
Flask learning notes 3 Forms
This is the learning notes of the tutorials from Corey Schafer. 1. In the root direcotry we can create a python script called "forms.py" to define how our forms look like. To do a project it is bett...原创 2019-05-07 16:11:33 · 239 阅读 · 0 评论
分享