Skip to content

Commit 6a66885

Browse files
committed
up scripts 2022-09-18
1 parent ea4fcc3 commit 6a66885

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.github/scripts/README.tmpl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Tweet](https://img.shields.io/twitter/url/http/Hktalent3135773.svg?style=social)](https://twitter.com/intent/follow?screen_name=Hktalent3135773) [![Follow on Twitter](https://img.shields.io/twitter/follow/Hktalent3135773.svg?style=social&label=Follow)](https://twitter.com/intent/follow?screen_name=Hktalent3135773) [![GitHub Followers](https://img.shields.io/github/followers/hktalent.svg?style=social&label=Follow)](https://github.com/hktalent/)
21
<p align="center">
32
<a href="/README.md">README_EN</a> •
43
<a href="/static/Installation.md">编译/安装/运行</a> •
@@ -218,16 +217,3 @@ more see: <a href=https://github.com/hktalent/scan4all/discussions>discussions</
218217
- 2022-06-07 增加http url列表精准扫描参数,根据环境变量UrlPrecise=true开启
219218
-->
220219

221-
# 交流群(微信、QQ、Tg)
222-
| Wechat | Or | QQchat | Or | Tg |
223-
| --- |--- |--- |--- |--- |
224-
|<img width=166 src=https://github.com/hktalent/scan4all/blob/main/static/wcq.JPG>||<img width=166 src=https://github.com/hktalent/scan4all/blob/main/static/qqc.jpg>||<img width=166 src=https://github.com/hktalent/scan4all/blob/main/static/tg.jpg>|
225-
226-
227-
## 💖Star
228-
[![Stargazers over time](https://starchart.cc/hktalent/scan4all.svg)](https://starchart.cc/hktalent/scan4all)
229-
230-
# Donation
231-
| Wechat Pay | AliPay | Paypal | BTC Pay |BCH Pay |
232-
| --- | --- | --- | --- | --- |
233-
|<img src=https://github.com/hktalent/myhktools/blob/master/md/wc.png>|<img width=166 src=https://github.com/hktalent/myhktools/blob/master/md/zfb.png>|[paypal](https://www.paypal.me/pwned2019) **[email protected]**|<img width=166 src=https://github.com/hktalent/myhktools/blob/master/md/BTC.png>|<img width=166 src=https://github.com/hktalent/myhktools/blob/master/md/BCH.jpg>|

.github/scripts/update-readme.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,22 @@ def get_top10():
1515

1616
if __name__ == "__main__":
1717
version = command(["git", "describe", "--tags", "--abbrev=0"])
18-
template = eval(open(".github/scripts/README.tmpl", "r").read())
18+
HEADER = '''[![Tweet](https://img.shields.io/twitter/url/http/Hktalent3135773.svg?style=social)](https://twitter.com/intent/follow?screen_name=Hktalent3135773) [![Follow on Twitter](https://img.shields.io/twitter/follow/Hktalent3135773.svg?style=social&label=Follow)](https://twitter.com/intent/follow?screen_name=Hktalent3135773) [![GitHub Followers](https://img.shields.io/github/followers/hktalent.svg?style=social&label=Follow)](https://github.com/hktalent/)'''
19+
END = '''# 交流群(微信、QQ、Tg)
20+
| Wechat | Or | QQchat | Or | Tg |
21+
| --- |--- |--- |--- |--- |
22+
|<img width=166 src=https://github.com/hktalent/scan4all/blob/main/static/wcq.JPG>||<img width=166 src=https://github.com/hktalent/scan4all/blob/main/static/qqc.jpg>||<img width=166 src=https://github.com/hktalent/scan4all/blob/main/static/tg.jpg>|
23+
24+
25+
## 💖Star
26+
[![Stargazers over time](https://starchart.cc/hktalent/scan4all.svg)](https://starchart.cc/hktalent/scan4all)
27+
28+
# Donation
29+
| Wechat Pay | AliPay | Paypal | BTC Pay |BCH Pay |
30+
| --- | --- | --- | --- | --- |
31+
|<img src=https://github.com/hktalent/myhktools/blob/master/md/wc.png>|<img width=166 src=https://github.com/hktalent/myhktools/blob/master/md/zfb.png>|[paypal](https://www.paypal.me/pwned2019) **[email protected]**|<img width=166 src=https://github.com/hktalent/myhktools/blob/master/md/BTC.png>|<img width=166 src=https://github.com/hktalent/myhktools/blob/master/md/BCH.jpg>|
32+
'''
33+
template = HEADER + eval(open(".github/scripts/README.tmpl", "r").read()) + END
1934

2035
print(template)
2136
f = open("README_CN.md", "w")

0 commit comments

Comments
 (0)