pymecli 0.4.6__tar.gz → 0.4.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. {pymecli-0.4.6 → pymecli-0.4.7}/PKG-INFO +1 -1
  2. {pymecli-0.4.6 → pymecli-0.4.7}/core/config.py +1 -1
  3. {pymecli-0.4.6 → pymecli-0.4.7}/core/redis_client.py +1 -1
  4. {pymecli-0.4.6 → pymecli-0.4.7}/pyproject.toml +1 -1
  5. {pymecli-0.4.6 → pymecli-0.4.7}/utils/pyredis.py +2 -2
  6. {pymecli-0.4.6 → pymecli-0.4.7}/.gitignore +0 -0
  7. {pymecli-0.4.6 → pymecli-0.4.7}/README.md +0 -0
  8. {pymecli-0.4.6 → pymecli-0.4.7}/api/__init__.py +0 -0
  9. {pymecli-0.4.6 → pymecli-0.4.7}/api/v1/__init__.py +0 -0
  10. {pymecli-0.4.6 → pymecli-0.4.7}/api/v1/clash.py +0 -0
  11. {pymecli-0.4.6 → pymecli-0.4.7}/api/v1/redis.py +0 -0
  12. {pymecli-0.4.6 → pymecli-0.4.7}/cli/__init__.py +0 -0
  13. {pymecli-0.4.6 → pymecli-0.4.7}/cli/baidu.py +0 -0
  14. {pymecli-0.4.6 → pymecli-0.4.7}/cli/bitget.py +0 -0
  15. {pymecli-0.4.6 → pymecli-0.4.7}/cli/dst.py +0 -0
  16. {pymecli-0.4.6 → pymecli-0.4.7}/cli/example.py +0 -0
  17. {pymecli-0.4.6 → pymecli-0.4.7}/cli/fast.py +0 -0
  18. {pymecli-0.4.6 → pymecli-0.4.7}/cli/gate.py +0 -0
  19. {pymecli-0.4.6 → pymecli-0.4.7}/cli/redis_csv.py +0 -0
  20. {pymecli-0.4.6 → pymecli-0.4.7}/cli/util.py +0 -0
  21. {pymecli-0.4.6 → pymecli-0.4.7}/core/__init__.py +0 -0
  22. {pymecli-0.4.6 → pymecli-0.4.7}/core/clash.py +0 -0
  23. {pymecli-0.4.6 → pymecli-0.4.7}/crypto/__init__.py +0 -0
  24. {pymecli-0.4.6 → pymecli-0.4.7}/crypto/bitget.py +0 -0
  25. {pymecli-0.4.6 → pymecli-0.4.7}/crypto/gate.py +0 -0
  26. {pymecli-0.4.6 → pymecli-0.4.7}/data/__init__.py +0 -0
  27. {pymecli-0.4.6 → pymecli-0.4.7}/data/dou_dict.py +0 -0
  28. {pymecli-0.4.6 → pymecli-0.4.7}/data/dou_list.py +0 -0
  29. {pymecli-0.4.6 → pymecli-0.4.7}/data/main.py +0 -0
  30. {pymecli-0.4.6 → pymecli-0.4.7}/data/template.yaml +0 -0
  31. {pymecli-0.4.6 → pymecli-0.4.7}/models/__init__.py +0 -0
  32. {pymecli-0.4.6 → pymecli-0.4.7}/models/douzero_model.py +0 -0
  33. {pymecli-0.4.6 → pymecli-0.4.7}/models/ocr_model.py +0 -0
  34. {pymecli-0.4.6 → pymecli-0.4.7}/models/response.py +0 -0
  35. {pymecli-0.4.6 → pymecli-0.4.7}/utils/__init__.py +0 -0
  36. {pymecli-0.4.6 → pymecli-0.4.7}/utils/elapsed.py +0 -0
  37. {pymecli-0.4.6 → pymecli-0.4.7}/utils/helper.py +0 -0
  38. {pymecli-0.4.6 → pymecli-0.4.7}/utils/logger.py +0 -0
  39. {pymecli-0.4.6 → pymecli-0.4.7}/utils/mysql.py +0 -0
  40. {pymecli-0.4.6 → pymecli-0.4.7}/utils/path.py +0 -0
  41. {pymecli-0.4.6 → pymecli-0.4.7}/utils/pd.py +0 -0
  42. {pymecli-0.4.6 → pymecli-0.4.7}/utils/sleep.py +0 -0
  43. {pymecli-0.4.6 → pymecli-0.4.7}/utils/text.py +0 -0
  44. {pymecli-0.4.6 → pymecli-0.4.7}/utils/toml.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pymecli
3
- Version: 0.4.6
3
+ Version: 0.4.7
4
4
  Summary: My CLI
5
5
  Project-URL: Homepage, https://pypi.org/project/pymecli
6
6
  Project-URL: Repository, https://github.com/meme2046/pymecli
@@ -13,7 +13,7 @@ class Settings(BaseSettings):
13
13
  API_V1_STR: str = "/api/v1"
14
14
  PROJECT_NAME: str = metadata["Name"]
15
15
 
16
- REDIS_HOST: str = "192.168.124.7"
16
+ REDIS_HOST: str = "192.168.123.7"
17
17
  REDIS_PORT: int = 6379
18
18
  REDIS_DB: int = 0
19
19
  REDIS_PASSWORD: str = ""
@@ -8,7 +8,7 @@ import redis
8
8
  class RedisClient:
9
9
  def __init__(
10
10
  self,
11
- host=os.getenv("REDIS_HOST", "192.168.124.7"),
11
+ host=os.getenv("REDIS_HOST", "192.168.123.7"),
12
12
  port=int(os.getenv("REDIS_PORT", 6379)),
13
13
  db=int(os.getenv("REDIS_DB", 0)),
14
14
  password=os.getenv("REDIS_PASSWORD"),
@@ -33,7 +33,7 @@
33
33
  name = "pymecli"
34
34
  readme = "README.md"
35
35
  requires-python = ">=3.10"
36
- version = "0.4.6"
36
+ version = "0.4.7"
37
37
 
38
38
  [project.urls]
39
39
  Homepage = "https://pypi.org/project/pymecli"
@@ -5,7 +5,7 @@ import redis.asyncio as redis
5
5
 
6
6
 
7
7
  def get_redis_client(
8
- host=os.getenv("REDIS_HOST", "192.168.124.7"),
8
+ host=os.getenv("REDIS_HOST", "192.168.123.7"),
9
9
  port=int(os.getenv("REDIS_PORT", 6379)),
10
10
  db=int(os.getenv("REDIS_DB", 0)),
11
11
  password=os.getenv("REDIS_PASSWORD"),
@@ -21,7 +21,7 @@ def get_redis_client(
21
21
 
22
22
 
23
23
  def get_redis_client_sync(
24
- host=os.getenv("REDIS_HOST", "192.168.124.7"),
24
+ host=os.getenv("REDIS_HOST", "192.168.123.7"),
25
25
  port=int(os.getenv("REDIS_PORT", 6379)),
26
26
  db=int(os.getenv("REDIS_DB", 0)),
27
27
  password=os.getenv("REDIS_PASSWORD"),
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes