-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
990 lines (705 loc) · 30.2 KB
/
index.html
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>首页 | lsq 的博客</title>
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="author" content="lsq" />
<meta name="description" content="lsq学习记录~" />
<meta name="generator" content="Hugo 0.115.0">
<link rel="canonical" href="https://lsq.github.io/" />
<meta property="og:title" content="lsq 的博客" />
<meta property="og:description" content="lsq学习记录~" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lsq.github.io/" /><meta property="og:image" content="https://lsq.github.io/me/background.jpg"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://lsq.github.io/me/background.jpg"/>
<meta name="twitter:title" content="lsq 的博客"/>
<meta name="twitter:description" content="lsq学习记录~"/>
<link rel="stylesheet" href="/css/semantic.min.css" />
<link rel="stylesheet" href="/css/icomoon.css" />
<link rel="stylesheet" href="/css/OverlayScrollbars.min.css" />
<link rel="stylesheet" href="/css/github-markdown.css" />
<link rel="stylesheet" href="/css/site.css" />
<style>
a:not(.ui.button):hover {
text-decoration: underline;
}
a:not(.ui.button) {
color: seagreen !important;
}
.inverted a:not(.ui.button),
.inverted a:not(.ui.button):hover {
color: darkseagreen !important;
}
body.default {
background-color: #fff;
background-image: url(/me/background.jpg);
}
body.dark {
background-image: url(/me/background.jpg);
}
</style>
<link rel="stylesheet" href="/css/custom.css" />
</head>
<body class="default">
<nav class="ui secondary menu dream-menu">
<div class="item">
<i class="large link bullseye icon dream-flip-toggle" title="翻转!"></i>
</div>
<div class="item">
<i class="large link home icon" title="首页" onclick="window.location.href = 'https:\/\/lsq.github.io'"></i>
</div>
<div class="item">
<i class="large link icon theme-switch" onclick="themeSwitch()"></i>
</div>
<div class="item">
<i class="large link search icon" onclick="toggleSearch()"></i>
</div>
</nav>
<div class="flip-container">
<div class="flipper">
<section class="front">
<div class="dream-max-width">
<header class="ui basic very padded segment dream-header">
<div class="ui small circular image">
<img src="/me/pk.jpg" alt="avatar" />
</div>
<div class="content">
<h1 class="ui medium header">lsq的博客<div class="sub header">世界经济史是一部基于假象和谎言的连续剧</div>
</h1>
<article class="ui horizontal list">
<a class="item" href="/posts">
<i class="archive icon" title="归档"></i>
</a>
<a class="item" href="/categories">
<i class="th list icon" title="所有分类"></i>
</a>
<a class="item" href="/tags">
<i class="tags icon" title="所有标签"></i>
</a>
</article>
<article class="dream-tags">
<a class="ui label" href="/tags/bash/" title="bash">
bash
</a>
<a class="ui label" href="/tags/bos/" title="BOS">
BOS
</a>
<a class="ui label" href="/tags/design-patterns/" title="design-patterns">
design-patterns
</a>
<a class="ui label" href="/tags/development/" title="development">
development
</a>
<a class="ui label" href="/tags/emf/" title="emf">
emf
</a>
<a class="ui label" href="/tags/enumitem/" title="enumitem">
enumitem
</a>
<a class="ui label" href="/tags/git/" title="git">
git
</a>
<a class="ui label" href="/tags/go/" title="go">
go
</a>
<a class="ui label" href="/tags/golang/" title="golang">
golang
</a>
<a class="ui label" href="/tags/hugo/" title="hugo">
hugo
</a>
<a class="ui label" href="/tags/iconv/" title="iconv">
iconv
</a>
<a class="ui label" href="/tags/images/" title="images">
images
</a>
<a class="ui label" href="/tags/js/" title="“js"">
“js"
</a>
<a class="ui label" href="/tags/latex/" title="LaTex">
LaTex
</a>
<a class="ui label" href="/tags/notes/" title="notes">
notes
</a>
<a class="ui label" href="/tags/pdf/" title="pdf">
pdf
</a>
<a class="ui label" href="/tags/png/" title="png">
png
</a>
<a class="ui label" href="/tags/power-query/" title="power query">
power query
</a>
<a class="ui label" href="/tags/printf/" title="printf">
printf
</a>
<a class="ui label" href="/tags/python/" title="Python">
Python
</a>
<a class="ui label" href="/tags/ruby/" title="ruby">
ruby
</a>
<a class="ui label" href="/tags/sed/" title="sed">
sed
</a>
<a class="ui label" href="/tags/spider/" title="spider">
spider
</a>
<a class="ui label" href="/tags/templates/" title="templates">
templates
</a>
<a class="ui label" href="/tags/tex/" title="Tex">
Tex
</a>
<a class="ui label" href="/tags/themes/" title="themes">
themes
</a>
<a class="ui label" href="/tags/vba/" title="vba">
vba
</a>
<a class="ui label" href="/tags/vim/" title="vim">
vim
</a>
<a class="ui label" href="/tags/xxd/" title="xxd">
xxd
</a>
<a class="ui label" href="/tags/%E4%BA%BA%E7%89%A9/" title="人物">
人物
</a>
<a class="ui label" href="/tags/%E5%85%83%E7%BC%96%E7%A8%8B/" title="元编程">
元编程
</a>
<a class="ui label" href="/tags/%E6%B3%9B%E5%9E%8B%E7%BC%96%E7%A8%8B/" title="泛型编程">
泛型编程
</a>
<a class="ui label" href="/tags/%E8%B4%A2%E5%8A%A1/" title="财务">
财务
</a>
<a class="ui label" href="/tags/%E9%87%91%E8%9D%B6%E4%BA%91%E6%98%9F%E7%A9%BA/" title="金蝶云星空">
金蝶云星空
</a>
</article>
</div>
</header>
<div class="ui relaxed grid dream-grid">
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/creating-a-new-theme/">
<img src="http://heijing.chuangzaoshi.com/wp-content/uploads/2017/07/6.png" alt="Creating a New Theme" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/creating-a-new-theme/">Creating a New Theme</a>
</h2>
<div class="meta">
<p class="date">星期日,九月 28 日,2014 年</p>
</div>
<div class="description">
Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme.
We’ll start with creating a new site with a very basic template.
</div>
</div>
<div class="extra content">
<div class="author">@ Michael Henderson</div>
<div class="reading-time">
<i class="clock icon"></i>34 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/migrate-from-jekyll/">
<img src="http://heijing.chuangzaoshi.com/wp-content/uploads/2017/07/9.png" alt="Migrate to Hugo from Jekyll" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/migrate-from-jekyll/">Migrate to Hugo from Jekyll</a>
</h2>
<div class="meta">
<p class="date">星期一,三月 10 日,2014 年</p>
</div>
<div class="description">
Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like
▾ <root>/ ▾ images/ logo.png should become
▾ <root>/ ▾ static/ ▾ images/ logo.png Additionally, you’ll want any files that should reside at the root (such as CNAME) to be moved to static.
</div>
</div>
<div class="extra content">
<div class="author">@ lsq</div>
<div class="reading-time">
<i class="clock icon"></i>4 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E4%BA%8C%E5%BC%80%E6%A1%88%E4%BE%8B.%E8%A1%A8%E5%8D%95%E6%8F%92%E4%BB%B6.%E7%BB%88%E6%AD%A2%E5%B7%A5%E4%BD%9C%E6%B5%81/">
<img src="/images/python_get_objects.jpg" alt="Python插件---表单插件.终止工作流" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E4%BA%8C%E5%BC%80%E6%A1%88%E4%BE%8B.%E8%A1%A8%E5%8D%95%E6%8F%92%E4%BB%B6.%E7%BB%88%E6%AD%A2%E5%B7%A5%E4%BD%9C%E6%B5%81/">Python插件---表单插件.终止工作流</a>
</h2>
<div class="meta">
<p class="date">星期三,三月 29 日,2023 年</p>
</div>
<div class="description">
二开案例.表单插件.终止工作流 C#代码 【应用场景】通过插件的方式,对已启动流程的单据,执行终止流程操作(仅终止流程,不执行反审核操作)。 【案
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>4 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E4%BA%8C%E5%BC%80%E6%A1%88%E4%BE%8B.%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6.%E8%AF%BB%E5%86%99%E7%94%A8%E6%88%B7%E5%8F%82%E6%95%B0/">
<img src="/images/python_get_objects.jpg" alt="Python插件---列表插件.读写用户参数" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E4%BA%8C%E5%BC%80%E6%A1%88%E4%BE%8B.%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6.%E8%AF%BB%E5%86%99%E7%94%A8%E6%88%B7%E5%8F%82%E6%95%B0/">Python插件---列表插件.读写用户参数</a>
</h2>
<div class="meta">
<p class="date">星期三,三月 29 日,2023 年</p>
</div>
<div class="description">
二开案例.列表插件.读写用户参数 C#代码 【应用场景】使用列表插件读写用户参数。 【案例演示】采购订单,列表界面,在列表插件中读写用户参数。 原文
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>3 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E4%BA%8C%E5%BC%80%E6%A1%88%E4%BE%8B.%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6.%E9%9A%90%E8%97%8F%E5%88%97/">
<img src="/images/python_get_objects.jpg" alt="Python插件---列表插件.隐藏列" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E4%BA%8C%E5%BC%80%E6%A1%88%E4%BE%8B.%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6.%E9%9A%90%E8%97%8F%E5%88%97/">Python插件---列表插件.隐藏列</a>
</h2>
<div class="meta">
<p class="date">星期三,三月 29 日,2023 年</p>
</div>
<div class="description">
二开案例.列表插件.隐藏列 C#代码 【应用场景】使用列表插件对列表的列是否显示隐藏进行干预。 注意:通过此方案隐藏列是针对所有过滤方案生效。 【案
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>3 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/%E7%94%9F%E4%BA%A7%E8%AE%A2%E5%8D%95.%E5%BC%BA%E5%88%B6%E7%BB%93%E6%A1%88%E5%8E%9F%E5%9B%A0/">
<img src="/images/python_get_objects.jpg" alt="Python插件---生产订单手工结案原因" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/%E7%94%9F%E4%BA%A7%E8%AE%A2%E5%8D%95.%E5%BC%BA%E5%88%B6%E7%BB%93%E6%A1%88%E5%8E%9F%E5%9B%A0/">Python插件---生产订单手工结案原因</a>
</h2>
<div class="meta">
<p class="date">星期三,三月 29 日,2023 年</p>
</div>
<div class="description">
表单插件 #引入clr运行库 import clr #添加对cloud插件开发的常用组件的引用 clr.AddReference('System') clr.AddReference('System.Data') clr.AddReference('Kingdee.BOS') clr.AddReference('Kingdee.BOS.DataEntity') clr.AddReference('Kingdee.BOS.Core') clr.AddReference('Kingdee.BOS.App') clr.AddReference('Kingdee.BOS.App.Core') clr.AddReference('Kingdee.BOS.ServiceHelper') #导入cloud基础库中的常用实体对象(分命名空间导
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>4 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E6%8F%92%E4%BB%B6%E6%8A%A5%E9%94%99%E5%B8%B8%E8%A7%81%E5%8E%9F%E5%9B%A0/">
<img src="/images/python_get_objects.jpg" alt="Python插件常见报错原因" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E6%8F%92%E4%BB%B6%E6%8A%A5%E9%94%99%E5%B8%B8%E8%A7%81%E5%8E%9F%E5%9B%A0/">Python插件常见报错原因</a>
</h2>
<div class="meta">
<p class="date">星期一,十二月 12 日,2022 年</p>
</div>
<div class="description">
Python表单插件报错 常用引用 import clr clr.AddReference('Kingdee.BOS.App') clr.AddReference('Kingdee.BOS.DataEntity') clr.AddReference('Kingdee.BOS.Core') clr.AddReference('Kingdee.BOS.ServiceHelper') clr.AddReference('Kingdee.BOS.Contracts') clr.AddReference('Kingdee.BOS') clr.AddReference('System.Data') clr.AddReference('System') clr.AddReference("System.Core") clr.AddReference("Kingdee.BOS") clr.AddReference("Kingdee.BOS.Log") clr.AddReference('Newtonsoft.Json') from System import * from System.Data import * from System.Text import * from System.Linq import * from System.Collections import * from System.Collections.Generic import * from Kingdee.BOS.JSON import * from Kingdee.BOS.Core import * from Kingdee.BOS.Core.Const import * from Kingdee.BOS.Core.Bill import *
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>2 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6%E6%89%B9%E9%87%8F%E4%BF%AE%E6%94%B9%E5%8D%95%E6%8D%AE%E5%AD%97%E6%AE%B5-%E8%BF%9B%E9%98%B6%E7%89%88/">
<img src="/images/python_get_objects.jpg" alt="列表插件批量修改单据字段" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6%E6%89%B9%E9%87%8F%E4%BF%AE%E6%94%B9%E5%8D%95%E6%8D%AE%E5%AD%97%E6%AE%B5-%E8%BF%9B%E9%98%B6%E7%89%88/">列表插件批量修改单据字段</a>
</h2>
<div class="meta">
<p class="date">星期三,十一月 23 日,2022 年</p>
</div>
<div class="description">
前面分享了:**Python实现单据批改(单据头字段),**有小伙伴问我:想批改明细字段怎么办呢? 我这里分享一下用Python列表插件如何批
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>4 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E5%8D%95%E6%8D%AE%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6/">
<img src="/images/pexels-jhovani-morales-12320052.jpg" alt="单据列表插件示例" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E5%8D%95%E6%8D%AE%E5%88%97%E8%A1%A8%E6%8F%92%E4%BB%B6/">单据列表插件示例</a>
</h2>
<div class="meta">
<p class="date">星期五,八月 5 日,2022 年</p>
</div>
<div class="description">
往期回顾: 【Python插件入门】第1篇:****Python插件入门讲解 【Python插件入门】第2篇:****基本开发过程介绍 【Pyth
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />CQ周玉立</div>
<div class="reading-time">
<i class="clock icon"></i>22 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui attached segment card dream-card">
<a class="image" href="https://lsq.github.io/posts/python%E6%8F%92%E4%BB%B6%E6%95%B0%E6%8D%AE%E6%93%8D%E4%BD%9C/">
<img src="/images/python_get_objects.jpg" alt="Python数据包操作" />
</a>
<div class="content">
<h2 class="ui medium header">
<a href="/posts/python%E6%8F%92%E4%BB%B6%E6%95%B0%E6%8D%AE%E6%93%8D%E4%BD%9C/">Python数据包操作</a>
</h2>
<div class="meta">
<p class="date">星期二,七月 26 日,2022 年</p>
</div>
<div class="description">
上一篇:第2篇:基本开发过程介绍 大家好,今天我们来讲一讲如何在插件中如何进行数据操作,实现一个开发功能,无非是对数据进行各种逻辑处理,那么我
</div>
</div>
<div class="extra content">
<div class="author"><img class="ui avatar image" src="/me/pk.jpg" alt="avatar" />lsq</div>
<div class="reading-time">
<i class="clock icon"></i>19 分钟阅读</div>
</div>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer four wide large screen four wide widescreen column dream-column">
<article class="ui center aligned attached segment card dream-card">
<div class="content">
<div class="ui medium header">
<a href="/page/2/" title="下一页">
下一页
</a>
</div>
</div>
</article>
</div>
</div>
<footer class="ui basic center aligned segment" style="background-color: transparent;">
<p>© 2011 - 2023 lsq 的博客</p>
<p>Powered by <a href="https://gohugo.io/" target="_blank">Hugo</a> with theme <a href="https://github.com/g1eny0ung/hugo-theme-dream" target="_blank">Dream</a>.</p>
</footer>
</div>
</section>
<section class="back">
<div class="dream-max-width">
<header class="ui basic very padded segment dream-header">
<div class="ui small circular image">
<img src="/me/pk.jpg" alt="avatar" />
</div>
<div class="content">
<h1 class="ui medium header">lsq的博客<div class="sub header">世界经济史是一部基于假象和谎言的连续剧</div>
</h1>
<article class="ui horizontal list">
<a class="item" href="/posts">
<i class="archive icon" title="归档"></i>
</a>
<a class="item" href="/categories">
<i class="th list icon" title="所有分类"></i>
</a>
<a class="item" href="/tags">
<i class="tags icon" title="所有标签"></i>
</a>
</article>
<article class="dream-tags">
<a class="ui label" href="/tags/bash/" title="bash">
bash
</a>
<a class="ui label" href="/tags/bos/" title="BOS">
BOS
</a>
<a class="ui label" href="/tags/design-patterns/" title="design-patterns">
design-patterns
</a>
<a class="ui label" href="/tags/development/" title="development">
development
</a>
<a class="ui label" href="/tags/emf/" title="emf">
emf
</a>
<a class="ui label" href="/tags/enumitem/" title="enumitem">
enumitem
</a>
<a class="ui label" href="/tags/git/" title="git">
git
</a>
<a class="ui label" href="/tags/go/" title="go">
go
</a>
<a class="ui label" href="/tags/golang/" title="golang">
golang
</a>
<a class="ui label" href="/tags/hugo/" title="hugo">
hugo
</a>
<a class="ui label" href="/tags/iconv/" title="iconv">
iconv
</a>
<a class="ui label" href="/tags/images/" title="images">
images
</a>
<a class="ui label" href="/tags/js/" title="“js"">
“js"
</a>
<a class="ui label" href="/tags/latex/" title="LaTex">
LaTex
</a>
<a class="ui label" href="/tags/notes/" title="notes">
notes
</a>
<a class="ui label" href="/tags/pdf/" title="pdf">
pdf
</a>
<a class="ui label" href="/tags/png/" title="png">
png
</a>
<a class="ui label" href="/tags/power-query/" title="power query">
power query
</a>
<a class="ui label" href="/tags/printf/" title="printf">
printf
</a>
<a class="ui label" href="/tags/python/" title="Python">
Python
</a>
<a class="ui label" href="/tags/ruby/" title="ruby">
ruby
</a>
<a class="ui label" href="/tags/sed/" title="sed">
sed
</a>
<a class="ui label" href="/tags/spider/" title="spider">
spider
</a>
<a class="ui label" href="/tags/templates/" title="templates">
templates
</a>
<a class="ui label" href="/tags/tex/" title="Tex">
Tex
</a>
<a class="ui label" href="/tags/themes/" title="themes">
themes
</a>
<a class="ui label" href="/tags/vba/" title="vba">
vba
</a>
<a class="ui label" href="/tags/vim/" title="vim">
vim
</a>
<a class="ui label" href="/tags/xxd/" title="xxd">
xxd
</a>
<a class="ui label" href="/tags/%E4%BA%BA%E7%89%A9/" title="人物">
人物
</a>
<a class="ui label" href="/tags/%E5%85%83%E7%BC%96%E7%A8%8B/" title="元编程">
元编程
</a>
<a class="ui label" href="/tags/%E6%B3%9B%E5%9E%8B%E7%BC%96%E7%A8%8B/" title="泛型编程">
泛型编程
</a>
<a class="ui label" href="/tags/%E8%B4%A2%E5%8A%A1/" title="财务">
财务
</a>
<a class="ui label" href="/tags/%E9%87%91%E8%9D%B6%E4%BA%91%E6%98%9F%E7%A9%BA/" title="金蝶云星空">
金蝶云星空
</a>
</article>
</div>
</header>
<div class="ui relaxed grid dream-grid dream-back">
<div class="sixteen wide mobile eight wide tablet four wide computer column dream-column">
<article class="ui segment markdown-body">
<div class="ui medium header">关于我</div>
<p>lsq 的 ❤️ 博客</p>
<p>记录一些 🌈 生活上,财务相关技术上的事</p>
<p>毕业于 🏫 东北财经大学</p>
<p>空闲时间会做分享财务工作上相关技术</p>
<p>主要分享是:</p>
<ul>
<li>VBA & Power Query</li>
<li>Excel 图表制作</li>
<li>LaTeX</li>
</ul>
<p>写着玩:</p>
<ul>
<li>Ruby</li>
<li>Bash shell</li>
<li>Python</li>
</ul>
<p>目前在深圳工作</p>
<p>– 2021 年 04 月 11 日更新</p>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column dream-column">
<article class="ui segment">
<div class="ui medium header">社交链接</div>
<nav class="ui secondary menu dream-menu dream-socials">
<div class="item">
<a href="/index.xml">
<i class="large rss square icon" title="RSS"></i>
</a>
</div>
<div class="item">
<a href="mailto:lsqypj@gmail.com">
<i class="large mail icon" title="Email"></i>
</a>
</div>
<div class="item">
<a href="https://github.com/lsq" target="_blank">
<i class="large github icon" title="GitHub"></i>
</a>
</div>
</nav>
</article>
</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column dream-column">
<article class="ui segment">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />本作品采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议</a>进行许可。<br /><br />背景使用了 <a href="https://www.pexels.com/zh-cn/" target="_blank">Pexels</a> 上 <a href="https://www.pexels.com/zh-cn/@minan1398" target="_blank">Min An</a> 拍摄的<a href="https://www.pexels.com/zh-cn/photo/1454794/" target="_blank">图片</a>。
</article>
</div>
<div class="sixteen wide mobile eight wide tablet eight wide computer column dream-column">
<article class="ui segment">
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = 'https:\/\/lsq.github.io\/';
this.page.identifier = '/';
};
(function() {
var d = document, s = d.createElement('script');
s.src = 'https://' + 'lsq' + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</article>
</div>
</div>
</div>
</section>
</div>
</div>
<script>
window.defaultDark = null
window.backgroundDark = null
window.backgroundImageDark = "/me/background.jpg"
window.darkNav = null
window.hasTwitterEmbed = null
if (window.hasTwitterEmbed) {
window.twttr = (function (d, s, id) {
var js,
fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {}
if (d.getElementById(id)) return t
js = d.createElement(s)
js.id = id
js.src = 'https://platform.twitter.com/widgets.js'
fjs.parentNode.insertBefore(js, fjs)
t._e = []
t.ready = function (f) {
t._e.push(f)
}
return t
})(document, 'script', 'twitter-wjs')
}
</script>
<script src="/js/jquery.min.js"></script>
<script src="/js/semantic.min.js"></script>
<script src="/js/jquery.overlayScrollbars.min.js"></script>
<script src="/js/header.js"></script>
<script src="/js/main.js"></script>
<script src="/js/theme.js"></script>
<script src="/js/imagesloaded.pkgd.min.js"></script>
<script src="/js/masonry.pkgd.min.js"></script>
<script src="/js/grid.js"></script>
<div class="ui inverted segment" id="dream-search">
<div class="ui search">
<div class="ui transparent input">
<input class="prompt" type="text" placeholder="搜索" />
</div>
<div class="results"></div>
</div>
</div>
<script>
$(document).ready(function () {
$.getJSON('https:\/\/lsq.github.io/index.json', function (data) {
$('.ui.search').search({
source: data,
searchFields: ['title'],
showNoResults: true,
})
})
})
</script>
<script src="/js/search.js"></script>
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-98295641-1', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
</body>
</html>