robotpy-cscore 2025.3.2.1__cp311-cp311-win_amd64.whl → 2025.3.2.3__cp311-cp311-win_amd64.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 robotpy-cscore might be problematic. Click here for more details.

Files changed (43) hide show
  1. cscore/__init__.py +1 -1
  2. cscore/_cscore.cp311-win_amd64.lib +0 -0
  3. cscore/_cscore.cp311-win_amd64.pyd +0 -0
  4. cscore/_init__cscore.py +6 -0
  5. cscore/cscore-casters.pc +8 -0
  6. cscore/cscore-casters.pybind11.json +1 -0
  7. cscore/cscore.pc +10 -0
  8. cscore/src/main.cpp +2 -2
  9. cscore/trampolines/cs__AxisCamera.hpp +9 -0
  10. cscore/trampolines/cs__CvSink.hpp +13 -0
  11. cscore/trampolines/cs__CvSource.hpp +13 -0
  12. cscore/trampolines/cs__HttpCamera.hpp +9 -0
  13. cscore/trampolines/cs__ImageSink.hpp +9 -0
  14. cscore/trampolines/cs__ImageSource.hpp +9 -0
  15. cscore/trampolines/cs__MjpegServer.hpp +9 -0
  16. cscore/trampolines/cs__RawEvent.hpp +9 -0
  17. cscore/trampolines/cs__UsbCamera.hpp +9 -0
  18. cscore/trampolines/cs__UsbCameraInfo.hpp +9 -0
  19. cscore/trampolines/cs__VideoCamera.hpp +9 -0
  20. cscore/trampolines/cs__VideoEvent.hpp +9 -0
  21. cscore/trampolines/cs__VideoListener.hpp +9 -0
  22. cscore/trampolines/cs__VideoMode.hpp +9 -0
  23. cscore/trampolines/cs__VideoProperty.hpp +9 -0
  24. cscore/trampolines/cs__VideoSink.hpp +9 -0
  25. cscore/trampolines/cs__VideoSource.hpp +9 -0
  26. cscore/trampolines/frc__CameraServer.hpp +12 -0
  27. cscore/version.py +3 -4
  28. robotpy_cscore-2025.3.2.3.dist-info/METADATA +11 -0
  29. robotpy_cscore-2025.3.2.3.dist-info/RECORD +42 -0
  30. {robotpy_cscore-2025.3.2.1.dist-info → robotpy_cscore-2025.3.2.3.dist-info}/WHEEL +1 -2
  31. robotpy_cscore-2025.3.2.3.dist-info/entry_points.txt +3 -0
  32. cscore/__pycache__/__init__.cpython-311.pyc +0 -0
  33. cscore/__pycache__/_init_cscore.cpython-311.pyc +0 -0
  34. cscore/__pycache__/_logging.cpython-311.pyc +0 -0
  35. cscore/__pycache__/version.cpython-311.pyc +0 -0
  36. cscore/_init_cscore.py +0 -10
  37. cscore/pkgcfg.py +0 -34
  38. cscore/py.typed +0 -0
  39. robotpy_cscore-2025.3.2.1.dist-info/METADATA +0 -35
  40. robotpy_cscore-2025.3.2.1.dist-info/RECORD +0 -27
  41. robotpy_cscore-2025.3.2.1.dist-info/entry_points.txt +0 -2
  42. robotpy_cscore-2025.3.2.1.dist-info/top_level.txt +0 -1
  43. {robotpy_cscore-2025.3.2.1.dist-info → robotpy_cscore-2025.3.2.3.dist-info/licenses}/LICENSE +0 -0
cscore/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- from . import _init_cscore
1
+ from . import _init__cscore
2
2
 
3
3
  # autogenerated by 'robotpy-build create-imports cscore cscore._cscore'
