PyCharm cython问题

问题

warning: Debugger speedups using cython not found.

解决方法

1
python /Applications/PyCharm.app/Contents/helpers/pydev/setup_cython.py  build_ext --inplace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
jinlong  (e) om_news_spider  ~  python /Applications/PyCharm.app/Contents/helpers/pydev/setup_cython.py  build_ext --inplace
running build_ext
building '_pydevd_bundle.pydevd_cython' extension
creating build
creating build/temp.macosx-10.12-x86_64-3.6
creating build/temp.macosx-10.12-x86_64-3.6/_pydevd_bundle
clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/usr/local/Cellar/python3/3.6.2/Frameworks/Python.framework/Versions/3.6/include/python3.6m -c _pydevd_bundle/pydevd_cython.c -o build/temp.macosx-10.12-x86_64-3.6/_pydevd_bundle/pydevd_cython.o
creating build/lib.macosx-10.12-x86_64-3.6
creating build/lib.macosx-10.12-x86_64-3.6/_pydevd_bundle
clang -bundle -undefined dynamic_lookup build/temp.macosx-10.12-x86_64-3.6/_pydevd_bundle/pydevd_cython.o -o build/lib.macosx-10.12-x86_64-3.6/_pydevd_bundle/pydevd_cython.cpython-36m-darwin.so
copying build/lib.macosx-10.12-x86_64-3.6/_pydevd_bundle/pydevd_cython.cpython-36m-darwin.so -> _pydevd_bundle
running build_ext
building '_pydevd_frame_eval.pydevd_frame_evaluator' extension
creating build/temp.macosx-10.12-x86_64-3.6/_pydevd_frame_eval
clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/usr/local/Cellar/python3/3.6.2/Frameworks/Python.framework/Versions/3.6/include/python3.6m -c _pydevd_frame_eval/pydevd_frame_evaluator.c -o build/temp.macosx-10.12-x86_64-3.6/_pydevd_frame_eval/pydevd_frame_evaluator.o
creating build/lib.macosx-10.12-x86_64-3.6/_pydevd_frame_eval
clang -bundle -undefined dynamic_lookup build/temp.macosx-10.12-x86_64-3.6/_pydevd_frame_eval/pydevd_frame_evaluator.o -o build/lib.macosx-10.12-x86_64-3.6/_pydevd_frame_eval/pydevd_frame_evaluator.cpython-36m-darwin.so
copying build/lib.macosx-10.12-x86_64-3.6/_pydevd_frame_eval/pydevd_frame_evaluator.cpython-36m-darwin.so -> _pydevd_frame_eval

Markdown学习

参考内容

Markdown是什么?

谁发明了这么个东西?

为什么要使用它?

怎么使用?

谁在用?

感觉有意思?不怕你看见,就怕你试试

=

  1. Markdown是什么?

Markdown是一种轻量级标记语言,它以纯文本形式(易读、易写、易更改)编写文档,并最终以HTML格式发布。
Markdown也可以理解为将以MARKDOWN语言编写的语言转换成HTML内容的工具,最初是一个perl脚本Markdown.pl。

  1. 谁发明了这么个东西?

它由Aaron Swartz和John Gruber共同设计,Aaron Swartz就是那位于去年(2013年1月11日)自杀,有着开挂一般人生经历的程序员。维基百科对他的介绍是:软件工程师、作家、政治组织者、互联网活动家、维基百科人。

他有着足以让你跪拜的人生经历:

14岁参与RSS 1.0规格标准的制订。

2004年入读斯坦福,之后退学。

2005年创建Infogami,之后与Reddit合并成为其合伙人。

2010年创立求进会(Demand Progress),积极参与禁止网络盗版法案(SOPA)活动,最终该提案居然被撤回。

2011年7月19日,因被控从MIT和JSTOR下载480万篇学术论文并以免费形式上传于网络被捕。

2013年1月自杀身亡。

天才都有早逝的归途(又是一位犹太人)。

  1. 为什么要使用它?

它是易读(看起开舒服)、易写(语法简单)、易更改纯文本。处处体现着极简主义的影子。
兼容HTML,可以转换为HTML格式发布。
跨平台使用。
越来越多的网站支持Markdown。
更方便清晰的组织你的电子邮件。(Markdown-here, Airmail)
摆脱Word(我不是认真的)。

  1. 怎么使用?

