-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstr_snippets.py
129 lines (115 loc) · 3.58 KB
/
str_snippets.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
# -*- coding: utf-8 -*-
from datetime import datetime
from os.path import splitext
def unistr(ori_str, ignore=True, alt_str=False):
'''
Get a string and return an unicode string
'''
if isinstance(ori_str, unicode):
return ori_str
for encoding in ['utf-8', 'GB18030', 'BIG5']:
try:
return ori_str.decode(encoding)
except:
pass
if ignore:
return ori_str.decode('ascii', 'ignore')
else:
return alt_str
def filesize(size):
'''
Get an int and return a pretty string like '12 Bytes', '32 KB'
'''
for x in ['Bytes', 'KB', 'MB', 'GB']:
if size < 1024.0 and size > -1024.0:
return "%3.1f %s" % (size, x)
size /= 1024.0
return "%3.1f %s" % (size, 'TB')
def filetype(file_name):
return splitext(file_name)[1][1:].lower()
def pretty_date(time=False):
'''
Get a datetime object or a int() Epoch timestamp and return a
pretty string like 'an hour ago', 'Yesterday', '3 months ago',
'just now', etc
'''
now = datetime.now()
if type(time) is int:
diff = now - datetime.fromtimestamp(time)
elif isinstance(time, datetime):
diff = now - time
elif not time:
diff = now - now
second_diff = diff.seconds
day_diff = diff.days
if day_diff < 0:
return ''
if day_diff == 0:
if second_diff < 60:
return 'just now'
if second_diff < 120:
return 'a minute ago'
if second_diff < 3600:
return str( second_diff / 60 ) + ' minutes ago'
if second_diff < 7200:
return 'an hour ago'
if second_diff < 86400:
return str( second_diff / 3600 ) + ' hours ago'
if day_diff == 1:
return 'Yesterday'
if day_diff < 7:
return str(day_diff) + u' days ago'
if day_diff < 31:
return str(day_diff/7) + u' weeks ago'
if day_diff < 365:
return str(day_diff/30) + u' months ago'
return str(day_diff/365) + u' years ago'
def age(birthday=False):
'''
Get a datetime object or a int() Epoch timestamp and return a
pretty string like '1 hour', '1 day', '3 months',
'just now', etc
'''
now = datetime.now()
if type(birthday) is int:
diff = now - datetime.fromtimestamp(birthday)
elif isinstance(birthday, datetime):
diff = now - birthday
elif not birthday:
diff = now - now
second_diff = diff.seconds
day_diff = diff.days
if day_diff < 0:
return ''
if day_diff == 0:
if second_diff < 60:
return 'just now'
if second_diff < 120:
return '1 minute'
if second_diff < 3600:
return str( second_diff / 60 ) + ' minutes'
if second_diff < 7200:
return '1 hour'
if second_diff < 86400:
return str( second_diff / 3600 ) + ' hours'
if day_diff == 1:
return '1 day'
if day_diff < 7:
return str(day_diff) + ' days'
if day_diff < 31:
return str(day_diff/7) + ' weeks'
if day_diff < 365:
return str(day_diff/30) + u' months'
return str(day_diff/365) + u' years'
def nl2br(s, max_line_count=None):
lines = s.splitlines()
if max_line_count:
lines = lines[0:max_line_count]
return '<br>'.join(lines)
if __name__ == '__main__':
print unistr(u'1去23里,烟村45家'.encode('gb2312'))
print filesize(1000 * 1000)
print filetype('hello.py')
print pretty_date(datetime(2000, 1, 1))
print age(datetime(2000, 1, 1))
print nl2br(u'亭台67座\n8910枝花\n', 2)