4
4
  from ._cscore import (
Binary file
Binary file
@@ -0,0 +1,6 @@
1
+ # This file is automatically generated, DO NOT EDIT
2
+ # fmt: off
3
+
4
+ import wpiutil._init__wpiutil
5
+ import wpinet._init__wpinet
6
+ import ntcore._init__ntcore
@@ -0,0 +1,8 @@
1
+ # automatically generated by semiwrap.cmd_publish_casters
2
+ prefix=${pcfiledir}
3
+ inc0=${prefix}/.
4
+
5
+ Name: cscore-casters
6
+ Description: pybind11 type casters
7
+ Version:
8
+ Cflags: -I${prefix} -I${inc0}
@@ -0,0 +1 @@
1
+ {"headers": [{"header": "cvnp/cvnp.h", "types": ["cv::Mat"], "default_arg_cast": false}]}
cscore/cscore.pc ADDED
@@ -0,0 +1,10 @@
1
+ # automatically generated by semiwrap.cmd_gen_pkgconf
2
+ prefix=${pcfiledir}
3
+ pkgconf_pypi_initpy=cscore._init__cscore
4
+ inc0=${prefix}/../lib/include
5
+
6
+ Name: cscore
7
+ Description: semiwrap pybind11 module
8
+ Version:
9
+ Cflags: -I${prefix} -I${inc0}
10
+ Requires: wpiutil wpinet ntcore cscore-casters
cscore/src/main.cpp CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- #include <rpygen_wrapper.hpp>
2
+ #include <semiwrap_init.cscore._cscore.hpp>
3
3
 
4
4
  #include "cscore_cpp.h"
5
5
 
@@ -9,7 +9,7 @@ extern "C" {
9
9
  }
10
10
  #endif
11
11
 
12
- RPYBUILD_PYBIND11_MODULE(m) {
12
+ SEMIWRAP_PYBIND11_MODULE(m) {
13
13
  initWrapper(m);
14
14
 
15
15
  static int unused; // the capsule needs something to reference
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::AxisCamera does not have a trampoline"
@@ -0,0 +1,13 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_cv.h>
9
+
10
+ // from extra_includes
11
+ #include <opencv2/core/core.hpp>
12
+ #include <cvnp/cvnp.h>
13
+ #error "cs::CvSink does not have a trampoline"
@@ -0,0 +1,13 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_cv.h>
9
+
10
+ // from extra_includes
11
+ #include <opencv2/core/core.hpp>
12
+ #include <cvnp/cvnp.h>
13
+ #error "cs::CvSource does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::HttpCamera does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::ImageSink does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::ImageSource does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::MjpegServer does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_cpp.h>
9
+ #error "cs::RawEvent does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::UsbCamera does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_cpp.h>
9
+ #error "cs::UsbCameraInfo does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::VideoCamera does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::VideoEvent does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::VideoListener does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_cpp.h>
9
+ #error "cs::VideoMode does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::VideoProperty does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::VideoSink does not have a trampoline"
@@ -0,0 +1,9 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cscore_oo.h>
9
+ #error "cs::VideoSource does not have a trampoline"
@@ -0,0 +1,12 @@
1
+ // This file is autogenerated. DO NOT EDIT
2
+
3
+ #pragma once
4
+ #include <semiwrap.h>
5
+
6
+ // wrapped header
7
+
8
+ #include <cameraserver/CameraServer.h>
9
+
10
+ // from extra_includes
11
+ #include <optional>
12
+ #error "frc::CameraServer does not have a trampoline"
cscore/version.py CHANGED
@@ -1,4 +1,3 @@
1
- # file generated by setuptools_scm
2
- # don't change, don't track in version control
3
- __version__ = version = '2025.3.2.1'
4
- __version_tuple__ = version_tuple = (2025, 3, 2, 1)
1
+ # This file is automatically generated, DO NOT EDIT
2
+
3
+ version = __version__ = "2025.3.2.3"
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: robotpy-cscore
3
+ Version: 2025.3.2.3
4
+ Summary: RobotPy bindings for cscore image processing library
5
+ Project-URL: Source code, https://github.com/robotpy/mostrobotpy
6
+ Author-email: RobotPy Development Team <robotpy@googlegroups.com>
7
+ License-Expression: BSD-3-Clause
8
+ License-File: LICENSE
9
+ Requires-Dist: pyntcore==2025.3.2.3
10
+ Requires-Dist: robotpy-wpinet==2025.3.2.3
11
+ Requires-Dist: robotpy-wpiutil==2025.3.2.3
@@ -0,0 +1,42 @@
1
+ cscore/__init__.py,sha256=YG3QuvOLeMKGG0IoXUPwMuZsIRFF7Uojcq3ES35KP4Y,1120
2
+ cscore/__main__.py,sha256=No4nfyEHnbuyavQ9yInscvbiEGFPxxse9klZ-DSVMhc,4588
3
+ cscore/_logging.py,sha256=uv1Shlu49aPgQpRn5yD2ybT4N8ewJS3qUFOn8YTffwg,333
4
+ cscore/grip.py,sha256=qC6MbWvVllpnnsm10f31gqq4_PMWI_G9GKt3PfOaUpo,1042
5
+ cscore/imagewriter.py,sha256=RAWRRhL3DLNampZJjdd7Ye_8P1AmiYAZsWhnwov5id0,4537
6
+ cscore/version.py,sha256=I4eHDqNQMvfesBJ0oTfQEIvBUWFj6mrKGwseAFrUQyQ,93
7
+ cscore/cvnp/README.md,sha256=197MQ-gG-pZf9YAUZqcHXLKk8au8WtxXrfFf7lnwHAo,1175
8
+ cscore/cvnp/cvnp.cpp,sha256=dE3cBEbVVXaEdULdxbzglt9elRCxhkcXjF69W_Ak6so,9216
9
+ cscore/cvnp/cvnp.h,sha256=021_w8fhAlnew4Nc88ypPAdT9sBPwPzXwGPRiGIY1_Q,14937
10
+ cscore/cvnp/cvnp_synonyms.cpp,sha256=ZpLZzmK5ZcrIgLfi_j7eJ_NXLNtcb8ymDWehYuVVHvo,2419
11
+ cscore/cvnp/cvnp_synonyms.h,sha256=MgU4yOOXMhGGLrKb06dX4nsQLtqkq_1gDE6ToR3mjFo,589
12
+ cscore/src/main.cpp,sha256=aT5x-6KE9VGlNJ4oKX85AfbJHmSZ0VFI7SlVIDumrQA,751
13
+ cscore/_cscore.cp311-win_amd64.lib,sha256=qf0g9i4EVzkyWGtUwW3XPFzR_cPUQOMX8uta70jomcI,2012
14
+ cscore/_cscore.cp311-win_amd64.pyd,sha256=DtSp9DiEU7PIY49Wji-9mVxwnizsB3J1UeL36jzygdU,3636736
15
+ cscore/_cscore.pyi,sha256=2vGkN7ykv9SaJ_wV8ftTqGfJivc-p9Sv-i0yaEBSU6E,58745
16
+ cscore/_init__cscore.py,sha256=-yKGqNCAEqvHZ2kbrDeNapB2BcNMF76wBh4S1nKAU-4,156
17
+ cscore/cscore-casters.pc,sha256=_Mf7zY4dTBwzS0oX4z9YIIg-RCzCVh3AIs_tPVAjBo0,200
18
+ cscore/cscore-casters.pybind11.json,sha256=OhrB1ZkzUlHqaL5_tPr0hvifkq13qZZ2pbXVSprxLho,89
19
+ cscore/cscore.pc,sha256=yyPEWJZyYfhHaakG324_He5wAB_lZurlt_RaVBb0MoQ,294
20
+ cscore/trampolines/cs__AxisCamera.hpp,sha256=KlyjzVhC2midZ3f3AoIDdwmOWg7-97ddL8X8yeBmK5o,182
21
+ cscore/trampolines/cs__CvSink.hpp,sha256=bXbjq4JNo7oBT6XMUPf9wD6RCuNaI7T-5CpIpP7Po3A,262
22
+ cscore/trampolines/cs__CvSource.hpp,sha256=azOv7FfXACeVSEdIsE0bMk8gxL6nOYrCciV87lhenqg,264
23
+ cscore/trampolines/cs__HttpCamera.hpp,sha256=0WU-mvpwtm9e96oR2Ms15LD2RCEgTMOVQ2S9psKjZPc,182
24
+ cscore/trampolines/cs__ImageSink.hpp,sha256=kuAUqW56HDlXjeMALPaY3X0ATVEAXHZUHExshku3onM,181
25
+ cscore/trampolines/cs__ImageSource.hpp,sha256=EeOX0evHnsEoTJunAItFWfKIOTx9gAEnccSrUSs7hfI,183
26
+ cscore/trampolines/cs__MjpegServer.hpp,sha256=sIj7KDLsDGeAUbFZfwM3eA3GJ75UNBXXtZQ67TzBxFA,183
27
+ cscore/trampolines/cs__RawEvent.hpp,sha256=0LJl7HqTlfEgQaHKQC6DcuO6t71ocM_BpbJG5DxDDjc,181
28
+ cscore/trampolines/cs__UsbCamera.hpp,sha256=zoPZiC1c_fuUV3Hgqg3Mp1pm_1gCJJfu7uLRfkQld9w,181
29
+ cscore/trampolines/cs__UsbCameraInfo.hpp,sha256=jXcjZa0v_CqQ1tvRpE0rOB0A1ddIrrTRHZic73jkq-I,186
30
+ cscore/trampolines/cs__VideoCamera.hpp,sha256=R0ezryzzszxkylIi8pNxmAIvvDBrXjT86h4ufvFFDLI,183
31
+ cscore/trampolines/cs__VideoEvent.hpp,sha256=DDkSF78B8HtQQlTAPQxiC3gwmTOIF8QGCB1SHouPrwk,182
32
+ cscore/trampolines/cs__VideoListener.hpp,sha256=OSHDr_hG_GjlG2u3qZyNEXorm59zlpgg8_yw695o-rE,185
33
+ cscore/trampolines/cs__VideoMode.hpp,sha256=ORjHZiC57jyE7z3KRORgnUbpSaHT1AZ7sDerzQcDGms,182
34
+ cscore/trampolines/cs__VideoProperty.hpp,sha256=AvE0I2LcbUvrXuPa28afi2bCSsjzj8bxnlpUBg03Vn8,185
35
+ cscore/trampolines/cs__VideoSink.hpp,sha256=wdIqcz7YcJU4mMfgVuLyZg7Tedl2iaBxAPzv6siIUSI,181
36
+ cscore/trampolines/cs__VideoSource.hpp,sha256=tuOysl9BxSX0CSjRvFOqnhtPEH78wHGNVOK_dMkOjU8,183
37
+ cscore/trampolines/frc__CameraServer.hpp,sha256=HrifiweHkUgzh3snsOD0y0YIE8rE_ovyg2WFnKh2Xbk,248
38
+ robotpy_cscore-2025.3.2.3.dist-info/METADATA,sha256=vfOr3awX7PXgA-YHCYrCnRUvgfUIcowO3Y5rIFKTlFs,432
39
+ robotpy_cscore-2025.3.2.3.dist-info/WHEEL,sha256=hBfdzPpFqdGjAw_HiLXeq0mZQ5PGB410nwD8_9kDykc,97
40
+ robotpy_cscore-2025.3.2.3.dist-info/entry_points.txt,sha256=MTVv-2rIw51vWKhX4bVj581sChRKQvZp9WTUlp3mGiY,53
41
+ robotpy_cscore-2025.3.2.3.dist-info/licenses/LICENSE,sha256=eday0nHMlO9Rc7a6n0ONgNEe6N20r5xNWivVL5n-fN4,3138
42
+ robotpy_cscore-2025.3.2.3.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.45.1)
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-win_amd64
5
-
@@ -0,0 +1,3 @@
1
+ [pkg_config]
2
+ cscore-casters = cscore
3
+ cscore = cscore
Binary file
Binary file
Binary file
cscore/_init_cscore.py DELETED
@@ -1,10 +0,0 @@
1
- # This file is automatically generated, DO NOT EDIT
2
- # fmt: off
3
-
4
- from os.path import abspath, join, dirname, exists
5
- _root = abspath(dirname(__file__))
6
-
7
- # runtime dependencies
8
- import wpiutil._init_wpiutil
9
- import wpinet._init_wpinet
10
- import ntcore._init_ntcore
cscore/pkgcfg.py DELETED
@@ -1,34 +0,0 @@
1
- # fmt: off
2
- # This file is automatically generated, DO NOT EDIT
3
-
4
- from os.path import abspath, join, dirname
5
- _root = abspath(dirname(__file__))
6
-
7
- libinit_import = "cscore._init_cscore"
8
- depends = ['wpiutil', 'wpinet', 'ntcore']
9
- pypi_package = 'robotpy-cscore'
10
-
11
- def get_include_dirs():
12
- return [join(_root, "include"), join(_root, "rpy-include")]
13
-
14
- def get_library_dirs():
15
- return []
16
-
17
- def get_library_dirs_rel():
18
- return []
19
-
20
- def get_library_names():
21
- return []
22
-
23
- def get_library_full_names():
24
- return []
25
-
26
- def get_type_casters_cfg(casters):
27
- casters.update({'cv::Mat': {'hdr': 'cvnp/cvnp.h'}})
28
-
29
- def get_type_casters(casters):
30
- t = {}
31
- get_type_casters_cfg(t)
32
- for k, v in t.items():
33
- if "hdr" in v:
34
- casters[k] = v["hdr"]
cscore/py.typed DELETED
File without changes
@@ -1,35 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: robotpy-cscore
3
- Version: 2025.3.2.1
4
- Summary: RobotPy bindings for cscore image processing library
5
- Home-page: https://github.com/robotpy/robotpy-cscore
6
- Author: RobotPy Development Team
7
- Author-email: robotpy@googlegroups.com
8
- License: BSD-3-Clause
9
- Requires-Python: >=3.8
10
- Description-Content-Type: text/x-rst
11
- License-File: LICENSE
12
- Requires-Dist: robotpy-wpiutil==2025.3.2.1
13
- Requires-Dist: robotpy-wpinet==2025.3.2.1
14
- Requires-Dist: pyntcore==2025.3.2.1
15
-
16
- robotpy-cscore
17
- ==============
18
-
19
- These are python bindings for the cscore library, which is a high performance
20
- library used in the FIRST Robotics competition to serve video to/from robots.
21
- However, the core library is suitable for use in other applications, and is
22
- comparable to something like mjpg-streamer.
23
-
24
- This library requires python 3.6+
25
-
26
- Documentation
27
- =============
28
-
29
- * `Installation <http://robotpy.readthedocs.io/en/stable/install/cscore.html>`_
30
- * `Usage <http://robotpy.readthedocs.io/en/stable/vision/index.html>`_
31
-
32
- Author
33
- ======
34
-
35
- Dustin Spicuzza (dustin@virtualroadside.com)
@@ -1,27 +0,0 @@
1
- cscore/__init__.py,sha256=xtJaSt6Uiihii-R_9XYbQVovx_D3Q-tqZpnyt6i2s0I,1119
2
- cscore/__main__.py,sha256=No4nfyEHnbuyavQ9yInscvbiEGFPxxse9klZ-DSVMhc,4588
3
- cscore/_cscore.cp311-win_amd64.pyd,sha256=iYxP29Dx_ZZ-GyoZfdid2WUFxlqR_Ui-6u_SRbGcl_A,3608576
4
- cscore/_cscore.pyi,sha256=2vGkN7ykv9SaJ_wV8ftTqGfJivc-p9Sv-i0yaEBSU6E,58745
5
- cscore/_init_cscore.py,sha256=IJoWfQi1FpW48Uez-o9vS8SVCArHlmCAGt1BZkmbZmY,267
6
- cscore/_logging.py,sha256=uv1Shlu49aPgQpRn5yD2ybT4N8ewJS3qUFOn8YTffwg,333
7
- cscore/grip.py,sha256=qC6MbWvVllpnnsm10f31gqq4_PMWI_G9GKt3PfOaUpo,1042
8
- cscore/imagewriter.py,sha256=RAWRRhL3DLNampZJjdd7Ye_8P1AmiYAZsWhnwov5id0,4537
9
- cscore/pkgcfg.py,sha256=nkuqOy-Oy0Kw0pi8YXX9KfQCviwNliFZZlSOi2slsiw,791
10
- cscore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- cscore/version.py,sha256=vN2PYFVqUY7iafH-t7hFAFBRWW8Jd0Xu5BqzlgPUEvk,175
12
- cscore/__pycache__/__init__.cpython-311.pyc,sha256=258fTzqccVycofuVeoZL_N2atiOch9qgiNpbhV2ZYIg,1321
13
- cscore/__pycache__/_init_cscore.cpython-311.pyc,sha256=KvlX4QwPC03jszHbpePVzqfsR_lbG_yxh_PPWgo8NUM,576
14
- cscore/__pycache__/_logging.cpython-311.pyc,sha256=3VTMfb3Zo057aZQIORAmQROD68kN67VyEJQ1dZ8OV0k,984
15
- cscore/__pycache__/version.cpython-311.pyc,sha256=3ipgUqthhvMOE4udbMOiEElomSycBEJ90aKuUGNfsFY,334
16
- cscore/cvnp/README.md,sha256=197MQ-gG-pZf9YAUZqcHXLKk8au8WtxXrfFf7lnwHAo,1175
17
- cscore/cvnp/cvnp.cpp,sha256=dE3cBEbVVXaEdULdxbzglt9elRCxhkcXjF69W_Ak6so,9216
18
- cscore/cvnp/cvnp.h,sha256=021_w8fhAlnew4Nc88ypPAdT9sBPwPzXwGPRiGIY1_Q,14937
19
- cscore/cvnp/cvnp_synonyms.cpp,sha256=ZpLZzmK5ZcrIgLfi_j7eJ_NXLNtcb8ymDWehYuVVHvo,2419
20
- cscore/cvnp/cvnp_synonyms.h,sha256=MgU4yOOXMhGGLrKb06dX4nsQLtqkq_1gDE6ToR3mjFo,589
21
- cscore/src/main.cpp,sha256=sXb-crcVv2JxivUGCqPkpYmjgeupf5-M9XXOrxkRiRw,737
22
- robotpy_cscore-2025.3.2.1.dist-info/LICENSE,sha256=eday0nHMlO9Rc7a6n0ONgNEe6N20r5xNWivVL5n-fN4,3138
23
- robotpy_cscore-2025.3.2.1.dist-info/METADATA,sha256=Iuj99dQnMdroKOVVTDdjV5FjZAJIocYZNiCYs63Jkxc,1096
24
- robotpy_cscore-2025.3.2.1.dist-info/WHEEL,sha256=y4n9_669c4ZQLyT56MHjc_JUbnwtaZfMVMycweN557o,102
25
- robotpy_cscore-2025.3.2.1.dist-info/entry_points.txt,sha256=ZOi1FKkpTmx8xBqUtdp6Z4IzoCKfwDOKJoVDAF9qjhE,38
26
- robotpy_cscore-2025.3.2.1.dist-info/top_level.txt,sha256=yKRnfRQe07G2XO6XXYgsj9CN2obAQX3D3gsGvcewpVw,7
27
- robotpy_cscore-2025.3.2.1.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [robotpybuild]
2
- cscore = cscore.pkgcfg
@@ -1 +0,0 @@
1
- cscore