如果不算扩展,Markdown的语法绝对简单到让你爱不释手。

废话太多,下面正文,Markdown语法主要分为如下几大部分: 标题,段落,区块引用,代码区块,强调,列表,分割线,链接,图片,反斜杠 \,符号’`’。

4.1 标题

两种形式:
1)使用=和-标记一级和二级标题。

一级标题

二级标题

效果:

一级标题

二级标题
2)使用#,可表示1-6级标题。

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

效果:

一级标题

二级标题

三级标题

四级标题

五级标题

六级标题
4.2 段落

段落的前后要有空行,所谓的空行是指没有文字内容。若想在段内强制换行的方式是使用两个以上空格加上回车(引用中换行省略回车)。

4.3 区块引用

在段落的每行或者只在第一行使用符号>,还可使用多个嵌套引用,如:

区块引用

嵌套引用
效果:

区块引用

嵌套引用
4.4 代码区块

代码区块的建立是在每行加上4个空格或者一个制表符(如同写代码一样)。如
普通段落:

void main()
{
printf(“Hello, Markdown.”);
}

代码区块:

void main()
{
printf(“Hello, Markdown.”);
}
注意:需要和普通段落之间存在空行。

4.5 强调

在强调内容两侧分别加上*或者_,如:

斜体,_斜体_
粗体粗体
效果:

斜体,斜体
粗体,粗体
4.6 列表

使用·、+、或-标记无序列表,如:

-(+) 第一项 -(+) 第二项 - (+*)第三项
注意:标记后面最少有一个_空格_或制表符。若不在引用区块中,必须和前方段落之间存在空行。

效果:

第一项
第二项
第三项
有序列表的标记方式是将上述的符号换成数字,并辅以.,如:

1 . 第一项
2 . 第二项
3 . 第三项
效果:

第一项
第二项
第三项
4.7 分割线

分割线最常使用就是三个或以上*,还可以使用-和_。

4.8 链接

链接可以由两种形式生成:行内式和参考式。
行内式:

younghz的Markdown库
效果:

younghz的Markdown库。
参考式:

[younghz的Markdown库1][1]
[younghz的Markdown库2][2]
[1]:https:://github.com/younghz/Markdown “Markdown”
[2]:https:://github.com/younghz/Markdown “Markdown”
效果:

younghz的Markdown库1
younghz的Markdown库2
注意:上述的[1]:https:://github.com/younghz/Markdown “Markdown”不出现在区块中。

4.9 图片

添加图片的形式和链接相似,只需在链接的基础上前方加一个!。

4.10 反斜杠\

相当于反转义作用。使符号成为普通符号。

4.11 符号’`’

起到标记作用。如:

ctrl+a
效果:

ctrl+a

  1. 谁在用?

Markdown的使用者:

GitHub
简书
Stack Overflow
Apollo
Moodle
Reddit
等等

  1. 感觉有意思?趁热打铁,推荐几个_工具_。

Chrome下的stackedit插件可以离线使用,很爽。也不用担心平台受限。 在线的dillinger.io算是评价好的了,可是不能离线使用。
Windowns下的MarkdownPad也用过,不过免费版的体验不是很好。
Mac下的Mou是国人贡献的,口碑很好。推荐。
Linux下的ReText不错。
其实在对语法了如于心的话,直接用编辑器就可以了,脑子里满满的都是格式化好的文本啊。 我现在使用马克飞象 + Markdown-here,先编辑好,然后一键格式化,挺方便。

