locust 2.32.9.dev10__py3-none-any.whl → 2.32.10__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- locust/_version.py +2 -6
- {locust-2.32.9.dev10.dist-info → locust-2.32.10.dist-info}/METADATA +26 -31
- {locust-2.32.9.dev10.dist-info → locust-2.32.10.dist-info}/RECORD +18 -18
- {locust-2.32.9.dev10.dist-info → locust-2.32.10.dist-info}/WHEEL +1 -1
- locust-2.32.10.dist-info/entry_points.txt +2 -0
- uv.lock +2381 -0
- locust-2.32.9.dev10.dist-info/entry_points.txt +0 -3
- poetry.lock +0 -2534
- {locust-2.32.9.dev10.dist-info → locust-2.32.10.dist-info/licenses}/LICENSE +0 -0
locust/_version.py
CHANGED
@@ -3,7 +3,6 @@
|
|
3
3
|
TYPE_CHECKING = False
|
4
4
|
if TYPE_CHECKING:
|
5
5
|
from typing import Tuple, Union
|
6
|
-
|
7
6
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
8
7
|
else:
|
9
8
|
VERSION_TUPLE = object
|
@@ -13,8 +12,5 @@ __version__: str
|
|
13
12
|
__version_tuple__: VERSION_TUPLE
|
14
13
|
version_tuple: VERSION_TUPLE
|
15
14
|
|
16
|
-
|
17
|
-
|
18
|
-
version = __version__
|
19
|
-
__version_tuple__ = (2, 32, 9, "dev10")
|
20
|
-
version_tuple = __version_tuple__
|
15
|
+
__version__ = version = '2.32.10'
|
16
|
+
__version_tuple__ = version_tuple = (2, 32, 10)
|
@@ -1,12 +1,14 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: locust
|
3
|
-
Version: 2.32.
|
3
|
+
Version: 2.32.10
|
4
4
|
Summary: Developer-friendly load testing framework
|
5
|
-
|
5
|
+
Project-URL: homepage, https://locust.io/
|
6
|
+
Project-URL: repository, https://github.com/locustio/locust
|
7
|
+
Project-URL: documentation, https://docs.locust.io/
|
8
|
+
Author: Jonatan Heyman, Lars Holmberg
|
9
|
+
Maintainer: Lars Holmberg, Jonatan Heyman, Andrew Baldwin
|
6
10
|
License: MIT
|
7
|
-
|
8
|
-
Maintainer: Lars Holmberg
|
9
|
-
Requires-Python: >=3.9
|
11
|
+
License-File: LICENSE
|
10
12
|
Classifier: Development Status :: 5 - Production/Stable
|
11
13
|
Classifier: Intended Audience :: Developers
|
12
14
|
Classifier: Intended Audience :: System Administrators
|
@@ -22,30 +24,24 @@ Classifier: Programming Language :: Python :: 3.13
|
|
22
24
|
Classifier: Topic :: Software Development :: Testing
|
23
25
|
Classifier: Topic :: Software Development :: Testing :: Traffic Generation
|
24
26
|
Classifier: Topic :: System :: Distributed Computing
|
25
|
-
Requires-
|
26
|
-
Requires-Dist:
|
27
|
-
Requires-Dist:
|
28
|
-
Requires-Dist:
|
29
|
-
Requires-Dist: flask
|
30
|
-
Requires-Dist: gevent
|
31
|
-
Requires-Dist: gevent
|
32
|
-
Requires-Dist: geventhttpclient
|
33
|
-
Requires-Dist: msgpack
|
34
|
-
Requires-Dist: psutil
|
35
|
-
Requires-Dist: pywin32
|
36
|
-
Requires-Dist: pyzmq
|
37
|
-
Requires-Dist: requests
|
38
|
-
Requires-Dist: requests
|
39
|
-
Requires-Dist: setuptools
|
40
|
-
Requires-Dist: tomli
|
41
|
-
Requires-Dist:
|
42
|
-
|
43
|
-
Project-URL: Help/Questions, https://github.com/orgs/locustio/discussions/
|
44
|
-
Project-URL: Issue Tracker, https://github.com/locustio/locust/issues
|
45
|
-
Project-URL: Repository, https://github.com/locustio/locust
|
46
|
-
Project-URL: Stack Overflow, https://stackoverflow.com/questions/tagged/locust
|
47
|
-
Project-URL: Slack, https://locustio.slack.com/
|
48
|
-
Project-URL: Slack/Signup, https://communityinviter.com/apps/locustio/locust
|
27
|
+
Requires-Python: >=3.9
|
28
|
+
Requires-Dist: configargparse>=1.5.5
|
29
|
+
Requires-Dist: flask-cors>=3.0.10
|
30
|
+
Requires-Dist: flask-login>=0.6.3
|
31
|
+
Requires-Dist: flask>=2.0.0
|
32
|
+
Requires-Dist: gevent>=22.10.2; python_version <= '3.12'
|
33
|
+
Requires-Dist: gevent>=24.10.1; python_version > '3.13'
|
34
|
+
Requires-Dist: geventhttpclient>=2.3.1
|
35
|
+
Requires-Dist: msgpack>=1.0.0
|
36
|
+
Requires-Dist: psutil>=5.9.1
|
37
|
+
Requires-Dist: pywin32; sys_platform == 'win32'
|
38
|
+
Requires-Dist: pyzmq>=25.0.0
|
39
|
+
Requires-Dist: requests>=2.26.0; python_version <= '3.11'
|
40
|
+
Requires-Dist: requests>=2.32.2; python_version > '3.11'
|
41
|
+
Requires-Dist: setuptools>=70.0.0
|
42
|
+
Requires-Dist: tomli>=1.1.0; python_version < '3.11'
|
43
|
+
Requires-Dist: typing-extensions>=4.6.0; python_version < '3.11'
|
44
|
+
Requires-Dist: werkzeug>=2.0.0
|
49
45
|
Description-Content-Type: text/markdown
|
50
46
|
|
51
47
|
# Locust
|
@@ -149,4 +145,3 @@ Locust's code base is intentionally kept small and doesn't solve everything out
|
|
149
145
|
## License
|
150
146
|
|
151
147
|
Open source licensed under the MIT license (see _LICENSE_ file for details).
|
152
|
-
|
@@ -1,12 +1,9 @@
|
|
1
|
+
uv.lock,sha256=RBDEPDRTgFqDkoDAZnYuFED9tY5oLVT3BTDQR1XMdIE,352659
|
1
2
|
locust/__init__.py,sha256=aWeuBPUxONjwNm1xp4v8L4BO14SuYLjscIiwJVX1Ui4,1746
|
2
3
|
locust/__main__.py,sha256=vBQ82334kX06ImDbFlPFgiBRiLIinwNk3z8Khs6hd74,31
|
3
|
-
locust/_version.py,sha256
|
4
|
+
locust/_version.py,sha256=-bYCX-lXeYrVsbhiGLec8lKpHs7nwzmZCaEaIh7mE3c,415
|
4
5
|
locust/argument_parser.py,sha256=7H95Bd9f9T3LisQDG6o_7XM1iG-ibpKpmhcPDHRW570,32475
|
5
6
|
locust/clients.py,sha256=XK-xabq2_5GZKMEjebDobvEjeBTtCs8h2EelL7s68Qs,19346
|
6
|
-
locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
locust/contrib/fasthttp.py,sha256=DkRY7rfwkaUQMkiI1r6saFb0XVRnQ4lb4I3zQBsmHXY,29263
|
8
|
-
locust/contrib/mongodb.py,sha256=1seUYgJOaNKwybYOP9PUEVhgl8hGy-G33f8lFj3R8W8,1246
|
9
|
-
locust/contrib/postgres.py,sha256=OuMWnGYN10K65Tq2axVESEW25Y0g5gJb0rK90jkcCJg,1230
|
10
7
|
locust/debug.py,sha256=7CCm8bIg44uGH2wqBlo1rXBzV2VzwPicLxLewz8r5CQ,5099
|
11
8
|
locust/dispatch.py,sha256=prdwtb9EoN4A9klgiKgWuwQmvFB8hEuFHOK6ot62AJI,16202
|
12
9
|
locust/env.py,sha256=UgR85CbbMXjhsbrMO8cx--ubdzEwuM2WZtY8DFMHHho,13065
|
@@ -17,12 +14,17 @@ locust/input_events.py,sha256=ZIyePyAMuA_YFYWg18g_pE4kwuQV3RbEB250MzXRwjY,3314
|
|
17
14
|
locust/log.py,sha256=5E2ZUOa3V4sfCqa-470Gle1Ik9L5nxYitsjEB9tRwE0,3455
|
18
15
|
locust/main.py,sha256=0C8uuVkmaZi_d6TT9pbfFXW81tdPed1DZnpamlxD_tM,27927
|
19
16
|
locust/py.typed,sha256=gkWLl8yD4mIZnNYYAIRM8g9VarLvWmTAFeUfEbxJLBw,65
|
20
|
-
locust/rpc/__init__.py,sha256=5YOu-58XSnt-oWWNATgXLTNdYoDkkngwHNXprxkWKSM,99
|
21
|
-
locust/rpc/protocol.py,sha256=n-rb3GZQcAlldYDj4E4GuFGylYj_26GSS5U29meft5Y,1282
|
22
|
-
locust/rpc/zmqrpc.py,sha256=tMeLQiLII8QP29lAHGZsj5Pf5FsTL-X4wM0DrtR3ALw,3214
|
23
17
|
locust/runners.py,sha256=6qmIl2eWOsx40Pf_xq0apR1XTKL1eGAZYTfvTHmYIvg,70615
|
24
18
|
locust/shape.py,sha256=t-lwBS8LOjWcKXNL7j2U3zroIXJ1b0fazUwpRYQOKXw,1973
|
25
19
|
locust/stats.py,sha256=Ylw-uyt3cpeqy0Oi5kvcloVWgjJm62lu9lbWJfq2lHU,46061
|
20
|
+
locust/web.py,sha256=wja4nLBOy45toDqC71UYUkeQgROehpH0U0Imp5F_ojA,29773
|
21
|
+
locust/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
locust/contrib/fasthttp.py,sha256=DkRY7rfwkaUQMkiI1r6saFb0XVRnQ4lb4I3zQBsmHXY,29263
|
23
|
+
locust/contrib/mongodb.py,sha256=1seUYgJOaNKwybYOP9PUEVhgl8hGy-G33f8lFj3R8W8,1246
|
24
|
+
locust/contrib/postgres.py,sha256=OuMWnGYN10K65Tq2axVESEW25Y0g5gJb0rK90jkcCJg,1230
|
25
|
+
locust/rpc/__init__.py,sha256=5YOu-58XSnt-oWWNATgXLTNdYoDkkngwHNXprxkWKSM,99
|
26
|
+
locust/rpc/protocol.py,sha256=n-rb3GZQcAlldYDj4E4GuFGylYj_26GSS5U29meft5Y,1282
|
27
|
+
locust/rpc/zmqrpc.py,sha256=tMeLQiLII8QP29lAHGZsj5Pf5FsTL-X4wM0DrtR3ALw,3214
|
26
28
|
locust/user/__init__.py,sha256=RgdRCflP2dIDcvwVMdhPQHAMhWVwQarQ9wWjF9HKk0w,151
|
27
29
|
locust/user/inspectuser.py,sha256=KgrWHyE5jhK6or58R7soLRf-_st42AaQrR72qbiXw9E,2641
|
28
30
|
locust/user/sequential_taskset.py,sha256=SbrrGU9HV2nEWe6zQVtjymn8NgPISP7QSNoVdyoXjYg,2687
|
@@ -39,7 +41,9 @@ locust/util/load_locustfile.py,sha256=hn70KcIG8jHmZyuKv2pcEmwgWtOEu24Efeji1KRYNU
|
|
39
41
|
locust/util/rounding.py,sha256=5haxR8mKhATqag6WvPby-MSRRgIw5Ob6thbyvMYZM7o,92
|
40
42
|
locust/util/timespan.py,sha256=Y0LtnhUq2Mq19p04u0XtBlYQ_-S2cRvwRdgru8W9WhA,986
|
41
43
|
locust/util/url.py,sha256=s_W2PCxvxTWxWX0yUvp-8VBuQm881KwI5X9iifogZG4,321
|
42
|
-
locust/
|
44
|
+
locust/webui/dist/auth.html,sha256=3oyTf_gQkVvdO2WHkjQm-x24iusdhgHo2-l50XvmF4g,678
|
45
|
+
locust/webui/dist/index.html,sha256=1cDsi3fre0ZDOftd58U2KGHALAhfXYaXQFpHufvUzO8,654
|
46
|
+
locust/webui/dist/report.html,sha256=j-a-asUn3fP0Mz7-XFWpjqwjIZSaYWJpn8a2nk5wB0s,1474613
|
43
47
|
locust/webui/dist/assets/favicon-dark.png,sha256=6zVkRtiRfU45qQGvEhf1cq2nNauFs_JW5SI79wT0YkM,2437
|
44
48
|
locust/webui/dist/assets/favicon-light.png,sha256=VdG2GZyeTCOML7xfievupBP4EhmHoUqlVCw-tXqkvxU,2468
|
45
49
|
locust/webui/dist/assets/graphs-dark.png,sha256=_nS7sWe2ozG1vb3Gy_3Qv6bE0-xxlAvnRlxvDyBCIR0,282277
|
@@ -47,12 +51,8 @@ locust/webui/dist/assets/graphs-light.png,sha256=7L6pOehXqCojQclzeP91l-LskFQAw_n
|
|
47
51
|
locust/webui/dist/assets/index-DnScW665.js,sha256=wGpn9anGhaCOR9lDkKJtEvLqrNujbWOS31mlPdRsFhU,1680695
|
48
52
|
locust/webui/dist/assets/testruns-dark.png,sha256=np6MvpgJ2gkKQ66SOmukLtjsMtHqTSr5dNfza-2XtCo,267621
|
49
53
|
locust/webui/dist/assets/testruns-light.png,sha256=iLAxBZh3kRsfGkcB1-1KSAbFgGji43IqiUrYuJlUoPk,276839
|
50
|
-
locust
|
51
|
-
locust
|
52
|
-
locust
|
53
|
-
|
54
|
-
locust-2.32.
|
55
|
-
locust-2.32.9.dev10.dist-info/METADATA,sha256=GCvcaWQB-WgGrC3FDbrv6XxW66AQCXQC5xUQylqvqgw,9990
|
56
|
-
locust-2.32.9.dev10.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
57
|
-
locust-2.32.9.dev10.dist-info/entry_points.txt,sha256=RhIxlLwU_Ae_WjimS5COUDLagdCh6IOMyLtgaQxNmlM,43
|
58
|
-
locust-2.32.9.dev10.dist-info/RECORD,,
|
54
|
+
locust-2.32.10.dist-info/METADATA,sha256=1SHcoBrLUv6YUHb0J3Exmge3xbxGvw5iaiJRedKMMgk,9633
|
55
|
+
locust-2.32.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
56
|
+
locust-2.32.10.dist-info/entry_points.txt,sha256=RAdt8Ku-56m7bFjmdj-MBhbF6h4NX7tVODR9QNnOg0E,44
|
57
|
+
locust-2.32.10.dist-info/licenses/LICENSE,sha256=5hnz-Vpj0Z3kSCQl0LzV2hT1TLc4LHcbpBp3Cy-EuyM,1110
|
58
|
+
locust-2.32.10.dist-info/RECORD,,
|