hiddifypanel 10.70.8__py3-none-any.whl → 10.80.0__py3-none-any.whl

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 (89) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +5 -2
  3. hiddifypanel/__init__.py +5 -1
  4. hiddifypanel/apps/__init__.py +0 -0
  5. hiddifypanel/apps/asgi_app.py +7 -0
  6. hiddifypanel/apps/celery_app.py +3 -0
  7. hiddifypanel/apps/wsgi_app.py +5 -0
  8. hiddifypanel/auth.py +8 -3
  9. hiddifypanel/base.py +43 -126
  10. hiddifypanel/base_setup.py +82 -0
  11. hiddifypanel/cache.py +3 -2
  12. hiddifypanel/celery.py +45 -0
  13. hiddifypanel/database.py +7 -0
  14. hiddifypanel/drivers/ssh_liberty_bridge_api.py +2 -1
  15. hiddifypanel/drivers/wireguard_api.py +1 -1
  16. hiddifypanel/hutils/crypto.py +27 -0
  17. hiddifypanel/hutils/flask.py +5 -3
  18. hiddifypanel/hutils/network/cf_api.py +5 -5
  19. hiddifypanel/hutils/proxy/__init__.py +1 -0
  20. hiddifypanel/hutils/proxy/clash.py +3 -3
  21. hiddifypanel/hutils/proxy/shared.py +14 -18
  22. hiddifypanel/hutils/proxy/singbox.py +4 -2
  23. hiddifypanel/hutils/proxy/wireguard.py +34 -0
  24. hiddifypanel/hutils/proxy/xray.py +3 -3
  25. hiddifypanel/hutils/proxy/xrayjson.py +10 -7
  26. hiddifypanel/models/admin.py +1 -1
  27. hiddifypanel/models/base_account.py +3 -0
  28. hiddifypanel/models/config.py +5 -2
  29. hiddifypanel/models/config_enum.py +15 -2
  30. hiddifypanel/models/proxy.py +1 -1
  31. hiddifypanel/models/user.py +2 -2
  32. hiddifypanel/panel/__init__.py +8 -8
  33. hiddifypanel/panel/admin/AdminstratorAdmin.py +16 -10
  34. hiddifypanel/panel/admin/DomainAdmin.py +132 -98
  35. hiddifypanel/panel/admin/ProxyAdmin.py +4 -0
  36. hiddifypanel/panel/admin/QuickSetup.py +48 -17
  37. hiddifypanel/panel/admin/SettingAdmin.py +6 -0
  38. hiddifypanel/panel/admin/UserAdmin.py +63 -36
  39. hiddifypanel/panel/admin/adminlte.py +1 -1
  40. hiddifypanel/panel/admin/templates/index.html +6 -4
  41. hiddifypanel/panel/admin/templates/model/user_list.html +11 -3
  42. hiddifypanel/panel/cli.py +14 -3
  43. hiddifypanel/panel/commercial/restapi/v1/tgbot.py +19 -1
  44. hiddifypanel/panel/commercial/restapi/v2/admin/system_actions.py +5 -1
  45. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +2 -1
  46. hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py +76 -6
  47. hiddifypanel/panel/common.py +5 -2
  48. hiddifypanel/panel/common_bp/login.py +14 -8
  49. hiddifypanel/panel/hlogger.py +32 -0
  50. hiddifypanel/panel/init_db.py +157 -77
  51. hiddifypanel/panel/node/__init__.py +9 -0
  52. hiddifypanel/panel/node/a.py +14 -0
  53. hiddifypanel/panel/node/hello.py +14 -0
  54. hiddifypanel/panel/node/test.proto +13 -0
  55. hiddifypanel/panel/node/test_grpc.py +40 -0
  56. hiddifypanel/panel/node/test_pb2.py +40 -0
  57. hiddifypanel/panel/node/test_pb2.pyi +17 -0
  58. hiddifypanel/panel/node/test_pb2_grpc.py +97 -0
  59. hiddifypanel/panel/usage.py +13 -3
  60. hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +16 -0
  61. hiddifypanel/panel/user/templates/home/home.html +1 -2
  62. hiddifypanel/panel/user/templates/home/multi.html +1 -2
  63. hiddifypanel/panel/user/user.py +13 -19
  64. hiddifypanel/static/apps-icon/singbox.ico +0 -0
  65. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  66. hiddifypanel/translations/en/LC_MESSAGES/messages.po +125 -30
  67. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  68. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +123 -32
  69. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  70. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +114 -22
  71. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  72. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +129 -32
  73. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  74. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +107 -18
  75. hiddifypanel/translations.i18n/en.json +73 -14
  76. hiddifypanel/translations.i18n/fa.json +72 -13
  77. hiddifypanel/translations.i18n/fr.json +28 -10
  78. hiddifypanel/translations.i18n/my.json +1266 -0
  79. hiddifypanel/translations.i18n/pt.json +68 -9
  80. hiddifypanel/translations.i18n/ru.json +75 -16
  81. hiddifypanel/translations.i18n/zh.json +67 -8
  82. hiddifypanel-10.80.0.dist-info/METADATA +137 -0
  83. {hiddifypanel-10.70.8.dist-info → hiddifypanel-10.80.0.dist-info}/RECORD +136 -119
  84. {hiddifypanel-10.70.8.dist-info → hiddifypanel-10.80.0.dist-info}/WHEEL +1 -2
  85. hiddifypanel-10.80.0.dist-info/entry_points.txt +3 -0
  86. hiddifypanel-10.70.8.dist-info/METADATA +0 -144
  87. hiddifypanel-10.70.8.dist-info/entry_points.txt +0 -2
  88. hiddifypanel-10.70.8.dist-info/top_level.txt +0 -1
  89. {hiddifypanel-10.70.8.dist-info → hiddifypanel-10.80.0.dist-info}/LICENSE.md +0 -0