注意:不同的Markdown解释器或工具对相应语法(扩展语法)的解释效果不尽相同,具体可参见工具的使用说明。 虽然有人想出面搞一个所谓的标准化的Markdown,[没想到还惹怒了健在的创始人John Gruber] (http://blog.codinghorror.com/standard-markdown-is-now-common-markdown/)。

以上基本是所有traditonal markdown的语法。

其它:

列表的使用(非traditonal markdown):

用|表示表格纵向边界,表头和表内容用-隔开,并可用:进行对齐设置,两边都有:则表示居中,若不加:则默认左对齐。

代码库 链接
MarkDown https://github.com/younghz/Markdown
moos-young https://github.com/younghz/moos-young
关于其它扩展语法可参见具体工具的使用说明。

Makrdown help

MacDown

MacDown logo

Hello there! I’m MacDown, the open source Markdown editor for OS X.

Let me introduce myself.

Markdown and I

Markdown is a plain text formatting syntax created by John Gruber, aiming to provide a easy-to-read and feasible markup. The original Markdown syntax specification can be found here.

MacDown is created as a simple-to-use editor for Markdown documents. I render your Markdown contents real-time into HTML, and display them in a preview panel.

MacDown Screenshot

I support all the original Markdown syntaxes. But I can do so much more! Various popular but non-standard syntaxes can be turned on/off from the Markdown preference pane.

You can specify extra HTML rendering options through the Rendering preference pane.

You can customize the editor window to you liking in the Editor preferences pane:

You can configure various application (that’s me!) behaviors in the General preference pane.

The Basics

Before I tell you about all the extra syntaxes and capabilities I have, I’ll introduce you to the basics of standard markdown. If you already know markdown, and want to jump straight to learning about the fancier things I can do, I suggest you skip to the Markdown preference pane. Lets jump right in.

Line Breaks

To force a line break, put two spaces and a newline (return) at the end of the line.

  • This two-line bullet
    won’t break

  • This two-line bullet
    will break

Here is the code:

1
2
3
4
5
* This two-line bullet 
won't break

* This two-line bullet
will break

Strong and Emphasize

Strong: **Strong** or __Strong__ (Command-B)
Emphasize: *Emphasize* or _Emphasize_[^emphasize] (Command-I)

Headers (like this one!)

Header 1
========

Header 2
--------

or

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Inline

Just put angle brackets around an email and it becomes clickable: uranusjr@gmail.com
<uranusjr@gmail.com>

Same thing with urls: http://macdown.uranusjr.com
<http://macdown.uranusjr.com>

Perhaps you want to some link text like this: Macdown Website
[Macdown Website](http://macdown.uranusjr.com "Title") (The title is optional)

Reference style

Sometimes it looks too messy to include big long urls inline, or you want to keep all your urls together.

Make a link [a link][arbitrary_id] then on it’s own line anywhere else in the file:
[arbitrary_id]: http://macdown.uranusjr.com "Title"

If the link text itself would make a good id, you can link like this [like this][], then on it’s own line anywhere else in the file:
[like this]: http://macdown.uranusjr.com

Images

Inline

![Alt Image Text](path/or/url/to.jpg "Optional Title")

Reference style

![Alt Image Text][image-id]
on it’s own line elsewhere:
[image-id]: path/or/url/to.jpg "Optional Title"

Lists

  • Lists must be preceded by a blank line (or block element)
  • Unordered lists start each item with a *
  • - works too
    • Indent a level to make a nested list
      1. Ordered lists are supported.
      2. Start each item (number-period-space) like 1.
      3. It doesn’t matter what number you use, I will render them sequentially
      4. So you might want to start each line with 1. and let me sort it out

Here is the code:

1
2
3
4
5
6
7
8
* Lists must be preceded by a blank line (or block element)
* Unordered lists start each item with a `*`
- `-` works too
* Indent a level to make a nested list
1. Ordered lists are supported.
2. Start each item (number-period-space) like `1. `
42. It doesn't matter what number you use, I will render them sequentially
1. So you might want to start each line with `1.` and let me sort it out

Block Quote

Angle brackets > are used for block quotes.
Technically not every line needs to start with a > as long as
there are no empty lines between paragraphs.
Looks kinda ugly though.

Block quotes can be nested.

Multiple Levels

Most markdown syntaxes work inside block quotes.

Here is the code:

1
2
3
4
5
6
7
8
9
10
11
12
> Angle brackets `>` are used for block quotes.  
Technically not every line needs to start with a `>` as long as
there are no empty lines between paragraphs.
> Looks kinda ugly though.
> > Block quotes can be nested.
> > > Multiple Levels
>
> Most markdown syntaxes work inside block quotes.
>
> * Lists
> * [Links][arbitrary_id]
> * Etc.

Inline Code

Inline code is indicated by surrounding it with backticks:
`Inline code`

If your code has `backticks` that need to be displayed, you can use double backticks:

``Code with `backticks` `` ```` (mind the spaces preceding the final set of backticks)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50


### Block Code
If you indent at least four spaces or one tab, I'll display a code block.

print('This is a code block')
print('The block must be preceded by a blank line')
print('Then indent at least 4 spaces or 1 tab')
print('Nesting does nothing. Your code is displayed Literally')

I also know how to do something called [Fenced Code Blocks](#fenced-code-block) which I will tell you about later.

### Horizontal Rules
If you type three asterisks `***` or three dashes `---` on a line, I'll display a horizontal rule:

***


## <a name="markdown-pane"></a>The Markdown Preference Pane
This is where I keep all preferences related to how I parse markdown into html.
![Markdown preferences pane](http://d.pr/i/RQEi+)

### Document Formatting
The ***Smartypants*** extension automatically transforms straight quotes (`"` and `'`) in your text into typographer’s quotes (`“`, `”`, `‘`, and `’`) according to the context. Very useful if you’re a typography freak like I am. Quote and Smartypants are syntactically incompatible. If both are enabled, Quote takes precedence.


### Block Formatting

#### Table

This is a table:

First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell

You can align cell contents with syntax like this:

| Left Aligned | Center Aligned | Right Aligned |
|:------------- |:---------------:| -------------:|
| col 3 is | some wordy text | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |

The left- and right-most pipes (`|`) are only aesthetic, and can be omitted. The spaces don’t matter, either. Alignment depends solely on `:` marks.

#### <a name="fenced-code-block">Fenced Code Block</a>

This is a fenced code block:

print(‘Hello world!’)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71

You can also use waves (`~`) instead of back ticks (`` ` ``):

~~~
print('Hello world!')
~~~


You can add an optional language ID at the end of the first line. The language ID will only be used to highlight the code inside if you tick the ***Enable highlighting in code blocks*** option. This is what happens if you enable it:

![Syntax highlighting example](http://d.pr/i/9HM6+)

I support many popular languages as well as some generic syntax descriptions that can be used if your language of choice is not supported. See [relevant sections on the official site](http://macdown.uranusjr.com/features/) for a full list of supported syntaxes.


### Inline Formatting

The following is a list of optional inline markups supported:

Option name | Markup | Result if enabled |
--------------------|------------------|-----------------------|
Intra-word emphasis | So A\*maz\*ing | So A<em>maz</em>ing |
Strikethrough | \~~Much wow\~~ | <del>Much wow</del> |
Underline [^under] | \_So doge\_ | <u>So doge</u> |
Quote [^quote] | \"Such editor\" | <q>Such editor</q> |
Highlight | \==So good\== | <mark>So good</mark> |
Superscript | hoge\^(fuga) | hoge<sup>fuga</sup> |
Autolink | http://t.co | <http://t.co> |
Footnotes | [\^4] and [\^4]: | [^4] and footnote 4 |

[^4]: You don't have to use a number. Arbitrary things like `[^footy note4]` and `[^footy note4]:` will also work. But they will *render* as numbered footnotes. Also, no need to keep your footnotes in order, I will sort out the order for you so they appear in the same order they were referenced in the text body. You can even keep some footnotes near where you referenced them, and collect others at the bottom of the file in the traditional place for footnotes.




## <a name="rendering-pane"></a>The Rendering Preference Pane
This is where I keep preferences relating to how I render and style the parsed markdown in the preview window.
![Rendering preferences pane](http://d.pr/i/rT4d+)

### CSS
You can choose different css files for me to use to render your html. You can even customize or add your own custom css files.

### Syntax Highlighting
You have already seen how I can syntax highlight your fenced code blocks. See the [Fenced Code Block](#fenced-code-block) section if you haven’t! You can also choose different themes for syntax highlighting.

### TeX-like Math Syntax
I can also render TeX-like math syntaxes, if you allow me to.[^math] I can do inline math like this: \\( 1 + 1 \\) or this (in MathML): <math><mn>1</mn><mo>+</mo><mn>1</mn></math>, and block math:

\\[
A^T_S = B
\\]

or (in MathML)

<math display="block">
<msubsup><mi>A</mi> <mi>S</mi> <mi>T</mi></msubsup>
<mo>=</mo>
<mi>B</mi>
</math>



### Task List Syntax
1. [x] I can render checkbox list syntax
* [x] I support nesting
* [x] I support ordered *and* unordered lists
2. [ ] I don't support clicking checkboxes directly in the html window


### Jekyll front-matter
If you like, I can display Jekyll front-matter in a nice table. Just make sure you put the front-matter at the very beginning of the file, and fence it with `---`. For example:


title: “Macdown is my friend”

date: 2014-06-06 20:00:00

`

Render newline literally

Normally I require you to put two spaces and a newline (aka return) at the end of a line in order to create a line break. If you like, I can render a newline any time you end a line with a newline. However, if you enable this, markdown that looks lovely when I render it might look pretty funky when you let some other program render it.

The General Preferences Pane

This is where I keep preferences related to application behavior.
General preferences pane

The General Preferences Pane allows you to tell me how you want me to behave. For example, do you want me to make sure there is a document open when I launch? You can also tell me if I should constantly update the preview window as you type, or wait for you to hit command-R instead. Maybe you prefer your editor window on the right? Or to see the word-count as you type. This is also the place to tell me if you are interested in pre-releases of me, or just want to stick to better-tested official releases.

The Editor Preference Pane

This is where I keep preferences related to the behavior and styling of the editing window.
Editor preferences pane

Styling

My editor provides syntax highlighting. You can edit the base font and the coloring/sizing theme. I provided some default themes (courtesy of Mou’s creator, Chen Luo) if you don’t know where to start.

You can also edit, or even add new themes if you want to! Just click the Reveal button, and start moving things around. Remember to use the correct file extension (.styles), though. I’m picky about that.

I offer auto-completion and other functions to ease your editing experience. If you don’t like it, however, you can turn them off.

Hack On

That’s about it. Thanks for listening. I’ll be quiet from now on (unless there’s an update about the app—I’ll remind you for that!).

Happy writing!

[^emphasize]: If Underlines is turned on, _this notation_ will render as underlined instead of emphasized

[^under]: If Underline is disabled _this_ will be rendered as emphasized instead of being underlined.

[^quote]: Quote replaces literal " characters with html <q> tags. Quote and Smartypants are syntactically incompatible. If both are enabled, Quote takes precedence. Note that Quote is different from blockquote, which is part of standard Markdown.

[^math]: Internet connection required.

参考

Markdown官网
Markdown维基百科

Learning-Markdown (Markdown 入门参考)

献给写作者的 Markdown 新手指南

参考

CentOS7 PhantomJS安装配置

PhantomJS

安装 PhantomJS

brew install phantomjs

版本

1
2
phantomjs --version
2.1.1

CentOS 7.3 配置方法

下载 PhantomJS

http://phantomjs.org/download.html

1
https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-macosx.zip

配置 PhantomJS

Selenium

安装 Selenium

pip3 install selenium

依赖

1
2


下载 ChromeDriver - WebDriver for Chrome

ChromeDriver

配置

cp chromedriver /usr/local/bin/

查看版本
1
2
3
chromedriver -V
Starting ChromeDriver 2.31.488774 (7e15618d1bf16df8bf0ecf2914ed1964a387ba0b) on port 9515
Only local connections are allowed.
测试
1
2
3
4
from selenium import webdriver

browser = webdriver.Chrome()
browser.get('http://www.baidu.com/')

老男孩Python自动化开发

Python自动化开发基础

1
2
3
4
5
6
7
1.Python语言基础(基本数据类型、函数、模块、面向对象)
2.网络编程以及并发(Socket、线程进程、IO多路复用)
3.前端开发(HTML、CSS、JavaScript、jQuery、BootStrap)
4.WEB框架(MVC、MTV、ORM、自定义组件)
5.企业项目实战(Web QQ, CRM系统,CRM系统开发,金融量化分析交易系统)
6.企业项目实战视频 (45课时视频赠送)
7.算法、数据结构、设计模式(20课时视频赠送)

全部课程44周,每周1天,每天8个小时。

Python自动化开发精英班 23周

1.Python基础 3周

  1. Python简介
  2. 与其他语言对比
  3. 字符编码/注释/变量/缩进
  4. 流程控制
  5. 常用数据介绍
  6. 数据类型内置方法
  7. 字符串格式化
  8. 运算符
  9. 输入输出
  10. 三元运算
  11. collections
  12. 列表、字典、元组、集合详细使用
  13. IO操作,文件增删改查
  14. 函数介绍,函数语法,函数参数
  15. 高阶函数与函数返回值
  16. lambdb匿名函数

2.函数和常用模块 2周

  1. 装饰器 原理与使用
  2. 高阶函数
  3. 迭代器与生成器
  4. 函数式编程,函数递归
  5. 二分查找
  6. 模块介绍
  7. re 正则模块
  8. os\sys 模块
  9. subprocess 模块
  10. shutil\shelve\itertools 模块
  11. hashlib 模块
  12. logging 日志模块
  13. time\datetime\traceback模块
  14. json\pickle\xml\yaml\configparser 模块
  15. urllib\paramiko 模块

3.面向对象 2周

  1. 面向对象简介
  2. 类肯对象是什么
  3. 创建类
  4. 经典类与新式类
  5. 面向对象三大特性:封装、继承、多态
  6. 类的普通成员
  7. 字段方法属性
  8. 类的高级成员
  9. 静态字段、静态方法、静态属性
  10. 类方法
  11. MetaClass\AbstractClass
  12. 类成员修饰符
  13. 函数式编程和面向对象编程的对比
  14. 扩展:面向对象编程的本质
  15. 网络编程基础
  16. socket原理讲解
  17. 通过socket实现简单ssh

04.网络编程基础 2周

  1. Python模块socketserver使用和源码析(异步多线程)
  2. 线程、进程、协程原理析
  3. 线程相关各知识点详解
  4. Python中线程和其它语言线程的对比
  5. GIL内部机制
  6. 线程锁、事件
  7. 生产者消费者模型(消息队列)
  8. 进程的使用
  9. 进程间数据共享
  10. 进程池

05.数据库、缓存、队列 2周

  1. Python操作Redis
  2. Python操作Memcached
  3. RabbitMQ消息队列
  4. 数据库介绍
  5. MySQL数据库安装使用
  6. MySQL管理
  7. MySQL数据类型
  8. 常用MySQL命令
  9. 创建数据库
  10. 外键
  11. 增删改查表
  12. 权限
  13. 事务
  14. 索引
  15. Python操作MySQL

06.WEB开发基础 3周

  1. HTML基础
  2. CSS基础
  3. JavaScript基础
  4. 局部变量和全局变量
  5. 集合、数组和字典
  6. 函数参数
  7. 原型、面向对象
  8. 作用域
  9. dom编程
  10. jQuery介绍、jQuery选择器
  11. jQuery属性和CSS操作
  12. jQuery文档处理
  13. jQuery筛选
  14. jQuery事件托管
  15. jQuery ajax
  16. jQuery扩展方法
  17. Bootstrap使用
  18. EasyUI介绍和使用

07.Web框架学习 3周

  1. Web框架本质
  2. Socket服务器
  3. 基于反射的路由系统
  4. WSGI介绍及原理实现
  5. 开发自己的Web框架
  6. MVC和MTV
  7. 路由系统、模板
  8. 实现登录、注册、找回密码
  9. Django基础学习与使用
  10. 普通路由和动态路由
  11. 模板引擎、ORM介绍
  12. Django ORM 增删改查学习
  13. 初识自定义tag
  14. Django进阶学习与使用
  15. 初识模型绑定、初始Form表单验证
  16. Django ORM 进阶学习
  17. ModelForm、自定义Validator
  18. 项目实战:BBS论坛开发

08.企业项目实战 6周

  1. 自定义tag
  2. 模型绑定
  3. Form表单验证
  4. Django admin使用与定制
  5. XXS、CSRF、Session\Cookie
  6. 项目实战:Web QQ开发
  7. 项目实战:CRM客户管理系统开发
  8. 项目实战:爬虫开发
  9. 项目实战:金融量化交易策略分析系统

Python自动化资深架构师班大纲 共21周

01.项目实战开发基础 3周

  1. 线程、进程和协程
  2. IO多路复用原理以及应用
  3. 异步IO模块使用以及高级定制
  4. Twisted框架以及源码析
  5. MySQL基础以及优化
  6. 基于Python实现数据库连接池
  7. ORM框架SqlAlchemy
  8. Celery使用以及和Django结合
  9. 协同开发之Git全套
  10. 软件团队工作流程
  11. 敏捷开发与持续集成介绍

02.项目实战-爬虫开发 1周

  1. Requests模块
  2. BeautifulSoup模块
  3. 基于Requests实现登录:抽屉、github、知乎、博客园
  4. 开发Web微信
  5. IO性能相关模块
  6. 自定义异步非阻塞模块
  7. Scrapy框架以及源码析

03.实战项目-IT审计系统+主机管理开发 2周

  1. 用户行为审计
  2. 基于底层SSH
  3. 主机分组管理
  4. 服务器和账号的操作权限
  5. 记录堡垒所有操作日志
  6. 批量分发操作并查看结果
  7. 指定时间单次或重复执行指定的任务
  8. 查看近期用户行为报表
  9. 提供Web页面SSH操作

04.项目实战-CMDB开发 2周

  1. 设计符合企业实际需求的CMDB表结构
  2. 安全API接口开发认证
  3. 开发支持Windows和Linux平台
  4. 实现IT硬件信息的自动收集以及变更记录
  5. 对其他系统开发灵活的API
  6. 设计与开发IT资产变更流程
  7. 开发报表功能

05.实战项目-金融量化交易策略分析系统 1周

  1. 股票、期货基础知识介绍
  2. Numpy、Pandas、Scipy等模块学习
  3. 策略平台的介绍与使用
  4. 调取股票市场数据API学习
  5. 常见金融分析策略,如:双均线、羊驼策略等
  6. 编写自定制的量化交易策略
  7. 量化交易策略进行回测
  8. 通过”双均线”策略进行交易策略开发及回测

06.实战项目-分布式监控系统开发 2周

  1. 同一台主机监控多个服务
  2. 监控多种设备
  3. 批量监控主机
  4. 设定告警级别
  5. 不同服务设定不同告警级别
  6. 不同告警 发送不同用户
  7. 告警升级
  8. 告警的自动恢复
  9. 长期监控数据存储的优化
  10. 监控数据前端画图实现

07.实战项目-网站用户访问质量分析检测项目 1周

  1. 实现分析数据的前端美观展示
  2. 用户上网指标收集
  3. 不同维度用户数据的自动分析并生成报表
  4. 最慢排名
  5. 速度区间划分
  6. 实时分析访问速度及访问数据
  7. 统计分析多个网站

08.实战项目-Docker自动化管理平台开发 2周

  1. Docker实现原理介绍
  2. Docker安装使用
  3. Docker各组件介绍
  4. 通过API管理Docker镜像库、Docker
  5. container
  6. 通过Web管理Docker镜像库、Docker
  7. 实现对Docker集群的管理

09.实战项目-OpenStak私有云平台开发 2周

  1. OpenStack各组件讲解
  2. OpenStack各组件源码分析
  3. OpenStack云平台架构
  4. ceph存储
  5. OpenStack云平台使用手册
  6. OpenStack运维工具开发
  7. OpenStack源码二次开发

10.算法、数据结构与设计模式 2周

  1. 常用算法介绍
  2. 时间/空间复杂度介绍
  3. 二分查找算法
  4. 哈希算法,冒泡排序
  5. 快速排序,直接插入排序
  6. 选择排序,二叉树特点及类型介绍
  7. 堆、栈、树及其他常用数据结构学习
  8. 平衡树/红黑树,堆排序
  9. 设计模式简介
  10. 简单工厂模式,工厂方法模式
  11. 抽象工厂模式
  12. 策略模式,装饰模式
  13. 代理模式,原型模式
  14. 模板方法模式,其他设计模式

11.项目实战-Tornao Web框架学习&源码析 1周

  1. 快速上手
  2. 路由系统
  3. RequestHandler
  4. 模板,Cookie和安全Cookie
  5. 跨站伪造请求的防范
  6. ORM框架SQLAlchemy
  7. 静态文件和主动式文件缓存
  8. 本地化,非阻塞式异步请求
  9. 源码析
  10. 一个脚本引发的血案
  11. 待请求阶段,请求来了
  12. 模板语言
  13. Flask框架讲解
  14. Web.py框架讲解
  15. Bottle框架讲解

12.实战项目-机器学习+人工智能 2周

  1. 机器学习的基本概念、常见流派及几大要素介绍
  2. 介绍训练集、测试集、评价标准
  3. 介绍分类、聚类、回归、神经网络
  4. Python机器学习常用库scikit-learn介绍
  5. 实现一个简单的分类器算法
  6. 机器学习主要流程1:数据预处理
  7. 机器学习主要流程2:特征选择、模型选择
  8. 机器学习主要流程3:建立模型
  9. 机器学习主要流程4:训练模型
  10. 机器学习主要流程5:模型评估与调参
  11. 神经网络介绍
,