packetcount 0.26082201__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.
- packetcount-0.26082201/PKG-INFO +41 -0
- packetcount-0.26082201/README.md +15 -0
- packetcount-0.26082201/packetcount/__init__.py +8 -0
- packetcount-0.26082201/packetcount.egg-info/PKG-INFO +41 -0
- packetcount-0.26082201/packetcount.egg-info/SOURCES.txt +9 -0
- packetcount-0.26082201/packetcount.egg-info/dependency_links.txt +1 -0
- packetcount-0.26082201/packetcount.egg-info/requires.txt +10 -0
- packetcount-0.26082201/packetcount.egg-info/top_level.txt +1 -0
- packetcount-0.26082201/pyproject.toml +64 -0
- packetcount-0.26082201/setup.cfg +4 -0
- packetcount-0.26082201/tests/test_package.py +6 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: packetcount
|
|
3
|
+
Version: 0.26082201
|
|
4
|
+
Summary: A packet loss monitor for people who need proof
|
|
5
|
+
Author-email: Jeff Wheeler <jeffsw6@gmail.com>
|
|
6
|
+
Project-URL: homepage, https://packetcount.com
|
|
7
|
+
Project-URL: source, https://github.com/packetcount/packetcount
|
|
8
|
+
Project-URL: issues, https://github.com/packetcount/packetcount/issues
|
|
9
|
+
Keywords: packet loss,jitter,latency,network monitoring,STAMP,TWAMP
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: System Administrators
|
|
12
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
+
Classifier: Topic :: System :: Networking :: Monitoring
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Requires-Python: >=3.12
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Provides-Extra: dev
|
|
19
|
+
Requires-Dist: build; extra == "dev"
|
|
20
|
+
Requires-Dist: flake8; extra == "dev"
|
|
21
|
+
Requires-Dist: pytest; extra == "dev"
|
|
22
|
+
Requires-Dist: twine; extra == "dev"
|
|
23
|
+
Provides-Extra: tests
|
|
24
|
+
Requires-Dist: flake8; extra == "tests"
|
|
25
|
+
Requires-Dist: pytest; extra == "tests"
|
|
26
|
+
|
|
27
|
+
# packetcount
|
|
28
|
+
|
|
29
|
+
A packet loss monitor for people who need proof.
|
|
30
|
+
|
|
31
|
+
Packetcount is a self-hosted tool that measures and records IP network packet
|
|
32
|
+
loss (plus jitter and latency) from a monitored host to one or more
|
|
33
|
+
Internet-connected endpoints, and presents the results through a web
|
|
34
|
+
dashboard — a record detailed and credible enough to hand to an ISP or vendor
|
|
35
|
+
who insists the problem is on your end.
|
|
36
|
+
|
|
37
|
+
**Status:** early development. This release reserves the package name; it
|
|
38
|
+
contains no functionality yet.
|
|
39
|
+
|
|
40
|
+
- Web site: <https://packetcount.com>
|
|
41
|
+
- Source: <https://github.com/packetcount/packetcount>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# packetcount
|
|
2
|
+
|
|
3
|
+
A packet loss monitor for people who need proof.
|
|
4
|
+
|
|
5
|
+
Packetcount is a self-hosted tool that measures and records IP network packet
|
|
6
|
+
loss (plus jitter and latency) from a monitored host to one or more
|
|
7
|
+
Internet-connected endpoints, and presents the results through a web
|
|
8
|
+
dashboard — a record detailed and credible enough to hand to an ISP or vendor
|
|
9
|
+
who insists the problem is on your end.
|
|
10
|
+
|
|
11
|
+
**Status:** early development. This release reserves the package name; it
|
|
12
|
+
contains no functionality yet.
|
|
13
|
+
|
|
14
|
+
- Web site: <https://packetcount.com>
|
|
15
|
+
- Source: <https://github.com/packetcount/packetcount>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Packetcount: a packet loss monitor for people who need proof.
|
|
2
|
+
|
|
3
|
+
This package currently reserves the ``packetcount`` name on PyPI while the
|
|
4
|
+
project is under development. See https://packetcount.com and
|
|
5
|
+
https://github.com/packetcount/packetcount.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = '0.26082201'
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: packetcount
|
|
3
|
+
Version: 0.26082201
|
|
4
|
+
Summary: A packet loss monitor for people who need proof
|
|
5
|
+
Author-email: Jeff Wheeler <jeffsw6@gmail.com>
|
|
6
|
+
Project-URL: homepage, https://packetcount.com
|
|
7
|
+
Project-URL: source, https://github.com/packetcount/packetcount
|
|
8
|
+
Project-URL: issues, https://github.com/packetcount/packetcount/issues
|
|
9
|
+
Keywords: packet loss,jitter,latency,network monitoring,STAMP,TWAMP
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: System Administrators
|
|
12
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
+
Classifier: Topic :: System :: Networking :: Monitoring
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Requires-Python: >=3.12
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
Provides-Extra: dev
|
|
19
|
+
Requires-Dist: build; extra == "dev"
|
|
20
|
+
Requires-Dist: flake8; extra == "dev"
|
|
21
|
+
Requires-Dist: pytest; extra == "dev"
|
|
22
|
+
Requires-Dist: twine; extra == "dev"
|
|
23
|
+
Provides-Extra: tests
|
|
24
|
+
Requires-Dist: flake8; extra == "tests"
|
|
25
|
+
Requires-Dist: pytest; extra == "tests"
|
|
26
|
+
|
|
27
|
+
# packetcount
|
|
28
|
+
|
|
29
|
+
A packet loss monitor for people who need proof.
|
|
30
|
+
|
|
31
|
+
Packetcount is a self-hosted tool that measures and records IP network packet
|
|
32
|
+
loss (plus jitter and latency) from a monitored host to one or more
|
|
33
|
+
Internet-connected endpoints, and presents the results through a web
|
|
34
|
+
dashboard — a record detailed and credible enough to hand to an ISP or vendor
|
|
35
|
+
who insists the problem is on your end.
|
|
36
|
+
|
|
37
|
+
**Status:** early development. This release reserves the package name; it
|
|
38
|
+
contains no functionality yet.
|
|
39
|
+
|
|
40
|
+
- Web site: <https://packetcount.com>
|
|
41
|
+
- Source: <https://github.com/packetcount/packetcount>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
packetcount
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ['setuptools>=77']
|
|
3
|
+
build-backend = 'setuptools.build_meta'
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = 'packetcount'
|
|
7
|
+
dynamic = ['version']
|
|
8
|
+
authors = [{ name = 'Jeff Wheeler', email = 'jeffsw6@gmail.com' }]
|
|
9
|
+
dependencies = []
|
|
10
|
+
description = 'A packet loss monitor for people who need proof'
|
|
11
|
+
keywords = [
|
|
12
|
+
'packet loss',
|
|
13
|
+
'jitter',
|
|
14
|
+
'latency',
|
|
15
|
+
'network monitoring',
|
|
16
|
+
'STAMP',
|
|
17
|
+
'TWAMP',
|
|
18
|
+
]
|
|
19
|
+
# license is an open decision (see PLAN.md); add `license = '...'` and a LICENSE file together once chosen
|
|
20
|
+
readme = 'README.md'
|
|
21
|
+
requires-python = '>=3.12'
|
|
22
|
+
classifiers = [
|
|
23
|
+
'Development Status :: 1 - Planning',
|
|
24
|
+
'Intended Audience :: System Administrators',
|
|
25
|
+
'Intended Audience :: End Users/Desktop',
|
|
26
|
+
'Topic :: System :: Networking :: Monitoring',
|
|
27
|
+
'Programming Language :: Python :: 3',
|
|
28
|
+
'Operating System :: OS Independent',
|
|
29
|
+
]
|
|
30
|
+
urls.homepage = 'https://packetcount.com'
|
|
31
|
+
urls.source = 'https://github.com/packetcount/packetcount'
|
|
32
|
+
urls.issues = 'https://github.com/packetcount/packetcount/issues'
|
|
33
|
+
|
|
34
|
+
[project.optional-dependencies]
|
|
35
|
+
dev = [
|
|
36
|
+
'build',
|
|
37
|
+
'flake8',
|
|
38
|
+
'pytest',
|
|
39
|
+
'twine',
|
|
40
|
+
]
|
|
41
|
+
tests = [
|
|
42
|
+
'flake8',
|
|
43
|
+
'pytest',
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[dependency-groups]
|
|
47
|
+
dev = [
|
|
48
|
+
'build',
|
|
49
|
+
'flake8',
|
|
50
|
+
'pytest',
|
|
51
|
+
'twine',
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[tool.setuptools.dynamic]
|
|
55
|
+
version = { attr = 'packetcount.__version__' }
|
|
56
|
+
|
|
57
|
+
[tool.setuptools.packages.find]
|
|
58
|
+
include = ['packetcount*']
|
|
59
|
+
|
|
60
|
+
[tool.black]
|
|
61
|
+
line-length = 120
|
|
62
|
+
|
|
63
|
+
[tool.pytest.ini_options]
|
|
64
|
+
testpaths = ['tests']
|