funboost 48.4__py3-none-any.whl → 48.6__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.

Potentially problematic release.


This version of funboost might be problematic. Click here for more details.

Files changed (43) hide show
  1. funboost/__init__.py +2 -1
  2. funboost/concurrent_pool/backup/grok_async_pool.py +151 -0
  3. funboost/concurrent_pool/fixed_thread_pool.py +4 -3
  4. funboost/concurrent_pool/flexible_thread_pool.py +1 -1
  5. funboost/consumers/base_consumer.py +2 -0
  6. funboost/core/kill_remote_task.py +2 -1
  7. funboost/function_result_web/__pycache__/app.cpython-37.pyc +0 -0
  8. funboost/function_result_web/__pycache__/app.cpython-39.pyc +0 -0
  9. funboost/function_result_web/__pycache__/functions.cpython-39.pyc +0 -0
  10. funboost/function_result_web/app.py +12 -2
  11. funboost/function_result_web/static/css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css +5 -0
  12. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/css/font-awesome.min.css +4 -0
  13. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/FontAwesome.otf +0 -0
  14. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.eot +0 -0
  15. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.svg +2671 -0
  16. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf +0 -0
  17. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.woff +0 -0
  18. funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2 +0 -0
  19. funboost/function_result_web/static/css_cdn/select2/4.0.13/css/select2.min.css +1 -0
  20. funboost/function_result_web/static/css_cdn/tabulator-tables@5.5.0/tabulator.min.css +0 -0
  21. funboost/function_result_web/static/css_cdn/tabulator-tables@5.5.0/tabulator_bootstrap3.min.css +2 -0
  22. funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css +6 -0
  23. funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
  24. funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg +288 -0
  25. funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
  26. funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
  27. funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
  28. funboost/function_result_web/static/js_cdn/bootstrap/3.3.7/js/bootstrap.min.js +7 -0
  29. funboost/function_result_web/static/js_cdn/tabulator-tables@5.5.0/dist/js/tabulator.min.js +3 -0
  30. funboost/function_result_web/templates/about.html +1 -1
  31. funboost/function_result_web/templates/conusme_speed.html +5 -5
  32. funboost/function_result_web/templates/fun_result_table.html +5 -5
  33. funboost/function_result_web/templates/index.html +4 -4
  34. funboost/function_result_web/templates/index_backup.html +5 -5
  35. funboost/function_result_web/templates/queue_op.html +10 -7
  36. funboost/function_result_web/templates/running_consumer_by_ip.html +8 -8
  37. funboost/function_result_web/templates/running_consumer_by_queue_name.html +8 -8
  38. {funboost-48.4.dist-info → funboost-48.6.dist-info}/METADATA +76 -76
  39. {funboost-48.4.dist-info → funboost-48.6.dist-info}/RECORD +43 -22
  40. {funboost-48.4.dist-info → funboost-48.6.dist-info}/WHEEL +1 -1
  41. {funboost-48.4.dist-info → funboost-48.6.dist-info}/LICENSE +0 -0
  42. {funboost-48.4.dist-info → funboost-48.6.dist-info}/entry_points.txt +0 -0
  43. {funboost-48.4.dist-info → funboost-48.6.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
3
  <head>
4
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
4
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
5
5
  <style>
6
6
  body {
7
7
  background-color: #f5f5f5;
@@ -6,15 +6,15 @@
6
6
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
8
  <title>pytho万能分布式函数调度框架</title>
9
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
10
- <link href="http://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
9
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
10
+ <link href="{{ url_for('static',filename='css_cdn/font-awesome/4.7.0/css/font-awesome.min.css') }}" rel="stylesheet">
11
11
  <link rel="stylesheet"
12
- href="https://cdn.bootcss.com/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css">
12
+ href="{{ url_for('static',filename='css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css') }}">
13
13
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/jquery.mCustomScrollbar.min.css') }}">
14
14
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/custom.css') }}">
15
15
 
16
16
  <!-- 在其他 link 标签后添加 -->
17
- <link href="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/css/select2.min.css" rel="stylesheet">
17
+ <link href="{{ url_for('static',filename='css_cdn/select2/4.0.13/css/select2.min.css') }}" rel="stylesheet">
18
18
  <link href="{{ url_for('static',filename='css/content_page_style.css') }}" rel="stylesheet">
19
19
 
20
20
 
@@ -23,7 +23,7 @@
23
23
  <!-- 在其他 script 标签后添加 -->
24
24
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/js/select2.min.js"></script> -->
25
25
  <script src="{{ url_for('static',filename='/js/select2.min.js') }}"></script>
26
- <script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
26
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
27
27
 
28
28
 
29
29
  <script src="{{ url_for('static',filename='js/moment-with-locales.min.js') }}"></script>
@@ -6,14 +6,14 @@
6
6
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
8
  <title>pytho万能分布式函数调度框架</title>
9
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
10
- <link href="http://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
9
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
10
+ <link href="{{ url_for('static',filename='css_cdn/font-awesome/4.7.0/css/font-awesome.min.css') }}" rel="stylesheet">
11
11
  <link rel="stylesheet"
12
- href="https://cdn.bootcss.com/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css">
12
+ href="{{ url_for('static',filename='css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css') }}">
13
13
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/jquery.mCustomScrollbar.min.css') }}">
14
14
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/custom.css') }}">
15
15
  <!-- 在其他 link 标签后添加 -->
16
- <link href="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/css/select2.min.css" rel="stylesheet">
16
+ <link href="{{ url_for('static',filename='css_cdn/select2/4.0.13/css/select2.min.css') }}" rel="stylesheet">
17
17
  <link href="{{ url_for('static',filename='css/content_page_style.css') }}" rel="stylesheet">
18
18
 
19
19
 
@@ -22,7 +22,7 @@
22
22
  <!-- 在其他 script 标签后添加 -->
23
23
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/js/select2.min.js"></script> -->
24
24
  <script src="{{ url_for('static',filename='/js/select2.min.js') }}"></script>
25
- <script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
25
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
26
26
 
27
27
 
28
28
  <script src="{{ url_for('static',filename='js/moment-with-locales.min.js') }}"></script>
@@ -7,12 +7,12 @@
7
7
 
8
8
  <link rel="icon" href="{{ url_for('static',filename='images/favicon.ico') }}">
9
9
  <!-- 引入 Bootstrap CSS -->
10
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
10
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
11
11
  <!-- 引入 jQuery -->
12
- <script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
12
+ <script src="{{ url_for('static',filename='js/jquery-1.11.0.min.js') }}" type="text/javascript"></script>
13
13
  <!-- 引入 Bootstrap JS -->
14
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
15
- <link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
14
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
15
+ <link href="{{ url_for('static',filename='css_cdn/font-awesome/4.7.0/css/font-awesome.min.css') }}" rel="stylesheet">
16
16
  <title>funboost web manager</title>
17
17
  <style>
18
18
  body {
@@ -5,14 +5,14 @@
5
5
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
7
  <title>pytho万能分布式函数调度框架</title>
8
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
9
- <link href="http://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
10
- <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css">
8
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
9
+ <link href="{{ url_for('static',filename='css_cdn/font-awesome/4.7.0/css/font-awesome.min.css') }}" rel="stylesheet">
10
+ <link rel="stylesheet" href="{{ url_for('static',filename='css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css') }}">
11
11
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/jquery.mCustomScrollbar.min.css') }}">
12
12
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/custom.css') }}">
13
13
 
14
14
  <!-- 在其他 link 标签后添加 -->
15
- <link href="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/css/select2.min.css" rel="stylesheet">
15
+ <link href="{{ url_for('static',filename='css_cdn/select2/4.0.13/css/select2.min.css') }}" rel="stylesheet">
16
16
  <script src="{{ url_for('static',filename='js/jquery-1.11.0.min.js') }}" type="text/javascript"></script>
17
17
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/jquery/1.11.0/jquery.min.js"></script> -->
18
18
  <!-- 在其他 script 标签后添加 -->
@@ -117,7 +117,7 @@
117
117
 
118
118
 
119
119
 
120
- <script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
120
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
121
121
 
122
122
 
123
123
  <script src="https://cdn.bootcss.com/moment.js/2.24.0/moment-with-locales.js"></script>
@@ -8,19 +8,20 @@
8
8
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
9
  <title>队列操作</title>
10
10
  <!-- Bootstrap CSS -->
11
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
11
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
12
12
  <!-- Tabulator CSS -->
13
- <link href="https://cdn.bootcdn.net/ajax/libs/tabulator/5.5.0/css/tabulator.min.css" rel="stylesheet">
14
- <link href="https://cdn.bootcdn.net/ajax/libs/tabulator/5.5.0/css/tabulator_bootstrap3.min.css" rel="stylesheet">
13
+ <link href="{{ url_for('static',filename='css_cdn/tabulator-tables@5.5.0/tabulator.min.css') }}" rel="stylesheet">
14
+ <link href="{{ url_for('static',filename='css_cdn/tabulator-tables@5.5.0/tabulator_bootstrap3.min.css') }}" rel="stylesheet">
15
+
15
16
 
16
17
  <!-- jQuery -->
17
18
  <script src="{{ url_for('static',filename='js/jquery-1.11.0.min.js') }}" type="text/javascript"></script>
18
19
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.4/jquery.min.js"></script> -->
19
20
  <!-- Bootstrap JS -->
20
- <script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
21
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
21
22
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> -->
22
23
  <!-- Tabulator JS -->
23
- <script type="text/javascript" src="https://unpkg.com/tabulator-tables@5.5.0/dist/js/tabulator.min.js"></script>
24
+ <script type="text/javascript" src="{{ url_for('static',filename='js_cdn/tabulator-tables@5.5.0/dist/js/tabulator.min.js') }}"></script>
24
25
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/tabulator/5.5.0/js/tabulator.min.js"></script> -->
25
26
 
26
27
  <style>
@@ -273,13 +274,14 @@
273
274
  <td>${consumer.hearbeat_datetime_str}</td>
274
275
  <td>${consumer.process_id}</td>
275
276
  <td>${consumer.start_datetime_str}</td>
276
- <td>${consumer.code_filename}</td>,
277
+
277
278
  <td>${consumer.last_x_s_execute_count}</td>
278
279
  <td>${consumer.last_x_s_execute_count_fail}</td>
279
280
  <td>${consumer.last_x_s_avarage_function_spend_time}</td>
280
281
  <td>${consumer.total_consume_count_from_start}</td>
281
282
  <td>${consumer.total_consume_count_from_start_fail}</td>
282
283
  <td>${consumer.avarage_function_spend_time_from_start}</td>
284
+ <td>${consumer.code_filename}</td>,
283
285
  </tr>
284
286
  `;
285
287
  });
@@ -302,13 +304,14 @@
302
304
  <th>最后心跳时间</th>
303
305
  <th>进程ID</th>
304
306
  <th>启动时间</th>
305
- <th>代码文件名</th>
307
+
306
308
  <th>近10秒<br>运行完成<br>消息个数</th>
307
309
  <th>近10秒<br>运行失败<br>消息个数</th>
308
310
  <th>近10秒<br>函数运行<br>平均耗时</th>
309
311
  <th>累计<br>运行完成<br>消息个数</th>
310
312
  <th>累计<br>运行失败<br>消息个数</th>
311
313
  <th>累计<br>函数运行<br>平均耗时</th>
314
+ <th>代码文件名</th>
312
315
  </tr>
313
316
  </thead>
314
317
  <tbody>
@@ -6,15 +6,15 @@
6
6
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
8
  <title>pytho万能分布式函数调度框架</title>
9
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
10
- <link href="http://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
9
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
10
+ <link href="{{ url_for('static',filename='css_cdn/font-awesome/4.7.0/css/font-awesome.min.css') }}" rel="stylesheet">
11
11
  <link rel="stylesheet"
12
- href="https://cdn.bootcss.com/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css">
12
+ href="{{ url_for('static',filename='css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css') }}">
13
13
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/jquery.mCustomScrollbar.min.css') }}">
14
14
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/custom.css') }}">
15
15
 
16
16
  <!-- 在其他 link 标签后添加 -->
17
- <link href="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/css/select2.min.css" rel="stylesheet">
17
+ <link href="{{ url_for('static',filename='css_cdn/select2/4.0.13/css/select2.min.css') }}" rel="stylesheet">
18
18
  <link href="{{ url_for('static',filename='css/content_page_style.css') }}" rel="stylesheet">
19
19
 
20
20
 
@@ -23,7 +23,7 @@
23
23
  <!-- 在其他 script 标签后添加 -->
24
24
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/js/select2.min.js"></script> -->
25
25
  <script src="{{ url_for('static',filename='/js/select2.min.js') }}"></script>
26
- <script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
26
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
27
27
 
28
28
 
29
29
  <script src="{{ url_for('static',filename='js/moment-with-locales.min.js') }}"></script>
@@ -37,9 +37,9 @@
37
37
 
38
38
 
39
39
  <!-- 添加 Tabulator 样式和脚本 -->
40
- <link href="https://unpkg.com/tabulator-tables@5.5.0/dist/css/tabulator.min.css" rel="stylesheet">
41
- <link href="https://unpkg.com/tabulator-tables@5.5.0/dist/css/tabulator_bootstrap3.min.css" rel="stylesheet">
42
- <script type="text/javascript" src="https://unpkg.com/tabulator-tables@5.5.0/dist/js/tabulator.min.js"></script>
40
+ <link href="{{ url_for('static',filename='css_cdn/tabulator-tables@5.5.0/tabulator.min.css') }}" rel="stylesheet">
41
+ <link href="{{ url_for('static',filename='css_cdn/tabulator-tables@5.5.0/tabulator_bootstrap3.min.css') }}" rel="stylesheet">
42
+ <script type="text/javascript" src="{{ url_for('static',filename='js_cdn/tabulator-tables@5.5.0/dist/js/tabulator.min.js') }}"></script>
43
43
 
44
44
  <style>
45
45
 
@@ -6,15 +6,15 @@
6
6
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
8
  <title>pytho万能分布式函数调度框架</title>
9
- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
10
- <link href="http://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
9
+ <link href="{{ url_for('static',filename='css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css') }}" rel="stylesheet">
10
+ <link href="{{ url_for('static',filename='css_cdn/font-awesome/4.7.0/css/font-awesome.min.css') }}" rel="stylesheet">
11
11
  <link rel="stylesheet"
12
- href="https://cdn.bootcss.com/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css">
12
+ href="{{ url_for('static',filename='css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css') }}">
13
13
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/jquery.mCustomScrollbar.min.css') }}">
14
14
  <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/custom.css') }}">
15
15
 
16
16
  <!-- 在其他 link 标签后添加 -->
17
- <link href="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/css/select2.min.css" rel="stylesheet">
17
+ <link href="{{ url_for('static',filename='css_cdn/select2/4.0.13/css/select2.min.css') }}" rel="stylesheet">
18
18
  <link href="{{ url_for('static',filename='css/content_page_style.css') }}" rel="stylesheet">
19
19
 
20
20
 
@@ -23,7 +23,7 @@
23
23
  <!-- 在其他 script 标签后添加 -->
24
24
  <!-- <script src="https://cdn.bootcdn.net/ajax/libs/select2/4.0.13/js/select2.min.js"></script> -->
25
25
  <script src="{{ url_for('static',filename='/js/select2.min.js') }}"></script>
26
- <script src="http://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
26
+ <script src="{{ url_for('static',filename='js_cdn/bootstrap/3.3.7/js/bootstrap.min.js') }}"></script>
27
27
 
28
28
 
29
29
  <script src="{{ url_for('static',filename='js/moment-with-locales.min.js') }}"></script>
@@ -37,9 +37,9 @@
37
37
 
38
38
 
39
39
  <!-- 添加 Tabulator 样式和脚本 -->
40
- <link href="https://unpkg.com/tabulator-tables@5.5.0/dist/css/tabulator.min.css" rel="stylesheet">
41
- <link href="https://unpkg.com/tabulator-tables@5.5.0/dist/css/tabulator_bootstrap3.min.css" rel="stylesheet">
42
- <script type="text/javascript" src="https://unpkg.com/tabulator-tables@5.5.0/dist/js/tabulator.min.js"></script>
40
+ <link href="{{ url_for('static',filename='css_cdn/tabulator-tables@5.5.0/tabulator.min.css') }}" rel="stylesheet">
41
+ <link href="{{ url_for('static',filename='css_cdn/tabulator-tables@5.5.0/tabulator_bootstrap3.min.css') }}" rel="stylesheet">
42
+ <script type="text/javascript" src="{{ url_for('static',filename='js_cdn/tabulator-tables@5.5.0/dist/js/tabulator.min.js') }}"></script>
43
43
 
44
44
  <style>
45
45
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: funboost
3
- Version: 48.4
3
+ Version: 48.6
4
4
  Summary: pip install funboost,python全功能分布式函数调度框架,funboost的功能是全面性重量级,用户能想得到的功能99%全都有;funboost的使用方式是轻量级,只有@boost一行代码需要写。支持python所有类型的并发模式和一切知名消息队列中间件,支持如 celery dramatiq等框架整体作为funboost中间件,python函数加速器,框架包罗万象,用户能想到的控制功能全都有。一统编程思维,兼容50% python业务场景,适用范围广。只需要一行代码即可分布式执行python一切函数,funboost web manager 方便查看和管理消费函数;99%用过funboost的pythoner 感受是 简易 方便 强劲 强大,相见恨晚
5
5
  Home-page: https://github.com/ydf0509/funboost
6
6
  Author: bfzs
@@ -27,29 +27,29 @@ Classifier: Programming Language :: Python :: 3 :: Only
27
27
  Classifier: Topic :: Software Development :: Libraries
28
28
  Description-Content-Type: text/markdown
29
29
  License-File: LICENSE
30
- Requires-Dist: nb-log >=13.2
31
- Requires-Dist: nb-libs >=1.8
32
- Requires-Dist: nb-time >=2.3
33
- Requires-Dist: pymongo >=4.6.3
34
- Requires-Dist: AMQPStorm ==2.10.6
35
- Requires-Dist: rabbitpy ==2.0.1
36
- Requires-Dist: decorator ==5.1.1
37
- Requires-Dist: tomorrow3 ==1.1.0
38
- Requires-Dist: persist-queue >=0.4.2
39
- Requires-Dist: apscheduler >=3.10.1
30
+ Requires-Dist: nb_log>=13.2
31
+ Requires-Dist: nb_libs>=1.8
32
+ Requires-Dist: nb_time>=2.4
33
+ Requires-Dist: pymongo>=4.6.3
34
+ Requires-Dist: AMQPStorm==2.10.6
35
+ Requires-Dist: rabbitpy==2.0.1
36
+ Requires-Dist: decorator==5.1.1
37
+ Requires-Dist: tomorrow3==1.1.0
38
+ Requires-Dist: persist-queue>=0.4.2
39
+ Requires-Dist: apscheduler<4.0.0,>=3.10.1
40
40
  Requires-Dist: pikav0
41
41
  Requires-Dist: pikav1
42
42
  Requires-Dist: redis2
43
43
  Requires-Dist: redis3
44
44
  Requires-Dist: redis5
45
45
  Requires-Dist: redis
46
- Requires-Dist: setuptools-rust
47
- Requires-Dist: fabric2 >=2.6.0
48
- Requires-Dist: nb-filelock
46
+ Requires-Dist: setuptools_rust
47
+ Requires-Dist: fabric2>=2.6.0
48
+ Requires-Dist: nb_filelock
49
49
  Requires-Dist: pysnooper
50
50
  Requires-Dist: deprecated
51
51
  Requires-Dist: cryptography
52
- Requires-Dist: auto-run-on-remote
52
+ Requires-Dist: auto_run_on_remote
53
53
  Requires-Dist: frozenlist
54
54
  Requires-Dist: fire
55
55
  Requires-Dist: pydantic
@@ -57,66 +57,66 @@ Requires-Dist: orjson
57
57
  Requires-Dist: async-timeout
58
58
  Requires-Dist: typing-extensions
59
59
  Provides-Extra: all
60
- Requires-Dist: confluent-kafka ==1.7.0 ; extra == 'all'
61
- Requires-Dist: celery ; extra == 'all'
62
- Requires-Dist: flower ; extra == 'all'
63
- Requires-Dist: nameko ==2.14.1 ; extra == 'all'
64
- Requires-Dist: sqlalchemy ==1.4.13 ; extra == 'all'
65
- Requires-Dist: sqlalchemy-utils ==0.36.1 ; extra == 'all'
66
- Requires-Dist: dramatiq ==1.14.2 ; extra == 'all'
67
- Requires-Dist: huey ==2.4.5 ; extra == 'all'
68
- Requires-Dist: rq ==1.15.0 ; extra == 'all'
69
- Requires-Dist: kombu ; extra == 'all'
70
- Requires-Dist: eventlet ==0.33.3 ; extra == 'all'
71
- Requires-Dist: gevent ==22.10.2 ; extra == 'all'
72
- Requires-Dist: elasticsearch ; extra == 'all'
73
- Requires-Dist: gnsq ==1.0.1 ; extra == 'all'
74
- Requires-Dist: psutil ; extra == 'all'
75
- Requires-Dist: peewee ==3.17.3 ; extra == 'all'
76
- Requires-Dist: nats-python ; extra == 'all'
77
- Requires-Dist: aiohttp ==3.8.3 ; extra == 'all'
78
- Requires-Dist: paho-mqtt ; extra == 'all'
79
- Requires-Dist: rocketmq ; extra == 'all'
80
- Requires-Dist: zmq ; extra == 'all'
81
- Requires-Dist: pyzmq ; extra == 'all'
82
- Requires-Dist: kafka-python ==2.0.2 ; extra == 'all'
83
- Requires-Dist: flask ; extra == 'all'
84
- Requires-Dist: flask-bootstrap ; extra == 'all'
85
- Requires-Dist: flask-wtf ; extra == 'all'
86
- Requires-Dist: wtforms ; extra == 'all'
87
- Requires-Dist: flask-login ; extra == 'all'
88
- Requires-Dist: pulsar-client ==3.1.0 ; (python_version >= "3.7") and extra == 'all'
89
- Provides-Extra: extra_brokers
90
- Requires-Dist: confluent-kafka ==1.7.0 ; extra == 'extra_brokers'
91
- Requires-Dist: celery ; extra == 'extra_brokers'
92
- Requires-Dist: flower ; extra == 'extra_brokers'
93
- Requires-Dist: nameko ==2.14.1 ; extra == 'extra_brokers'
94
- Requires-Dist: sqlalchemy ==1.4.13 ; extra == 'extra_brokers'
95
- Requires-Dist: sqlalchemy-utils ==0.36.1 ; extra == 'extra_brokers'
96
- Requires-Dist: dramatiq ==1.14.2 ; extra == 'extra_brokers'
97
- Requires-Dist: huey ==2.4.5 ; extra == 'extra_brokers'
98
- Requires-Dist: rq ==1.15.0 ; extra == 'extra_brokers'
99
- Requires-Dist: kombu ; extra == 'extra_brokers'
100
- Requires-Dist: eventlet ==0.33.3 ; extra == 'extra_brokers'
101
- Requires-Dist: gevent ==22.10.2 ; extra == 'extra_brokers'
102
- Requires-Dist: elasticsearch ; extra == 'extra_brokers'
103
- Requires-Dist: gnsq ==1.0.1 ; extra == 'extra_brokers'
104
- Requires-Dist: psutil ; extra == 'extra_brokers'
105
- Requires-Dist: peewee ==3.17.3 ; extra == 'extra_brokers'
106
- Requires-Dist: nats-python ; extra == 'extra_brokers'
107
- Requires-Dist: aiohttp ==3.8.3 ; extra == 'extra_brokers'
108
- Requires-Dist: paho-mqtt ; extra == 'extra_brokers'
109
- Requires-Dist: rocketmq ; extra == 'extra_brokers'
110
- Requires-Dist: zmq ; extra == 'extra_brokers'
111
- Requires-Dist: pyzmq ; extra == 'extra_brokers'
112
- Requires-Dist: kafka-python ==2.0.2 ; extra == 'extra_brokers'
113
- Requires-Dist: pulsar-client ==3.1.0 ; (python_version >= "3.7") and extra == 'extra_brokers'
60
+ Requires-Dist: confluent_kafka==1.7.0; extra == "all"
61
+ Requires-Dist: pulsar-client==3.1.0; python_version >= "3.7" and extra == "all"
62
+ Requires-Dist: celery; extra == "all"
63
+ Requires-Dist: flower; extra == "all"
64
+ Requires-Dist: nameko==2.14.1; extra == "all"
65
+ Requires-Dist: sqlalchemy==1.4.13; extra == "all"
66
+ Requires-Dist: sqlalchemy_utils==0.36.1; extra == "all"
67
+ Requires-Dist: dramatiq==1.14.2; extra == "all"
68
+ Requires-Dist: huey==2.4.5; extra == "all"
69
+ Requires-Dist: rq==1.15.0; extra == "all"
70
+ Requires-Dist: kombu; extra == "all"
71
+ Requires-Dist: eventlet==0.33.3; extra == "all"
72
+ Requires-Dist: gevent==22.10.2; extra == "all"
73
+ Requires-Dist: elasticsearch; extra == "all"
74
+ Requires-Dist: gnsq==1.0.1; extra == "all"
75
+ Requires-Dist: psutil; extra == "all"
76
+ Requires-Dist: peewee==3.17.3; extra == "all"
77
+ Requires-Dist: nats-python; extra == "all"
78
+ Requires-Dist: aiohttp==3.8.3; extra == "all"
79
+ Requires-Dist: paho-mqtt; extra == "all"
80
+ Requires-Dist: rocketmq; extra == "all"
81
+ Requires-Dist: zmq; extra == "all"
82
+ Requires-Dist: pyzmq; extra == "all"
83
+ Requires-Dist: kafka-python==2.0.2; extra == "all"
84
+ Requires-Dist: flask; extra == "all"
85
+ Requires-Dist: flask_bootstrap; extra == "all"
86
+ Requires-Dist: flask_wtf; extra == "all"
87
+ Requires-Dist: wtforms; extra == "all"
88
+ Requires-Dist: flask_login; extra == "all"
89
+ Provides-Extra: extra-brokers
90
+ Requires-Dist: confluent_kafka==1.7.0; extra == "extra-brokers"
91
+ Requires-Dist: pulsar-client==3.1.0; python_version >= "3.7" and extra == "extra-brokers"
92
+ Requires-Dist: celery; extra == "extra-brokers"
93
+ Requires-Dist: flower; extra == "extra-brokers"
94
+ Requires-Dist: nameko==2.14.1; extra == "extra-brokers"
95
+ Requires-Dist: sqlalchemy==1.4.13; extra == "extra-brokers"
96
+ Requires-Dist: sqlalchemy_utils==0.36.1; extra == "extra-brokers"
97
+ Requires-Dist: dramatiq==1.14.2; extra == "extra-brokers"
98
+ Requires-Dist: huey==2.4.5; extra == "extra-brokers"
99
+ Requires-Dist: rq==1.15.0; extra == "extra-brokers"
100
+ Requires-Dist: kombu; extra == "extra-brokers"
101
+ Requires-Dist: eventlet==0.33.3; extra == "extra-brokers"
102
+ Requires-Dist: gevent==22.10.2; extra == "extra-brokers"
103
+ Requires-Dist: elasticsearch; extra == "extra-brokers"
104
+ Requires-Dist: gnsq==1.0.1; extra == "extra-brokers"
105
+ Requires-Dist: psutil; extra == "extra-brokers"
106
+ Requires-Dist: peewee==3.17.3; extra == "extra-brokers"
107
+ Requires-Dist: nats-python; extra == "extra-brokers"
108
+ Requires-Dist: aiohttp==3.8.3; extra == "extra-brokers"
109
+ Requires-Dist: paho-mqtt; extra == "extra-brokers"
110
+ Requires-Dist: rocketmq; extra == "extra-brokers"
111
+ Requires-Dist: zmq; extra == "extra-brokers"
112
+ Requires-Dist: pyzmq; extra == "extra-brokers"
113
+ Requires-Dist: kafka-python==2.0.2; extra == "extra-brokers"
114
114
  Provides-Extra: flask
115
- Requires-Dist: flask ; extra == 'flask'
116
- Requires-Dist: flask-bootstrap ; extra == 'flask'
117
- Requires-Dist: flask-wtf ; extra == 'flask'
118
- Requires-Dist: wtforms ; extra == 'flask'
119
- Requires-Dist: flask-login ; extra == 'flask'
115
+ Requires-Dist: flask; extra == "flask"
116
+ Requires-Dist: flask_bootstrap; extra == "flask"
117
+ Requires-Dist: flask_wtf; extra == "flask"
118
+ Requires-Dist: wtforms; extra == "flask"
119
+ Requires-Dist: flask_login; extra == "flask"
120
120
 
121
121
 
122
122
 
@@ -156,7 +156,7 @@ python万能分布式函数调度框架,支持5种并发模式,30+种消息
156
156
  但是funboost完全不会这样,加上或去掉@boost装饰器,对你的项目影响为0,用户照常使用,
157
157
  所以用户可以对任意项目,任意时候,引入使用funboost或者去掉使用funboost,代码组织形式不需要发生变化.
158
158
 
159
- 通过funboost web 管理系统,支持全面 查看 监控 管理 funboost的任务消费。
159
+ 通过funboost web manager 管理系统,支持全面 查看 监控 管理 funboost的任务消费。
160
160
  </pre>
161
161
 
162
162
  ### 框架评价
@@ -530,7 +530,7 @@ if __name__ == "__main__":
530
530
  <a href="https://imgse.com/i/pkFkCUe"><img src="https://s21.ax1x.com/2024/04/29/pkFkCUe.png" alt="pkFkCUe.png" border="0" /></a>
531
531
 
532
532
 
533
- funboost web 截图:
533
+ funboost web manager 截图:
534
534
 
535
535
  函数消费结果:可查看和搜索函数实时消费状态和结果
536
536
  [![pEJCffK.png](https://s21.ax1x.com/2025/03/04/pEJCffK.png)](https://imgse.com/i/pEJCffK)
@@ -1,4 +1,4 @@
1
- funboost/__init__.py,sha256=bqT5DmTGJ5vCQydOOzOHXb-GiGy5S_Y4GB5LvnN9vlc,3991
1
+ funboost/__init__.py,sha256=GCKivqteVUUvbAEGsltebk3O5IOIkfRcrM9vqYxVezw,3993
2
2
  funboost/__init__old.py,sha256=9Kv3cPLnPkbzMRnuJFVkPsuDdx1CdcSIuITkpdncZSc,20382
3
3
  funboost/__main__.py,sha256=-6Nogi666Y0LN8fVm3JmHGTOk8xEGWvotW_GDbSaZME,1065
4
4
  funboost/constant.py,sha256=bsXk4UhaOvWlaIr160upSh1jPd7ckG1r9Wu-nMYg6yU,8352
@@ -26,16 +26,17 @@ funboost/concurrent_pool/custom_evenlet_pool_executor.py,sha256=tu8Og-uIt5VWqGER
26
26
  funboost/concurrent_pool/custom_gevent_pool_executor.py,sha256=FLcEwEJgFtaEPzH-WCFHtCdEUOTeK0dLSL_oNBcXQW8,5429
27
27
  funboost/concurrent_pool/custom_threadpool_executor.py,sha256=hYgRYqFoCvplyQFTzw57P-oRcmO6ZuxW5qB3U1SPZks,12084
28
28
  funboost/concurrent_pool/custom_threadpool_executor000.py,sha256=jJLXy3h-bELap6nZA6yLtdozzTWcvCtZ7IY6MTqLEAM,9317
29
- funboost/concurrent_pool/fixed_thread_pool.py,sha256=JzaqjuHn6ffo1gZRVJEy5Te5NdCJt7heTmsVZT_AiBg,1609
30
- funboost/concurrent_pool/flexible_thread_pool.py,sha256=-xvRYcSzh-oNVtDkEsMreRPW6sadQ6PFsN35XzLOdAU,6040
29
+ funboost/concurrent_pool/fixed_thread_pool.py,sha256=QHJufg4jug6nkla2g5lc_5FVd_egKiNquFACRYeg6uE,1626
30
+ funboost/concurrent_pool/flexible_thread_pool.py,sha256=Agv2W8CgeG5SXlAzWMwMtai8gP7Lm1Sb4wiM4gk9vao,6040
31
31
  funboost/concurrent_pool/pool_commons.py,sha256=oJjVeJyUfN7ErYbm7tXXHn2rRzASxLufmSUb9c14IGQ,866
32
32
  funboost/concurrent_pool/single_thread_executor.py,sha256=rRrqDGmJxxtKBUxigUl1WATLXTGODpmtNoVOF8vRt_w,468
33
33
  funboost/concurrent_pool/backup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  funboost/concurrent_pool/backup/async_pool_executor0223.py,sha256=RVUZiylUvpTm6Um0PHAdDD2s7RVRXz8gHykYfktqLdI,9578
35
35
  funboost/concurrent_pool/backup/async_pool_executor_back.py,sha256=KL6zEQaa1KkZOlAO85mCC1gwLm-YC5Ghn21IUom0UKM,9598
36
36
  funboost/concurrent_pool/backup/async_pool_executor_janus.py,sha256=OHMWJ9l3EYTpPpcrPrGGKd4K0tmQ2PN8HiX0Dta0EOo,5728
37
+ funboost/concurrent_pool/backup/grok_async_pool.py,sha256=3DgyB2aT0iHakb-pxd51WRKGIF7EKNNcX_ogDTF2hik,5825
37
38
  funboost/consumers/__init__.py,sha256=ZXY_6Kut1VYNQiF5aWEgIWobsW1ht9YUP0TdRZRWFqI,126
38
- funboost/consumers/base_consumer.py,sha256=JxdimvcQ8oZrwVUKEdtNAW8d-iN7I8VurxS0ywH5xuA,84886
39
+ funboost/consumers/base_consumer.py,sha256=M0XtAfG6dTp0u3WOpMI4xi7Y7wYkdPWQhITPeBYbawg,84898
39
40
  funboost/consumers/celery_consumer.py,sha256=nQpSkzPBJ4bRpxn4i9ms0axrJiq9RWhb4lG2nAdCIig,9254
40
41
  funboost/consumers/confirm_mixin.py,sha256=5xC9AAQr_MY4tbSed8U-M6tOVmh69Qv9X0ld0JLT9Tk,6185
41
42
  funboost/consumers/dramatiq_consumer.py,sha256=ozmeAfeF0U-YNYHK4suQB0N264h5AZdfMH0O45Mh-8A,2229
@@ -96,7 +97,7 @@ funboost/core/func_params_model.py,sha256=X4ibmg9lmv7kRg2-ym__HicCGK5VJns0DedVxL
96
97
  funboost/core/function_result_status_config.py,sha256=PyjqAQOiwsLt28sRtH-eYRjiI3edPFO4Nde0ILFRReE,1764
97
98
  funboost/core/function_result_status_saver.py,sha256=oG8dEK_APy6FL5oqQI0RPU6OLuWqp4Gv09hwOxPvvNs,9293
98
99
  funboost/core/helper_funs.py,sha256=SsMa7A3iJyLek6v1qRK02kINebDp6kuAmlYkrYLXwQ0,2369
99
- funboost/core/kill_remote_task.py,sha256=MZ5vWLGt6SxyN76h5Lf_id9tyVUzjR-qXNyJwXaGlZY,8129
100
+ funboost/core/kill_remote_task.py,sha256=lfclwtNhMDGLKX2UCpK_wyhnKPKkoxCZxesRA6KHOrc,8186
100
101
  funboost/core/lazy_impoter.py,sha256=yyJqwmbJziMfRTESn9magqso-_8ppl8yzHFCS5qzxkI,5104
101
102
  funboost/core/loggers.py,sha256=uy5mFLIUvKaVdJZLi6THyxqeuOmp9XEOKrH1Yci0zUM,2354
102
103
  funboost/core/msg_result_getter.py,sha256=6zRZaoobYRqII7sb8XcbVX7RCWiX5JAU0lXFtd_TiFc,8872
@@ -111,11 +112,12 @@ funboost/factories/__init__.py,sha256=s7kKKjR1HU5eMjPD6r5b-SXTVMo1zBp2JjOAtkyt5Y
111
112
  funboost/factories/broker_kind__publsiher_consumer_type_map.py,sha256=-kKhV65KnRf86b353PJuaEMXMolfV4B2CtTF1wD1kFQ,10189
112
113
  funboost/factories/consumer_factory.py,sha256=EaAw3OZJkGepkQxKkDvMshHjIVOQva_N6nUEhLO4JwU,1500
113
114
  funboost/factories/publisher_factotry.py,sha256=4651sxnbIAi6sFEUQdlUuv8UkbMQIE_Pbzm-1DimAs8,2535
114
- funboost/function_result_web/app.py,sha256=HQC5B67H57LlPCnoQhffwVm1cCL6MXJBr01WRIFrNhk,9681
115
+ funboost/function_result_web/app.py,sha256=x8iQXgZQ3vPsg_2eQTyGxGQt4gGFrzgGS3xOh3Ghlyw,10076
115
116
  funboost/function_result_web/functions.py,sha256=c9KBiSMZbAhPJSEJsGO-Bw6on7HikqTn-1gNsGwxssk,7977
116
- funboost/function_result_web/__pycache__/app.cpython-37.pyc,sha256=xJHXG6sepjlbLM2RnOHnP7VVMUC6nC6mVKJeAU__Pi0,7850
117
+ funboost/function_result_web/__pycache__/app.cpython-37.pyc,sha256=e5CUQuEs3NcrLqgeA3S2X57EbbJVepdF3kyYaMxyhj4,7850
118
+ funboost/function_result_web/__pycache__/app.cpython-39.pyc,sha256=2OYV84KDDsXsqcF4moy_Y_IY8EAxJq1oxMJYj1Aeo3Y,8314
117
119
  funboost/function_result_web/__pycache__/functions.cpython-37.pyc,sha256=nuuCYaGB70NR17uDq11HriUP8QnZ1cSxu1PTiFYmfzE,4123
118
- funboost/function_result_web/__pycache__/functions.cpython-39.pyc,sha256=YIFzI6WSDgIpu1gcpReZLaVZ5sOgj-MSJ90Z26NJxxA,4194
120
+ funboost/function_result_web/__pycache__/functions.cpython-39.pyc,sha256=Hu-PbDvSIGQLydFIrntmqgtuyZs_WiAGW8VID783ZUQ,4194
119
121
  funboost/function_result_web/static/assets/css/custom.css,sha256=3brvjy2aBOTIXcTUK4NV6dX5wFRqx6K2aLu_jQn63jM,7674
120
122
  funboost/function_result_web/static/assets/css/jquery.mCustomScrollbar.min.css,sha256=JHGEmB629pipTkMag9aMaw32I8zle24p3FpsEeI6oZU,42839
121
123
  funboost/function_result_web/static/assets/img/user.jpg,sha256=Vz1A99gho-0bKV67Pt2s_zT25mWhNcPe0mWG-0mRl9U,23610
@@ -123,6 +125,23 @@ funboost/function_result_web/static/assets/js/custom.js,sha256=-BDtMX9tRvSFkJr66
123
125
  funboost/function_result_web/static/assets/js/jquery.mCustomScrollbar.concat.min.js,sha256=WrXxn5vUpN3PFCNfwWhO7-fPv7wz8KH85mGxPeQwkr4,45483
124
126
  funboost/function_result_web/static/css/content_page_style.css,sha256=TjgBS-56HVpqC4djtvrJ0bCtttW6GOVuZs5TIDm5sdo,920
125
127
  funboost/function_result_web/static/css/style.css,sha256=780a8qm6IrrbawetpIGDp3l8BUoSQvD1R86_BGAhhbU,11065
128
+ funboost/function_result_web/static/css_cdn/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css,sha256=ymIOMVPkZ3GHvDrEmCk9rjC51rP6bDCL481xhqxWFGY,7789
129
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/css/font-awesome.min.css,sha256=sTnyQ8M6MgmLmP4QTSBw9lZi1HyTy97puArJ6k4GCDA,31002
130
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/FontAwesome.otf,sha256=RE3UNmYV_8ShbQErL6kBNwZdPMtBD6b9Xk3de15P_NU,134808
131
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.eot,sha256=e_yrbbmdXPvxcFygU23ceFhUMsxfpBu9etDwCQM7KXk,165742
132
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.svg,sha256=rWFXkmwWIrpOHQPUePFUE2hSS_xG9R5C_g2UX37zI-Q,444379
133
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf,sha256=qljzPyOaD7AvXHpsRcBD16msmgkzNYBmlOzW1O3A1qg,165548
134
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.woff,sha256=ugxZ3rVFD1y0Gz-TYJ7i0NmVQVh33foiPoqKdTNHTwc,98024
135
+ funboost/function_result_web/static/css_cdn/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2,sha256=Kt78vAQefRj88tQXh53FoJmXqmTWdbejxLbOM9oT8_4,77160
136
+ funboost/function_result_web/static/css_cdn/select2/4.0.13/css/select2.min.css,sha256=BE7-p4IIN2MCqtOAiqq988L3vdgLqdVcng5NO6p6OQg,14965
137
+ funboost/function_result_web/static/css_cdn/tabulator-tables@5.5.0/tabulator.min.css,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
+ funboost/function_result_web/static/css_cdn/tabulator-tables@5.5.0/tabulator_bootstrap3.min.css,sha256=PN99iKXpGY_OTuXmfFHPH3-fG2e1r1wnP5nC3v_PHfw,28865
139
+ funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/css/bootstrap.min.css,sha256=Wj2MBXhUhdNu5clNRoHlsdnkuUxb6LW9ew8xaP_xvZo,121205
140
+ funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot,sha256=E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc,20127
141
+ funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg,sha256=QvYGWdJlwaPDD5-kKry7Vr1KU69Ng9MW1t16NpA8Q-U,108738
142
+ funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf,sha256=45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY,45404
143
+ funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff,sha256=omOU9-3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I,23424
144
+ funboost/function_result_web/static/css_cdn/twitter-bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2,sha256=_hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw,18028
126
145
  funboost/function_result_web/static/images/bg.jpg,sha256=qOk3I6ElZHnigPWaIk_Qq_SCNAdi8N5OI_hdNiIhNXQ,1153168
127
146
  funboost/function_result_web/static/images/favicon.ico,sha256=aK1YtySvT3_WmgY79Ln_JM7NQQY29duYLfKtZJml3Go,4286
128
147
  funboost/function_result_web/static/images/password.png,sha256=0jRivuQAhWKtkS73p8f_KiLy3D39_flqVTrpFKJPNqk,546
@@ -133,16 +152,18 @@ funboost/function_result_web/static/js/echarts.min.js,sha256=VMlq3MWV-1sK2_KCdtO
133
152
  funboost/function_result_web/static/js/jquery-1.11.0.min.js,sha256=ryQZ3RXgnqkTz-lNEw-YcEhnMuV3ZODwLqOEbyBBRu4,96383
134
153
  funboost/function_result_web/static/js/moment-with-locales.min.js,sha256=AdQN98MVZs44Eq2yTwtoKufhnU-uZ7v2kXnD5vqzZVo,336451
135
154
  funboost/function_result_web/static/js/select2.min.js,sha256=16c3mSb2OxHyGKYVRD8ATQP8SZvBuvUNQUKxsqdsN3I,70852
136
- funboost/function_result_web/templates/about.html,sha256=7BHu3oZtIRA5UVMQeovDwihCOPRITZFK_bortpn0TgE,2846
137
- funboost/function_result_web/templates/conusme_speed.html,sha256=_6XMOYTPbPsqxfIvFsceA8ewaYPXSaSXvE0Vo0IvM80,9024
138
- funboost/function_result_web/templates/fun_result_table.html,sha256=vgsnblfFn6ZMfJUW9VM7ipXo7XmUCxoKS3pJhVwPj3k,18872
139
- funboost/function_result_web/templates/index.html,sha256=NYU7OVWj4jo9av0GIDGMZnF1hE2FnJFFtubTph3uHew,7202
140
- funboost/function_result_web/templates/index_backup.html,sha256=0sxuOP7_spupjsYe9YtGpYcBa5jz26NMWO0hjuGu5Uo,19969
155
+ funboost/function_result_web/static/js_cdn/bootstrap/3.3.7/js/bootstrap.min.js,sha256=NkYOSU5MYoRDr97UCydDte3ppKdvtPe57yNFzH5Z_WQ,37051
156
+ funboost/function_result_web/static/js_cdn/tabulator-tables@5.5.0/dist/js/tabulator.min.js,sha256=pY8YQPpl60XWlUY9l_Gq5ZZ8YaBqDEEkeXsbgByWFy8,390786
157
+ funboost/function_result_web/templates/about.html,sha256=FPuQydC3fQJcxJR0KRZjPFIaE9b0yEHQ8PFGt4rhxxw,2855
158
+ funboost/function_result_web/templates/conusme_speed.html,sha256=bir1OP6pLrSDRJDQQNEaQ7SPLkY6tOiOQ5FBcfRllH4,9100
159
+ funboost/function_result_web/templates/fun_result_table.html,sha256=3GQVXR5fkdBt_ivA6bPpL7DBkWymFWdZxCbzxdlAiDw,18948
160
+ funboost/function_result_web/templates/index.html,sha256=e4559iUlQmMrwuxhXNcQbdQE_q9O3G4rs_by3OiM0dg,7268
161
+ funboost/function_result_web/templates/index_backup.html,sha256=qwUWHyQFrbSVSnZUjU5E9Zxy6a9mEJF_BdH0HeUxXOU,20045
141
162
  funboost/function_result_web/templates/index_不可折叠.html,sha256=akzwfqVDqn1I4Y1DwkDoovnMRU7GbZKoSnwbiijKV2k,4828
142
163
  funboost/function_result_web/templates/login.html,sha256=q37dj7O0LeyiV38Zd5P1Qn_qmhjdFomuYTRY1Yk48Bo,2007
143
- funboost/function_result_web/templates/queue_op.html,sha256=_MMbFraiUYvKX2r4huihzTuWdMXZNjzBv3fVeuqrsfQ,25133
144
- funboost/function_result_web/templates/running_consumer_by_ip.html,sha256=vcAjwdScEaaBl41urQ4dQSXmU8n6vTgkr8GfF8L5YhA,10078
145
- funboost/function_result_web/templates/running_consumer_by_queue_name.html,sha256=Gm1XG2Ala1cSpYWBY8zZcu4rqJ7A-JOpHY-z4iaLUVg,10131
164
+ funboost/function_result_web/templates/queue_op.html,sha256=BOhAhxnnImslq4kvI0pRAVuf4pWXDxQv58AJwicopUY,25303
165
+ funboost/function_result_web/templates/running_consumer_by_ip.html,sha256=h_W5HsL4gvKpNwj6p_kNLjOFgSVDJnbBV69wz3waS5w,10210
166
+ funboost/function_result_web/templates/running_consumer_by_queue_name.html,sha256=J5wBFskuFD74LprofXKFc7l-9tnQRi01TZIJ9CQtTkQ,10263
146
167
  funboost/publishers/__init__.py,sha256=xqBHlvsJQVPfbdvP84G0LHmVB7-pFBS7vDnX1Uo9pVY,131
147
168
  funboost/publishers/base_publisher.py,sha256=3KAdvkHidkM_qTmNhZlZ_e8a73rsdObZZ5ofNceKkg8,17998
148
169
  funboost/publishers/celery_publisher.py,sha256=uc9N1uLW74skUCw8dsnvxORM2O3cy4SiI7tUZRmvkHA,2336
@@ -301,9 +322,9 @@ funboost/utils/pysnooper_ydf/utils.py,sha256=evSmGi_Oul7vSP47AJ0DLjFwoCYCfunJZ1m
301
322
  funboost/utils/pysnooper_ydf/variables.py,sha256=QejRDESBA06KG9OH4sBT4J1M55eaU29EIHg8K_igaXo,3693
302
323
  funboost/utils/times/__init__.py,sha256=Y4bQD3SIA_E7W2YvHq2Qdi0dGM4H2DxyFNdDOuFOq1w,2417
303
324
  funboost/utils/times/version.py,sha256=11XfnZVVzOgIhXXdeN_mYfdXThfrsbQHpA0wCjz-hpg,17
304
- funboost-48.4.dist-info/LICENSE,sha256=9EPP2ktG_lAPB8PjmWV-c9BiaJHc_FP6pPLcUrUwx0E,11562
305
- funboost-48.4.dist-info/METADATA,sha256=Za1GX9Hn2babjJ_YbyBKYiqekXJzBQ_4wyiA7DacOMA,34173
306
- funboost-48.4.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
307
- funboost-48.4.dist-info/entry_points.txt,sha256=yMSSAGRzRAAhGyNNQHw24MooKlDZsaJ499_D6fPl58A,96
308
- funboost-48.4.dist-info/top_level.txt,sha256=K8WuKnS6MRcEWxP1NvbmCeujJq6TEfbsB150YROlRw0,9
309
- funboost-48.4.dist-info/RECORD,,
325
+ funboost-48.6.dist-info/LICENSE,sha256=9EPP2ktG_lAPB8PjmWV-c9BiaJHc_FP6pPLcUrUwx0E,11562
326
+ funboost-48.6.dist-info/METADATA,sha256=EK2lk6q2cQBBVhqnQ6pbNHu1Hg_dVktvT8HeeftMZGU,34095
327
+ funboost-48.6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
328
+ funboost-48.6.dist-info/entry_points.txt,sha256=yMSSAGRzRAAhGyNNQHw24MooKlDZsaJ499_D6fPl58A,96
329
+ funboost-48.6.dist-info/top_level.txt,sha256=K8WuKnS6MRcEWxP1NvbmCeujJq6TEfbsB150YROlRw0,9
330
+ funboost-48.6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5