-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
f""" | ||
[![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/) | ||
<p align="center"> | ||
<a href="/README.md">README_EN</a> • | ||
<a href="/static/Installation.md">编译/安装/运行</a> • | ||
|
@@ -217,3 +219,18 @@ more see: <a href=https://github.com/hktalent/scan4all/discussions>discussions</ | |
- 2022-06-07 增加http url列表精准扫描参数,根据环境变量UrlPrecise=true开启 | ||
--> | ||
|
||
# 交流群(微信、QQ、Tg) | ||
| Wechat | Or | QQchat | Or | Tg | | ||
| --- |--- |--- |--- |--- | | ||
|<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>| | ||
|
||
|
||
## 💖Star | ||
[![Stargazers over time](https://starchart.cc/hktalent/scan4all.svg)](https://starchart.cc/hktalent/scan4all) | ||
|
||
# Donation | ||
| Wechat Pay | AliPay | Paypal | BTC Pay |BCH Pay | | ||
| --- | --- | --- | --- | --- | | ||
|<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>| | ||
|
||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,22 +15,7 @@ def get_top10(): | |
|
||
if __name__ == "__main__": | ||
version = command(["git", "describe", "--tags", "--abbrev=0"]) | ||
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/)''' | ||
END = '''# 交流群(微信、QQ、Tg) | ||
| Wechat | Or | QQchat | Or | Tg | | ||
| --- |--- |--- |--- |--- | | ||
|<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>| | ||
## 💖Star | ||
[![Stargazers over time](https://starchart.cc/hktalent/scan4all.svg)](https://starchart.cc/hktalent/scan4all) | ||
# Donation | ||
| Wechat Pay | AliPay | Paypal | BTC Pay |BCH Pay | | ||
| --- | --- | --- | --- | --- | | ||
|<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>| | ||
''' | ||
template = HEADER + eval(open(".github/scripts/README.tmpl", "r").read()) + END | ||
template = eval(open(".github/scripts/README.tmpl", "r").read()) | ||
|
||
print(template) | ||
f = open("README_CN.md", "w") | ||
|