-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython_resume.py
176 lines (157 loc) · 5.98 KB
/
python_resume.py
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# -*- coding:utf-8 -*-
__auth__ = 'christian'
import random
import re
def color(messages):
color = '\x1B[%d;%dm' % (1,random.randint(30,37))
return '%s %s\x1B[0m' % (color,messages)
def len_zh(data):
temp = re.findall('[^a-zA-Z0-9. ]+', data)
count = 0
for i in temp:
count += len(i)
return(count)
def colorprint(mes, flag=True):
def _deco(func):
def wrapper(args):
res = func(args)
print color(mes + ':\n')
if flag:
for k1, v1 in res.items():
zh = len_zh(k1.decode('utf-8'))
if not isinstance(v1, dict):
print '{0}: {1}'.format(k1.ljust(20+zh), v1)
else:
print '{0}:'.format(k1.ljust(20+zh))
for k2, v2 in v1.items():
zh = len_zh(k2.decode('utf-8'))
print ' {0}: {1}'.format(k2.ljust(16+zh), v2)
else:
for i in res:
if not isinstance(i[1], dict):
print i
else:
for k, v in i[1].items():
zh = len_zh(k.decode('utf-8'))
print '{0}[{1}]: {2}'.format(k.ljust(17+zh), i[0], v)
print '\n'
return res
return wrapper
return _deco
class Resume(object):
def str(self):
return color('董伟明的python简历'.center(400))
@property
@colorprint('个人信息')
def personal_information(self):
return {
'Name' : '董伟明',
'Gender' : 'Male',
'Born' : [1985, 8, 9],
'Education' : {
'School Name' : '保定科技职业学院',
'Major' : '烹饪工艺与营养',
'Degree' : 'Three-year college',
'Graduation' : 2009
},
'QQ' : '6196622X',
'Tel' : '13552651XXX',
'Email' : '[email protected]',
'Target Positions' : re.compile(
"'Python Developer'|DevOps",re.I|re.M).pattern
}
@property
@colorprint('个人特点')
def characteristics(self):
return {
'心里承受能力强': '从非计算机专业-Linux运维-Python开发',
'热衷和喜爱': '正是因为喜欢IT, 我才会放弃大学所学专业',
'自学能力强': '没有大学的计算机基础, 都是自学',
'毅力和耐性': '从不放弃一个解决不了的难题,看过的计算机专业技术多于700页的书籍>30本', # noqa
'is_geek' : True
}
@property
@colorprint('个人能力')
def skills(self):
return {
'Language' : {
'熟悉' : ['Python', 'Ruby', 'Bash'],
'了解' : ['Haskell', 'Lisp', 'Erlang']},
'OS' : ['Gentoo', 'Debian', 'Centos/Rhel', 'Opensuse'],
'Tool' : ['Vim', 'Mercurial', 'Git'],
'Databaseandtools' : ['MySQL',
'PostgreSQL', 'MongoDB', 'Redis', 'Memcached', 'SQLAlchemy'],
'WebFramework' : {
'熟悉' : ['Tornado', 'Django', 'Gae'],
'了解' : ['Flask']
},
'OtherFramework' : ['Twisted', 'gevent',
'stackless', 'scrapy', 'mechanize'],
'GUI' : 'pyqt',
'Network' : 'Cisco Certified Security Professional',
'Other' : '给Gentoo和Centos提交过bug'
}
@property
@colorprint('工作经验', False)
def work_experience(self):
return enumerate([
{
'Time period' : '2011.10-2012.08',
'Company Name' : 'XX(北京)科技有限公司',
'Position' : '运维开发工程师'
},
{
'Time period' : '2009.10-2011.10',
'Company Name' : 'XX(北京)科技有限公司',
'Position' : '运维工程师'
},
])
@property
@colorprint('项目经验',False)
def projectexperience(self):
return enumerate([
{
'Project' : 'kvm远程管理系统',
'Description' : ('前台(django)接手至其它同事并完成维护,'
'后台独立完成,用来创建,修改,删除kvm,查看状态信息等')
},
{
'Project' : 'postfix群发邮件系统',
'Description' : ('前台(tornado),为其它部门提供发送邮件的web端, '
'并作为数据收集服务端,前后台独立完成')
},
{
'Project' : 'windows个人安全终端系统',
'Description' : ('前后台和接收数据的socket服务器独立完成,'
'客户端图形编程使用qt')
},
{
'Project' : '地推IDC质量测试系统',
'Description': ('还在代码实现中,前台flask, 数据接收服务准备'
'使用twisted,客户端为windows进程')
}
])
@property
@colorprint('@Where', False)
def findme(self):
return enumerate([
{
'Link' : 'http://www.dongwm.com',
'Description' : '个人技术博客'},
{
'Link' : 'http://www.zhihu.com/people/dongweiming',
'Description' : '知乎'},
{
'Link' : 'http://youhouer.appspot.com',
'Description' : '基于Google App Engine的前端网站'
}
])
def show(self):
prolist = [i for i in dir(self) if not i.startswith('') \
and not i.startswith('personal')]
self.personal_information
for pro in prolist:
getattr(self, pro)
if __name__ == 'main':
resume = Resume()
resume.show()