Compare commits

...

No commits in common. 'dev' and 'main' have entirely different histories.
dev ... main

  1. 44
      .github/ISSUE_TEMPLATE/issue_template.md
  2. 12
      .github/ISSUE_TEMPLATE/issues_template_re.md
  3. 6
      .idea/inspectionProfiles/profiles_settings.xml
  4. 8
      .idea/modules.xml
  5. 1720
      README.md
  6. 156
      develop.md
  7. BIN
      img1.png
  8. 99
      urllib.csv
  9. 24
      weight-rank.md

@ -0,0 +1,44 @@
---
name: 添加站点
about: 添加站点的模板
title: '[添加站点] '
labels: add-site
assignees: ''
---
**网址**
```
http://example.com/
```
**网站类型**
- [x] ChatGPT站点
- [ ] 其他
**网站简介、使用方式****
> 请尽量描述清楚,方便其他人使用
- [x] 😄 免费使用(打开即可用无限制)
- [ ] 🔑 免费使用但是需要登录或密码
- [ ] 🤑 付费使用
- [ ] 🎁 付费使用,体验次数
**网站图标-路径(可选)**
> 正方形 那种
```
如: http://example.com/favicon.ico
```
**是否需要国际网络(可选)**
- [x] 否
- [ ] 是

@ -0,0 +1,12 @@
---
name: 反馈站点
about: 反馈站点
title: '[反馈] '
assignees: ''
---
网址: http://example.com/
问题:如网站失效

@ -1,6 +0,0 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/dev.iml" filepath="$PROJECT_DIR$/.idea/dev.iml" />
</modules>
</component>
</project>

File diff suppressed because it is too large Load Diff

