- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章用python自动生成日历由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
在excel日历模板的基础上,生成带有农历日期、节假日、休班等信息的日历,解决diy日历最大的技术难题.
图中日期,第一行为公历,第二行为节假日,第三行为农历,第四行是其他特别的日子,比如生日、纪念日等.
python + excel,会运行python脚本,会使用excel即可上手.
只需要修改excel的年份(在一月份表头修改),运行一次脚本 。
可制作任意年份的日历(修改年份即可) 。
可以添加其他特殊日期 。
第一步,修改日历年份及样式 。
打开calendar.xlsx文件,在一月份表头,”输入年份“位置,修改样式 。
第二步,添加自定义日期 。
calendar.xlsx文件的生日栏,添加需要标注的日期,并保存 。
第三部,运行脚本 。
bddatafetcher.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
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import
datetime
import
logging
import
time
import
requests
import
re
import
json
class
bddatafetcher(
object
):
def
__init__(
self
):
self
.url
=
'https://sp0.baidu.com/8aqdcjqpaav3otqbppnn2djv/api.php'
self
.request_session
=
requests.session()
self
.request_session.headers
=
{
"user-agent"
:
"mozilla/5.0 (macintosh; intel mac os x 10_14_4) applewebkit/537.36 (khtml, like gecko) chrome/84.0.4147.135 safari/537.36"
,
"accept"
:
"application/json, text/plain, */*"
,
"accept-encoding"
:
"gzip, deflate"
,
"accept-language"
:
"zh-cn,zh;q=0.9,en;q=0.8"
,
"connection"
:
"keep-alive"
}
def
request(
self
, year_month):
payload
=
{
'query'
: year_month,
'resource_id'
:
39043
,
't'
:
int
(
round
(time.time()
*
1000
)),
'ie'
:
'utf8'
,
'oe'
:
'utf8'
,
'cb'
:
'op_aladdin_callback'
,
'format'
:
'json'
,
'tn'
:
'wisetpl'
,
'cb'
:
'jquery110206747607329442493_1606743811595'
,
'_'
:
1606743811613
}
resp
=
self
.request_session.get(url
=
self
.url, params
=
payload)
logging.debug(
'data fetcher resp = {}'
.
format
(resp.text))
bracket_pattern
=
re.
compile
(r
'[(](.*?)[)]'
, re.s)
valid_data
=
re.findall(bracket_pattern, resp.text)
json_data
=
json.loads(valid_data[
0
])
almanac
=
json_data[
'data'
][
0
][
'almanac'
]
result
=
{}
for
day
in
almanac:
key
=
'{}-{}-{}'
.
format
(day[
'year'
], day[
'month'
],day[
'day'
])
result[key]
=
day
return
result
if
__name__
=
=
'__main__'
:
logging.basicconfig(level
=
logging.debug,
format
=
'%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s'
,
datefmt
=
'%a, %d %b %y %h:%m:%s'
)
bddatafetcher().request(
'2021年1月'
)
|
exceldatefiller.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
177
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import
logging
import
os
import
sys
from
copy
import
copy
import
openpyxl
import
pandas as pandas
import
xlrd
import
xlutils
import
yaml
from
pandas._libs.tslibs.timestamps
import
timestamp
from
bddatafetcher
import
bddatafetcher
class
config(
object
):
def
__init__(
self
, config_path):
try
:
with
open
(config_path,
"r"
, encoding
=
"utf-8"
) as yaml_file:
data
=
yaml.load(yaml_file)
self
.excel_path
=
data[
'excel_path'
]
self
.sheet_special
=
data[
'sheet_special'
]
self
.skip_row
=
data[
'date_skip_row'
]
self
.skip_col
=
data[
'date_skip_col'
]
self
.max_length
=
data[
'max_length'
]
self
.holiday_color
=
data[
'holiday_color'
]
self
.workday_color
=
data[
'workday_color'
]
logging.basicconfig(level
=
logging.debug,
format
=
'%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s'
,
datefmt
=
'%a, %d %b %y %h:%m:%s'
)
except
exception as e:
logging.error(
repr
(e))
sys.exit()
class
specialday(
object
):
def
__init__(
self
):
self
.is_lunar
=
false
self
.desc
=
''
class
exceldatefiller(
object
):
def
__init__(
self
):
self
.data_fetcher
=
bddatafetcher()
self
.target
=
os.path.splitext(config.excel_path)[
0
]
+
'_out'
+
os.path.splitext(config.excel_path)[
-
1
]
# try:
# shutil.copy(config.excel_path, self.target)
# except ioerror as e:
# print("unable to copy file. %s" % e)
# except:
# print("unexpected error:", sys.exc_info())
# self.target_workbook = openpyxl.load_workbook(self.target, data_only=true)
def
fill_date_with_openpyxl(
self
):
for
sheet
in
self
.target_workbook.worksheets:
for
column_index
in
range
(
1
, sheet.max_column):
for
row_index
in
range
(
1
, sheet.max_row):
data
=
sheet.cell(column
=
column_index, row
=
row_index)
print
(data.value)
def
read_with_xlrd(
self
):
workbook
=
xlrd.open_workbook(
self
.target)
for
sheet
in
workbook.sheets():
for
column_index
in
range
(
0
, sheet.ncols):
for
row_index
in
range
(
0
, sheet.nrows):
data
=
sheet.cell(rowx
=
row_index, colx
=
column_index)
logging.debug(
'ctype = {}, value = {}, xf_index = {}'
.
format
(data.ctype, data.value, data.xf_index))
def
write_with_openpyxl(
self
):
target_workbook
=
openpyxl.load_workbook(
self
.target)
sheet
=
target_workbook.get_sheet_by_name(
'sheet_name'
)
sheet.cell(
0
,
0
).value
=
'value'
target_workbook.save()
def
write_with_xlwt(
self
):
workbook
=
xlrd.open_workbook(
self
.target)
workbook
=
xlutils.copy(workbook)
sheet
=
workbook.get_sheet(
0
)
sheet.write(
0
,
0
,
'value'
)
workbook.save()
def
load_special_sheet(
self
):
data
=
{}
special_sheet
=
pandas.read_excel(config.excel_path, sheet_name
=
config.sheet_special, header
=
0
)
for
row_index
in
range
(special_sheet.shape[
0
]):
key
=
special_sheet.iloc[row_index,
0
]
struct_time
=
pandas.to_datetime(key.timestamp(), unit
=
's'
).timetuple()
key
=
'{}-{}'
.
format
(struct_time.tm_mon, struct_time.tm_mday)
value
=
specialday()
value.desc
=
special_sheet.iloc[row_index,
1
]
value.is_lunar
=
special_sheet.iloc[row_index,
2
]
=
=
'是'
data[key]
=
value
return
data
def
fill_date(
self
):
pandas_workbook
=
pandas.read_excel(config.excel_path, sheet_name
=
none, skiprows
=
config.skip_row, keep_default_na
=
false)
out_workbook
=
openpyxl.load_workbook(config.excel_path)
special_day
=
self
.load_special_sheet()
day_data
=
{}
for
sheet_name
in
pandas_workbook.keys():
if
not
sheet_name.endswith(
'月'
):
continue
sheet
=
pandas_workbook.get(sheet_name)
out_sheet
=
out_workbook.get_sheet_by_name(sheet_name)
nrows
=
sheet.shape[
0
]
ncols
=
sheet.shape[
1
]
for
row_index
in
range
(nrows):
for
col_index
in
range
(ncols):
data
=
sheet.iloc[row_index, col_index]
logging.debug(
'origin row = {}, col = {}, data = {}'
.
format
(row_index, col_index, data))
if
type
(data)
=
=
timestamp:
struct_time
=
pandas.to_datetime(data.timestamp(), unit
=
's'
).timetuple()
date
=
'{}-{}-{}'
.
format
(struct_time.tm_year, struct_time.tm_mon, struct_time.tm_mday)
if
not
day_data.__contains__(date):
request_data
=
self
.data_fetcher.request(year_month
=
'{}年{}月'
.
format
(struct_time.tm_year, struct_time.tm_mon))
day_data.update(request_data)
temp_row
=
row_index
+
2
+
config.skip_row
temp_col
=
col_index
+
1
# weekend color
if
day_data[date][
'cnday'
]
=
=
'六'
or
day_data[date][
'cnday'
]
=
=
'日'
:
holiday_font
=
copy(out_sheet.cell(temp_row, temp_col).font)
holiday_font.color
=
config.holiday_color
out_sheet.cell(temp_row, temp_col).font
=
holiday_font
# holiday color
if
day_data[date].__contains__(
'status'
):
if
day_data[date][
'status'
]
=
=
'1'
:
# 休假
holiday_font
=
copy(out_sheet.cell(temp_row, temp_col).font)
holiday_font.color
=
config.holiday_color
out_sheet.cell(temp_row, temp_col).font
=
holiday_font
if
day_data[date][
'status'
]
=
=
'2'
:
#班
workday_font
=
copy(out_sheet.cell(temp_row, temp_col).font)
workday_font.color
=
config.workday_color
out_sheet.cell(temp_row, temp_col).font
=
workday_font
lunar_date
=
day_data[date][
'ldate'
]
if
lunar_date
=
=
'初一'
:
lunar_date
=
'{}月'
.
format
(day_data[date][
'lmonth'
])
# logging.debug('date = {}, value = {}'.format(str(date), lunar_date))
temp_content
=
''
if
day_data[date].__contains__(
'value'
):
temp_content
+
=
day_data[date][
'value'
]
if
len
(temp_content) > config.max_length:
temp_content
=
temp_content[:config.max_length]
temp_content
+
=
'\n'
temp_content
+
=
lunar_date
# spacial day
month_day
=
day_data[date][
'month'
]
+
'-'
+
day_data[date][
'day'
]
if
special_day.__contains__(month_day):
temp_special_day
=
special_day.get(month_day)
if
not
temp_special_day.is_lunar:
temp_content
+
=
'\n'
temp_content
+
=
temp_special_day.desc
lunar_month_day
=
day_data[date][
'lunarmonth'
]
+
'-'
+
day_data[date][
'lunardate'
]
if
special_day.__contains__(lunar_month_day):
temp_special_day
=
special_day.get(lunar_month_day)
if
temp_special_day.is_lunar:
temp_content
+
=
'\n'
temp_content
+
=
temp_special_day.desc
temp_row
=
row_index
+
3
+
config.skip_row
temp_col
=
col_index
+
1
out_sheet.cell(temp_row, temp_col).value
=
temp_content
out_workbook.save(filename
=
self
.target)
out_workbook.close()
if
__name__
=
=
'__main__'
:
config
=
config(config_path
=
'config.yaml'
)
date_filler
=
exceldatefiller()
date_filler.fill_date()
|
https://github.com/yongjiliu/diycalendar 。
calendar_out.xlsx为处理好的日历 。
以上就是用python自动生成日历的详细内容,更多关于python 生成日历的资料请关注我其它相关文章! 。
原文链接:https://github.com/yongjiliu/diycalendar 。
最后此篇关于用python自动生成日历的文章就讲到这里了,如果你想了解更多关于用python自动生成日历的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!