Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
modestme committed Nov 18, 2024
1 parent ed4f033 commit f4c5e12
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# 项目背景
本人常用的机场为了订阅安全,限制每天订阅次数,一旦超过则会重置订阅链接。本项目是为了解决无意识地超过次数限制,避免陷入订阅失效焦虑。

*PS: 我用的是 OpenClash,虽然设置每天更新,但是上面会显示套餐余额,每次点击查看套餐余额相当于就订阅了一次*
*PS: 我用的客户端是 OpenClash,虽然设置每天更新,但是上面会显示套餐余额,每次点击查看套餐余额相当于就订阅了一次*

[机场推荐](https://invite.wgetcloud.ltd/auth/register?code=t7jm)

# 实现功能

Expand Down Expand Up @@ -30,7 +32,8 @@ services:
url: "<your_original_subscribe_link1>"
- uuid: "<your_unique_identifier2>"
url: "<your_original_subscribe_link2>"
...
- uuid: "..."
url: "..."
```
配置文件定义说明:
Expand All @@ -53,7 +56,7 @@ services:
添加 `example.py` :

```python
from subscribe_manager.service import SubscribeManager
from subscribe_manager import SubscribeManager
sm = SubscribeManager()
sm.start()
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="subscribe-manager",
version="0.0.1",
version="0.1.0",
author="modestme",
author_email="[email protected]",
description="A subscription proxy tool that unifies subscription management, regularly downloads and stores "
Expand All @@ -25,6 +25,7 @@
"loguru>=0.7.2,<0.8.0",
"aiohttp>=3.10.10,<4.0.0",
"nest-asyncio>=1.6.0,<2.0.0",
"colorama>=0.4.6,<0.5.0"
],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit f4c5e12

Please sign in to comment.