1.python當中的web開發框架。html
(1)web2pypython
見證了web2py框架的強大,new-----新建一個項目(web2py項目)--------導入web2py的包(可在線下載,也可事先放在本地)--------系統自動生成全套web框架。git
回頭作個小項目上傳GitHub,咱們的項目用不上web2py,故不作太多深刻。github
02python初級課程暫時省略,屬於基礎模塊的學習。本人沒那麼多的時間。web
03. Python RESTful API 開發flask
flask官網https://palletsprojects.com/p/flask/,全英文介紹,固然也能夠查看flask中文官網。https://dormousehole.readthedocs.io/en/latest/api
1、能夠用debug模式,查看出錯的地方和代碼 (可是個人瀏覽器中缺少高亮代碼的這個功能)瀏覽器
2、接着介紹了谷歌的開發工具。這幾項的具體功能和使用。框架
3、python的request模塊,中文介紹參考網站:快速上手模塊,能夠對照着操做 http://cn.python-requests.org/zh_CN/latest/user/quickstart.html工具
import requests
r = requests.get('https://api.github.com/events')
print(r.text)可是出現了報錯,requests.exceptions.SSLError: HTTPSConnectionPool(host='api.github.com', port=443): Max retries exceeded with url: /events (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available."))如今的解決方案,參考文檔。https://blog.csdn.net/ouening/article/details/89182078