Skip to content

Commit dadc2d6

Browse files
authored
Remove HTML tags and update Python resources
1 parent 183d4cb commit dadc2d6

1 file changed

Lines changed: 13 additions & 173 deletions

File tree

content/python.md

Lines changed: 13 additions & 173 deletions
Original file line numberDiff line numberDiff line change
@@ -1,150 +1,24 @@
1-
<div id="header">
2-
3-
</div>
4-
5-
<div id="content">
6-
7-
<div class="literalblock">
8-
9-
<div class="content">
10-
11-
http://metaleks.net/programming/the-evolution-of-a-python-programmer[http://metaleks.net/programming/the-evolution-of-a-python-programmer]
12-
13-
</div>
14-
15-
</div>
16-
17-
<div class="paragraph">
18-
19-
[Python 제너레이터+반복자의
20-
마법](http://blog.dahlia.pe.kr/articles/2009/09/15/python-%EC%A0%9C%EB%84%88%EB%A0%88%EC%9D%B4%ED%84%B0%EB%B0%98%EB%B3%B5%EC%9E%90%EC%9D%98-%EB%A7%88%EB%B2%95)
21-
22-
</div>
23-
24-
<div class="paragraph">
25-
26-
[Python으로 간결하고 테스트 가능하며 수준 높은 코드
27-
쓰기](http://www.ibm.com/developerworks/kr/aix/library/au-cleancode/index.html)
28-
29-
</div>
30-
31-
<div class="paragraph">
32-
33-
<http://ipython.org/>
34-
35-
</div>
36-
37-
<div class="sect1">
38-
39-
## 입문서
40-
41-
<div class="sectionbody">
42-
43-
<div class="paragraph">
44-
45-
<http://learnpythonthehardway.org/book/>
46-
href="http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-a-gentle-introduction-to-programming-using-python-january-iap-2008/"
47-
class="bare">http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-a-gentle-introduction-to-programming-using-python-january-iap-2008/</a>\]<http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program>
48-
49-
</div>
50-
51-
</div>
52-
53-
</div>
54-
55-
<div class="sect1">
1+
* http://metaleks.net/programming/the-evolution-of-a-python-programmer
2+
* [Python 제너레이터+반복자의 마법](http://blog.dahlia.pe.kr/articles/2009/09/15/python-%EC%A0%9C%EB%84%88%EB%A0%88%EC%9D%B4%ED%84%B0%EB%B0%98%EB%B3%B5%EC%9E%90%EC%9D%98-%EB%A7%88%EB%B2%95)
3+
* [Python으로 간결하고 테스트 가능하며 수준 높은 코드 쓰기](http://www.ibm.com/developerworks/kr/aix/library/au-cleancode/index.html)
564

575
## 프레임웍
58-
59-
<div class="sectionbody">
60-
61-
<div class="paragraph">
62-
63-
<http://www.pylonsproject.org/>http://flask.pocoo.org/\[<a href="http://flask.pocoo.org/"
64-
class="bare">http://flask.pocoo.org/</a>\]
65-
66-
</div>
67-
68-
<div class="paragraph">
69-
70-
Learn Django: Create a Wiki in 20 minutes
71-
<http://showmedo.com/videos/video?name=1100000&fromSeriesID=110>
72-
73-
</div>
74-
75-
<div class="sect3">
6+
* https://www.pylonsproject.org/
7+
* http://flask.pocoo.org/
768

779
#### Evenlet
78-
79-
<div class="paragraph">
80-
81-
<http://codescience.wordpress.com/2011/09/05/non-blocking-io-node-js-and-pythons-eventlet/>
82-
83-
</div>
84-
85-
<div class="paragraph">
86-
87-
<http://vodpod.com/watch/4072135-pycon-2010eventlet-asynchronous-io-with-a-synchronous-interface-141>
88-
89-
</div>
90-
91-
</div>
92-
93-
</div>
94-
95-
</div>
96-
97-
<div class="sect1">
10+
* http://codescience.wordpress.com/2011/09/05/non-blocking-io-node-js-and-pythons-eventlet/
11+
* http://vodpod.com/watch/4072135-pycon-2010eventlet-asynchronous-io-with-a-synchronous-interface-141
9812

9913
## 테스트
100-
101-
<div class="sectionbody">
102-
103-
<div class="paragraph">
104-
105-
<http://docs.python.org/library/doctest.html>
106-
<http://docs.python.org/library/unittest.html>
107-
108-
</div>
109-
110-
</div>
111-
112-
</div>
113-
114-
<div class="sect1">
14+
* http://docs.python.org/library/doctest.html
15+
* http://docs.python.org/library/unittest.html
11516

11617
## 예제
11718

118-
<div class="sectionbody">
119-
120-
<div class="paragraph">
121-
122-
조각 코드 :
123-
<http://coreapython.hosting.paran.com/howto/sebsauvage_net-%20Snyppets%20-%20Python%20snippets.htm>
124-
125-
</div>
126-
127-
<div class="sect2">
128-
129-
### 날짜 변환
130-
131-
<div class="paragraph">
132-
133-
[http://wiki.dgoon.net/doku.php?id=python:time-\_string](http://wiki.dgoon.net/doku.php?id=python:time_-%3Cem%3Estring)
134-
135-
</div>
136-
137-
<div class="paragraph">
138-
139-
파일 읽기
19+
### 파일 읽기
14020

141-
</div>
142-
143-
<div class="listingblock">
144-
145-
<div class="content">
146-
147-
``` highlight
21+
```python
14822
def read(file_name):
14923

15024
file_content = open(file_name)
@@ -162,41 +36,7 @@ def read(file_name):
16236
file_content.close();
16337
```
16438

165-
</div>
166-
167-
</div>
168-
169-
</div>
170-
171-
<div class="sect2">
172-
17339
### Proxy 서버
17440

175-
<div class="paragraph">
176-
177-
<a
178-
href="http://code.activestate.com/recipes/483732-asynchronous-port-forwarding/"
179-
class="bare">http://code.activestate.com/recipes/483732-asynchronous-port-forwarding/</a>
180-
sudo python proxy.py -l 127.0.0.1 -p 80 -r 127.0.0.1 -P 8080
181-
182-
</div>
183-
184-
</div>
185-
186-
</div>
187-
188-
</div>
189-
190-
</div>
191-
192-
<div id="footer">
193-
194-
<div id="footer-text">
195-
196-
Last updated 2026-02-28 04:33:58 +0900
197-
198-
</div>
199-
200-
</div>
201-
202-
## Related
41+
* http://code.activestate.com/recipes/483732-asynchronous-port-forwarding/
42+
* `sudo python proxy.py -l 127.0.0.1 -p 80 -r 127.0.0.1 -P 8080`

0 commit comments

Comments
 (0)