@@ -1,144 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: hiddifypanel
3
- Version: 10.70.8
4
- Summary: hiddifypanel multi proxy panel
5
- Home-page: https://github.com/hiddify/hiddify-manager/
6
- Author: hiddify
7
- Description-Content-Type: text/markdown
8
- License-File: LICENSE.md
9
- Requires-Dist: APIFlask==2.1.1
10
- Requires-Dist: Babel==2.14.0
11
- Requires-Dist: Bootstrap-Flask==2.3.3
12
- Requires-Dist: Cython==3.0.10
13
- Requires-Dist: Flask-Admin==1.6.1
14
- Requires-Dist: Flask-AdminLTE3==1.0.9
15
- Requires-Dist: Flask-Classful==0.16.0
16
- Requires-Dist: Flask-Cors==4.0.0
17
- Requires-Dist: Flask-Login==0.6.3
18
- Requires-Dist: Flask-RESTful==0.3.10
19
- Requires-Dist: Flask-SQLAlchemy==3.1.1
20
- Requires-Dist: Flask-Session==0.8.0
21
- Requires-Dist: Flask-WTF==1.2.1
22
- Requires-Dist: Flask==3.0.2
23
- Requires-Dist: MarkupSafe==2.1.5
24
- Requires-Dist: PyMySQL==1.1.0
25
- Requires-Dist: PyYAML==6.0.1
26
- Requires-Dist: SQLAlchemy-Utils==0.41.2
27
- Requires-Dist: SQLAlchemy-serializer==1.4.12
28
- Requires-Dist: SQLAlchemy==2.0.29
29
- Requires-Dist: StrEnum==0.4.15
30
- Requires-Dist: WTForms==3.1.2
31
- Requires-Dist: Werkzeug==3.0.1
32
- Requires-Dist: ansi2html==1.9.1
33
- Requires-Dist: async-timeout==4.0.3
34
- Requires-Dist: bjoern==3.2.2
35
- Requires-Dist: click==8.1.7
36
- Requires-Dist: cloudflare==2.19.2
37
- Requires-Dist: cryptography==42.0.5
38
- Requires-Dist: dynaconf==3.2.5
39
- Requires-Dist: fastenumplus==1.4.0
40
- Requires-Dist: flask-apispec==0.11.4
41
- Requires-Dist: flask-babel==4.0.0
42
- Requires-Dist: flask-simplelogin==0.1.2
43
- Requires-Dist: h2==4.1.0
44
- Requires-Dist: json5==0.9.24
45
- Requires-Dist: lastversion==3.5.2
46
- Requires-Dist: loguru==0.7.2
47
- Requires-Dist: maxminddb==2.6.0
48
- Requires-Dist: mysqlclient==2.2.4
49
- Requires-Dist: netifaces==0.11.0
50
- Requires-Dist: paramiko==3.4.0
51
- Requires-Dist: ping3==4.0.5
52
- Requires-Dist: psutil==5.9.8
53
- Requires-Dist: python-dateutil==2.9.0.post0
54
- Requires-Dist: python-dotenv==1.0.1
55
- Requires-Dist: python-redis-cache==3.1.0
56
- Requires-Dist: python-slugify==8.0.4
57
- Requires-Dist: redis==5.0.3
58
- Requires-Dist: requests==2.31.0
59
- Requires-Dist: six==1.16.0
60
- Requires-Dist: pyTelegramBotAPI==4.22.1
61
- Requires-Dist: user-agents==2.2.0
62
- Requires-Dist: xtlsapi==3.1.2
63
- Requires-Dist: bleach==6.1.0
64
- Provides-Extra: test
65
- Requires-Dist: flask-debugtoolbar; extra == "test"
66
- Requires-Dist: flask-shell-ipython; extra == "test"
67
- Requires-Dist: ipdb; extra == "test"
68
- Requires-Dist: pytest-flask; extra == "test"
69
- Requires-Dist: python-dotenv; extra == "test"
70
- Requires-Dist: pytest; extra == "test"
71
- Requires-Dist: coverage; extra == "test"
72
- Requires-Dist: flake8; extra == "test"
73
- Requires-Dist: black; extra == "test"
74
- Requires-Dist: isort; extra == "test"
75
- Requires-Dist: pytest-cov; extra == "test"
76
- Requires-Dist: codecov; extra == "test"
77
- Requires-Dist: mypy; extra == "test"
78
- Requires-Dist: gitchangelog; extra == "test"
79
- Requires-Dist: mkdocs; extra == "test"
80
-
81
- # hiddifypanel
82
-
83
- hiddifypanel to create multi proxy using xray mtproxy and others
84
-
85
- ## 🌎 Translations
86
-
87
- <div align=center>
88
-
89
- [![inlang status badge](https://inlang.com/badge?url=github.com/hiddify/hiddifypanel)](https://inlang.com/editor/github.com/hiddify/hiddifypanel?ref=badge)
90
- </div>
91
-
92
- Improve existing languages or add new ones by manually editing the JSON files located in `/assets/translations` or by using the [Inlang online editor](https://inlang.com/editor/github.com/hiddify/hiddifypanel).
93
-
94
- # How to use it
95
- Please visit https://github.com/hiddify/hiddify-manager/wiki for the installation.
96
-
97
- # Source Code: https://github.com/hiddify/HiddifyPanel/
98
- <!--
99
- ## Installation
100
-
101
- From source:
102
-
103
- ```bash
104
- git clone https://github.com/hiddify/HiddifyPanel hiddifypanel
105
- cd hiddifypanel
106
- make install
107
- ```
108
-
109
- From pypi:
110
-
111
- ```bash
112
- pip install hiddifypanel
113
- ```
114
-
115
- ## Executing
116
-
117
- This application has a CLI interface that extends the Flask CLI.
118
-
119
- Just run:
120
-
121
- ```bash
122
- $ hiddifypanel
123
- ```
124
-
125
- or
126
-
127
- ```bash
128
- $ python -m hiddifypanel
129
- ```
130
-
131
- To see the help message and usage instructions.
132
-
133
- ## First run
134
-
135
- ```bash
136
- hiddifypanel init-db # run once
137
- echo localhost:9000/$(hiddifypanel admin-path)
138
- hiddifypanel run
139
- ```
140
-
141
-
142
- > **Note**: You can also use `flask run` to run the application.
143
-
144
- -->
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- hiddifypanel = hiddifypanel.__main__:main
@@ -1 +0,0 @@
1
- hiddifypanel