@ -1,156 +0,0 @@
# Develop
### 向dev分支提交更改
```shell
# 请克隆dev分支
git clone -b dev https://github.com/xx025/carrot.git carrot-dev
```
### 模板
当前网站已经超过100个,为了方便管理,则使用模板的形式生成文档,下面是模板
```markdown
# Free ChatGPT Site List
**这儿为你准备了众多免费好用的ChatGPT镜像站点**
**发布网站:** https://www.example.com/ (😃敬请收藏和分享)
**分享站点**、**站点失效**、**标注错误**,请[🌺点此🌺](https://www.example.com/ )告诉我
> <a href="https://www.example.com/ " target="_blank"><font color="red">🔗支持我,给你更长久的陪伴:【🧡赞赏🧡】</font></a>
<br/>
### 站点列表
- 🔑: 需要登录使用
[//]: # (下面是正常的站点)
{% for item in items_zheng_chang %}
{{item.index}}. {{item.content}} {{ item.url }}
{% endfor %}
<details>
<summary>更多站点</summary>
- 🔑:需要进行**登录**或需要**密码**
<br/>
- ⛔:有限地使用**次数**或**字数**,需提供key或进行充值进行服务升级
<br/>
- ❓ :未测试,未进行标注也为未测试
<br/>
[//]: # ( &#40;下面是更多的站点&#41;)
{% for item in items_xian_zhi %}
{{item.index}}. {{item.content}} {{ item.url }}
<br/>
{% endfor %}
</details>
[//]: # (下面是失效的站点)
<details>
<summary>失效站点</summary>
{% for item in items_shi_xiao %}
{{item.index}}. {{item.content}} {{ item.url }}
<br/>
{% endfor %}
</details>
### 妙站
> 下面这些站点也很有趣
{% for item in items_mian_zhan %}
{{item.index}}. {{item.content}} {{ item.url }}
{% endfor %}
### 欢迎补充
GitHub 仓库地址: https://www.example.com/
如果您认为站点可以加⭐、分享你发现的新的站点,反馈失效站点,欢迎[点此](https://www.example.com/ )告诉我
[关于广告位](https://www.example.com/ )
### 协议
如果您正在同步或转载本仓库内容,请遵守以下协议:1. 可以移除广告位 2. 其他部分请保持原文,不作修改
### 最后更新
如果下方时间已经晚于当前时间1h ;请前往[GitHub仓库](https://www.example.com/ )查看最新内容
```
### GitHubAction自动同步
> GitHubAction每十分钟自动同步 dev 分支[README.md](https://github.com/xx025/carrot/blob/dev/README.md)
> 请开起Action 可读写仓库
>
> 开启方法:
> 1. Actions permissions -->[✔]Allow all actions and reusable workflows # 允许action运行
> 2. Workflow permissions-->[✔]Read and write permissions # 给与action读写权限
```yml
name: Sync
on:
schedule:
- cron: '*/10 * * * *'
jobs:
sync-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: main # 要同步的分支
- name: Download README.md
run: |
curl -o README.md https://raw.githubusercontent.com/xx025/carrot/main/README.md
echo "$(cat README.md)"$'\n\n>Last synced:BeiJingT '"$(TZ='Asia/Shanghai' date +'%Y-%m-%d %H:%M:%S')" > README.md
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Set up Git user
run: |
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
- name: Check if changes exist
run: |
if git diff-index --quiet HEAD --; then
echo "No changes to commit. Exiting."
else
git add README.md
git commit -m "Sync README to main branch"
git push origin HEAD:refs/heads/main
fi
```
## star历史
![star-history](https://api.star-history.com/svg?repos=xx025/carrot&type=Timeline)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

@ -0,0 +1,99 @@
url,gfw,message
https://gpt.intercat.cn/,0,"代理,异常失败"
https://chat.yougan.cc/,0,"代理,异常失败"
http://chat.apigpt.cn/,0,"代理,异常失败"
https://chat.paoying.net/,0,"代理,异常失败"
https://chat.wxredcover.cn/,0,"代理,异常失败"
https://openai.onenov.cn/,0,"代理,异常失败"
https://chater.lanyun1103.top,0,"代理,异常失败"
https://chat.extnav.com/,0,"代理,异常失败"
http://chatai.fyi/,0,"代理,异常失败"
https://chatgpt.poshist.cn/,0,"代理,异常失败"
https://chat.jingran.vip/,0,"代理,异常失败"
https://freegpt.one/,403,代理,失败
https://freechatgpt.lol/,403,代理,失败
https://chatgpt.h7ml.cn/,0,"代理,异常失败"
https://chat.eaten.fun/,0,"代理,异常失败"
https://chatmindai.com/,0,"代理,异常失败"
https://www.chatsverse.xyz/,0,"代理,异常失败"
http://itecheasy.com.cn/,0,"代理,异常失败"
https://chat.tgbot.co/,0,"代理,异常失败"
https://chat.uue.me/,0,"代理,异常失败"
https://www.aitoolgpt.com/,0,"代理,异常失败"
https://chat-gpt.nikong.cn/,0,"代理,异常失败"
https://chatbot.theb.ai/,403,代理,失败
https://askgptai.com/,0,"代理,异常失败"
https://www.aicodehelper.com/,0,"代理,异常失败"
https://www.abab123.tk/,0,"代理,异常失败"
https://vrtalk.io/,0,"代理,异常失败"
https://www.aiai.zone/,0,"代理,异常失败"
https://chat.topsearcher.top/,0,"代理,异常失败"
https://chat.idcxsy.com/,0,"代理,异常失败"
https://index.chat.bnu120.sapce/,0,"代理,异常失败"
https://chat.68686.ltd/,0,"代理,异常失败"
https://gpt.chieh.top/,0,"代理,异常失败"
https://nb.askaiw.com/,0,"代理,异常失败"
https://bot.d8.pw,0,"代理,异常失败"
https://ai.ov.cm/,0,"代理,异常失败"
https://x-sms.cn,0,"代理,异常失败"
https://bo.tychat.me/,0,"代理,异常失败"
https://gpt.qingting.work/,0,"代理,异常失败"
http://nhhg.xyz/,0,"代理,异常失败"
https://chat.sunls.me/,0,"代理,异常失败"
https://2dog.io/,0,"代理,异常失败"
https://gpt.anoyi.com/zh,0,"代理,异常失败"
https://gpt.aieasy.one,0,"代理,异常失败"
https://chat.789ai.top/,0,"代理,异常失败"
https://chat.kosmos.pink/,0,"代理,异常失败"
https://www.fysh2022.top,0,"代理,异常失败"
https://chat.hywwwlove.top/,0,"代理,异常失败"
https://smart-chat.xiami.one/,0,"代理,异常失败"
https://chat.gptplus.one/,0,"代理,异常失败"
https://www.kuaisou.com/,0,"代理,异常失败"
https://chat1.orcle.tech/,0,"代理,异常失败"
https://gpt.ai8.icu/,0,"代理,异常失败"
https://dyrt.me/,521,代理,失败
https://f1.nbai.live/,0,"代理,异常失败"
http://chaosu.xyz/,0,"代理,异常失败"
http://outchat.extkj.cn/,0,"代理,异常失败"
http://www.vppp.cn/,0,"代理,异常失败"
https://new.ctgpt2.cn/,0,"代理,异常失败"
http://easyai.ink,0,"代理,异常失败"
https://www.vivi-chat.com/,0,"代理,异常失败"
https://chat.chatbot.sex/chat/,403,代理,失败
https://ora.sh/openai/gpt4,403,代理,失败
https://chatgpt-cn.co/,0,"代理,异常失败"
https://www.aitoolist.cn/,0,"代理,异常失败"
https://chatgpt.qdymys.cn/,0,"代理,异常失败"
http://f3.52chye.cn,0,"代理,异常失败"
https://ai-pig-fly.space/,0,"代理,异常失败"
https://www.theaivalley.com/,403,非代理,失败
https://chat1.aichatos.top,0,"代理,异常失败"
https://www.aiagc.com/,0,"代理,异常失败"
https://chatgpt01.peo.icu/,0,"代理,异常失败"
https://qa.6bbs.cn/,0,"代理,异常失败"
https://chat.darricks.net/,0,"代理,异常失败"
https://www.ainav.cn/,0,"代理,异常失败"
https://sensundyaceleant.letsearches.com/,0,"代理,异常失败"
https://s320.cn/,0,"代理,异常失败"
https://alllinkai1.com/,0,"代理,异常失败"
https://tomda.xyz/,0,"代理,异常失败"
https://ainavtool.com/,0,"代理,异常失败"
http://www.aaang.cc/,0,"代理,异常失败"
https://officechat.top,0,"代理,异常失败"
https://new-bing.club/chat,0,"代理,异常失败"
https://ai.ccppcc.com/,0,"代理,异常失败"
https://tvtm.cn/,0,"代理,异常失败"
https://1chat.chat/,0,"代理,异常失败"
http://20200.cn/,0,"代理,异常失败"
https://02.gogsu.com/,0,"代理,异常失败"
https://gpt.l0086.cc/,0,"代理,异常失败"
https://www.gpt6.lol/,0,"代理,异常失败"
https://aichat0516.peo.icu/,0,"代理,异常失败"
http://free.mwiki.top:8080/,0,"代理,异常失败"
https://ailake.top/chat,0,"代理,异常失败"
http://www.chatplus.plus/,0,"代理,异常失败"
https://chatgpt.dreamtrend.net/,0,"代理,异常失败"
https://infiniteai.chat/,0,"代理,异常失败"
http://www.aizj.me/,0,"代理,异常失败"
https://tchat.icu,0,"代理,异常失败"
1 url gfw message
2 https://gpt.intercat.cn/ 0 代理,异常失败
3 https://chat.yougan.cc/ 0 代理,异常失败
4 http://chat.apigpt.cn/ 0 代理,异常失败
5 https://chat.paoying.net/ 0 代理,异常失败
6 https://chat.wxredcover.cn/ 0 代理,异常失败
7 https://openai.onenov.cn/ 0 代理,异常失败
8 https://chater.lanyun1103.top 0 代理,异常失败
9 https://chat.extnav.com/ 0 代理,异常失败
10 http://chatai.fyi/ 0 代理,异常失败
11 https://chatgpt.poshist.cn/ 0 代理,异常失败
12 https://chat.jingran.vip/ 0 代理,异常失败
13 https://freegpt.one/ 403 代理,失败
14 https://freechatgpt.lol/ 403 代理,失败
15 https://chatgpt.h7ml.cn/ 0 代理,异常失败
16 https://chat.eaten.fun/ 0 代理,异常失败
17 https://chatmindai.com/ 0 代理,异常失败
18 https://www.chatsverse.xyz/ 0 代理,异常失败
19 http://itecheasy.com.cn/ 0 代理,异常失败
20 https://chat.tgbot.co/ 0 代理,异常失败
21 https://chat.uue.me/ 0 代理,异常失败
22 https://www.aitoolgpt.com/ 0 代理,异常失败
23 https://chat-gpt.nikong.cn/ 0 代理,异常失败
24 https://chatbot.theb.ai/ 403 代理,失败
25 https://askgptai.com/ 0 代理,异常失败
26 https://www.aicodehelper.com/ 0 代理,异常失败
27 https://www.abab123.tk/ 0 代理,异常失败
28 https://vrtalk.io/ 0 代理,异常失败
29 https://www.aiai.zone/ 0 代理,异常失败
30 https://chat.topsearcher.top/ 0 代理,异常失败
31 https://chat.idcxsy.com/ 0 代理,异常失败
32 https://index.chat.bnu120.sapce/ 0 代理,异常失败
33 https://chat.68686.ltd/ 0 代理,异常失败
34 https://gpt.chieh.top/ 0 代理,异常失败
35 https://nb.askaiw.com/ 0 代理,异常失败
36 https://bot.d8.pw 0 代理,异常失败
37 https://ai.ov.cm/ 0 代理,异常失败
38 https://x-sms.cn 0 代理,异常失败
39 https://bo.tychat.me/ 0 代理,异常失败
40 https://gpt.qingting.work/ 0 代理,异常失败
41 http://nhhg.xyz/ 0 代理,异常失败
42 https://chat.sunls.me/ 0 代理,异常失败
43 https://2dog.io/ 0 代理,异常失败
44 https://gpt.anoyi.com/zh 0 代理,异常失败
45 https://gpt.aieasy.one 0 代理,异常失败
46 https://chat.789ai.top/ 0 代理,异常失败
47 https://chat.kosmos.pink/ 0 代理,异常失败
48 https://www.fysh2022.top 0 代理,异常失败
49 https://chat.hywwwlove.top/ 0 代理,异常失败
50 https://smart-chat.xiami.one/ 0 代理,异常失败
51 https://chat.gptplus.one/ 0 代理,异常失败
52 https://www.kuaisou.com/ 0 代理,异常失败
53 https://chat1.orcle.tech/ 0 代理,异常失败
54 https://gpt.ai8.icu/ 0 代理,异常失败
55 https://dyrt.me/ 521 代理,失败
56 https://f1.nbai.live/ 0 代理,异常失败
57 http://chaosu.xyz/ 0 代理,异常失败
58 http://outchat.extkj.cn/ 0 代理,异常失败
59 http://www.vppp.cn/ 0 代理,异常失败
60 https://new.ctgpt2.cn/ 0 代理,异常失败
61 http://easyai.ink 0 代理,异常失败
62 https://www.vivi-chat.com/ 0 代理,异常失败
63 https://chat.chatbot.sex/chat/ 403 代理,失败
64 https://ora.sh/openai/gpt4 403 代理,失败
65 https://chatgpt-cn.co/ 0 代理,异常失败
66 https://www.aitoolist.cn/ 0 代理,异常失败
67 https://chatgpt.qdymys.cn/ 0 代理,异常失败
68 http://f3.52chye.cn 0 代理,异常失败
69 https://ai-pig-fly.space/ 0 代理,异常失败
70 https://www.theaivalley.com/ 403 非代理,失败
71 https://chat1.aichatos.top 0 代理,异常失败
72 https://www.aiagc.com/ 0 代理,异常失败
73 https://chatgpt01.peo.icu/ 0 代理,异常失败
74 https://qa.6bbs.cn/ 0 代理,异常失败
75 https://chat.darricks.net/ 0 代理,异常失败
76 https://www.ainav.cn/ 0 代理,异常失败
77 https://sensundyaceleant.letsearches.com/ 0 代理,异常失败
78 https://s320.cn/ 0 代理,异常失败
79 https://alllinkai1.com/ 0 代理,异常失败
80 https://tomda.xyz/ 0 代理,异常失败
81 https://ainavtool.com/ 0 代理,异常失败
82 http://www.aaang.cc/ 0 代理,异常失败
83 https://officechat.top 0 代理,异常失败
84 https://new-bing.club/chat 0 代理,异常失败
85 https://ai.ccppcc.com/ 0 代理,异常失败
86 https://tvtm.cn/ 0 代理,异常失败
87 https://1chat.chat/ 0 代理,异常失败
88 http://20200.cn/ 0 代理,异常失败
89 https://02.gogsu.com/ 0 代理,异常失败
90 https://gpt.l0086.cc/ 0 代理,异常失败
91 https://www.gpt6.lol/ 0 代理,异常失败
92 https://aichat0516.peo.icu/ 0 代理,异常失败
93 http://free.mwiki.top:8080/ 0 代理,异常失败
94 https://ailake.top/chat 0 代理,异常失败
95 http://www.chatplus.plus/ 0 代理,异常失败
96 https://chatgpt.dreamtrend.net/ 0 代理,异常失败
97 https://infiniteai.chat/ 0 代理,异常失败
98 http://www.aizj.me/ 0 代理,异常失败
99 https://tchat.icu 0 代理,异常失败

@ -1,24 +0,0 @@
#### 排序
```python
# 按权重排序
# 权重 基本为 免费,登录,付费
data1.extend(sort_site(data.free_star, gfw=False))
data1.extend(sort_site(data.free))
data1.extend(sort_site(data.deng_lu))
data1.extend(sort_site(data.charge))
# 打乱
random.shuffle(data.miao_zhan)
```
```python
def sort_site(items, gfw=True):
items = sorted(items, key=lambda x: x.weight, reverse=True)
if gfw:
items_g = [x for x in items if x.gfw == 1]
items_g.extend([x for x in items if x.gfw != 1])
items = items_g
return items
```
Loading…
Cancel
Save