<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>教程 &#8211; ChaBug安全</title>
	<atom:link href="/tags/%E6%95%99%E7%A8%8B/feed" rel="self" type="application/rss+xml" />
	<link>/</link>
	<description>一个分享知识、结识伙伴、资源共享的博客</description>
	<lastBuildDate>Fri, 24 Aug 2018 02:50:25 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.5</generator>
	<item>
		<title>Python3.6+Django2.0视频教程及实战开发</title>
		<link>/course/561.html</link>
		
		<dc:creator><![CDATA[Y4er]]></dc:creator>
		<pubDate>Fri, 24 Aug 2018 02:48:36 +0000</pubDate>
				<category><![CDATA[教程分享]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[教程]]></category>
		<category><![CDATA[视频]]></category>
		<guid isPermaLink="false">/?p=561</guid>

					<description><![CDATA[Django2.0视频教程的代码 该git项目是Django2.0视频教程对应章节的代码，为了查看方便，对应章节代码在对应文件夹中。 Django2.0视频教程地址：https:/...]]></description>
										<content:encoded><![CDATA[<p><a href="/wp-content/uploads/2018/06/2.jpg"><img loading="lazy" class="aligncenter size-full wp-image-71" src="/wp-content/uploads/2018/06/2.jpg" alt="" width="500" height="228" /></a></p>
<h1>Django2.0<span class="wpcom_tag_link"><a href="/tags/%e8%a7%86%e9%a2%91" title="视频" target="_blank">视频</a></span><span class="wpcom_tag_link"><a href="/tags/%e6%95%99%e7%a8%8b" title="教程" target="_blank">教程</a></span>的代码</h1>
<p>该git项目是Django2.0视频教程对应章节的代码，为了查看方便，对应章节代码在对应文件夹中。</p>
<p>Django2.0视频教程地址：<a href="https://space.bilibili.com/252028233/#/channel/detail?cid=28138" rel="nofollow">https://space.bilibili.com/252028233/#/channel/detail?cid=28138</a></p>
<h2><a id="user-content-如何使用" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8" aria-hidden="true"></a>如何使用</h2>
<p>该git项目主要是提供一个可对照的代码给大家。大家一定要先照着视频把代码敲一遍，以加深印象。</p>
<p>每个文件夹对应每节课的代码。</p>
<h4><a id="user-content-1python" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#1python" aria-hidden="true"></a>1、Python</h4>
<p>Django是Python的一种web框架，需要Python才可使用。本教程使用Python3.6的版本录制，建议使用Python3.x最新版本。可打开<a href="https://www.python.org/downloads/" rel="nofollow">Python官网</a>下载并安装。</p>
<h4><a id="user-content-2虚拟环境" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#2%E8%99%9A%E6%8B%9F%E7%8E%AF%E5%A2%83" aria-hidden="true"></a>2、虚拟环境</h4>
<p>本课程用virtualenv，你也可以使用其他虚拟环境管理Python库。</p>
<h4><a id="user-content-3一键安装库" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#3%E4%B8%80%E9%94%AE%E5%AE%89%E8%A3%85%E5%BA%93" aria-hidden="true"></a>3、一键安装库</h4>
<p>每次课的代码文件夹都有一个requirments.txt文件。该文件是记录所使用库的信息。可利用该文件直接一键安装所有库。</p>
<p>启动虚拟环境之后（若有使用虚拟环境的的话），进入requirments.txt所在的目录，执行命令：</p>
<p><code>pip install -r requirements.txt</code></p>
<h4><a id="user-content-4第36节需要安装的mysqlclient库" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#4%E7%AC%AC36%E8%8A%82%E9%9C%80%E8%A6%81%E5%AE%89%E8%A3%85%E7%9A%84mysqlclient%E5%BA%93" aria-hidden="true"></a>4、第36节需要安装的mysqlclient库</h4>
<p>第36节需要的mysqlclient库先用pip install mysqlclient安装。不行的话，打开<a href="https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient" rel="nofollow">https://www.lfd.uci.edu/~gohlke/pythonlibs/#mysqlclient</a>下载mysqlclient的whl包，再用pip安装这个whl包。</p>
<h4><a id="user-content-5启动本地服务" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#5%E5%90%AF%E5%8A%A8%E6%9C%AC%E5%9C%B0%E6%9C%8D%E5%8A%A1" aria-hidden="true"></a>5、启动本地服务</h4>
<p>进入项目根目录，执行命令：</p>
<p><code>python manage.py runserver</code></p>
<h2><a id="user-content-目录大纲" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#%E7%9B%AE%E5%BD%95%E5%A4%A7%E7%BA%B2" aria-hidden="true"></a>目录大纲</h2>
<p>01.什么是Django</p>
<ul>
<li>Django是Python Web框架</li>
<li>Django的特点</li>
<li>安装Python3</li>
<li>安装Django2.0</li>
</ul>
<p>02.入门仪式：Hello World</p>
<ul>
<li>创建Django项目</li>
<li>&#8220;Hello, world&#8221;</li>
<li>初步介绍urls路由</li>
<li>创建超级管理员，进入后台管理界面</li>
</ul>
<p>03.Django基本应用结构</p>
<ul>
<li>什么是Django应用</li>
<li>创建Django应用</li>
<li>初步介绍models模型</li>
<li>模型同步到数据库</li>
<li>简单把模型展现到后台管理界面</li>
</ul>
<p>(完善中&#8230;)</p>
<h2><a id="user-content-注意" class="anchor" href="https://github.com/HaddyYang/django2.0-course/blob/master/README.md#%E6%B3%A8%E6%84%8F" aria-hidden="true"></a>注意</h2>
<p>我后面会继续把其他代码和说明补充完整。 admin后台用户名是ysh，密码是test123456</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>傲天带你学Python系列直播</title>
		<link>/others/368.html</link>
		
		<dc:creator><![CDATA[Y4er]]></dc:creator>
		<pubDate>Sat, 03 Mar 2018 20:18:10 +0000</pubDate>
				<category><![CDATA[其他杂乱]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[教程]]></category>
		<guid isPermaLink="false">/?p=266</guid>

					<description><![CDATA[澳门首家线上Python上线了，性感傲天在线直播，带你走进Python的奇妙世界！ 不开玩笑，回归正题，朋友@傲天自己搞得公开课，我帮他宣传下。 傲天师傅没少帮我解决Python学...]]></description>
										<content:encoded><![CDATA[<blockquote><p>澳门首家线上Python上线了，性感傲天在线直播，带你走进Python的奇妙世界！</p></blockquote>
<p>不开玩笑，回归正题，朋友<a href="https://www.allsrc.cn/">@傲天</a>自己搞得公开课，我帮他宣传下。</p>
<p>傲天师傅没少帮我解决Python学习中的问题，他说他会十几种语言@(不高兴)，我不信@(捂嘴笑)，然后他就给我举例出来了：<code>php js node html css c <span class="wpcom_tag_link"><a href="/tags/python" title="python" target="_blank">python</a></span> c++ st ld</code>。好吧，说了这么多，我只想说这确实是个大佬，有兴趣的同学可以看一下。</p>
<p><strong>哦对了，他讲的是Python3哦！</strong></p>
<h1>目录</h1>
<ol>
<li>Python第一节&#8211;前言</li>
<li>Python第二节&#8211;运算符和布尔运算</li>
<li>Python第三节&#8211;Python版本和关键字</li>
<li>Python第四节&#8211;讲解函数</li>
<li>Python第五节&#8211;变量</li>
<li>Python第六节&#8211;条件控制和循环</li>
</ol>
<p>更多章节陆陆续续更新中&#8230;</p>
<h1>直播地址</h1>
<p>他喜欢用QQ群解决问题，群号是:<a href="https://jq.qq.com/?_wv=1027&#038;k=5Y1ShFa">518750457</a></p>
<p>当然，录像也有，传到了B站。地址在这：<a href="https://www.bilibili.com/video/av20287067/">https://www.bilibili.com/video/av20287067/</a></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
