streamlit-webrtc 0.53.1__py3-none-any.whl → 0.53.2__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.
- streamlit_webrtc/__init__.py +3 -7
- {streamlit_webrtc-0.53.1.dist-info → streamlit_webrtc-0.53.2.dist-info}/METADATA +1 -1
- {streamlit_webrtc-0.53.1.dist-info → streamlit_webrtc-0.53.2.dist-info}/RECORD +5 -5
- {streamlit_webrtc-0.53.1.dist-info → streamlit_webrtc-0.53.2.dist-info}/WHEEL +0 -0
- {streamlit_webrtc-0.53.1.dist-info → streamlit_webrtc-0.53.2.dist-info}/licenses/LICENSE +0 -0
streamlit_webrtc/__init__.py
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
"""streamlit-webrtc"""
|
2
2
|
|
3
|
-
|
4
|
-
import importlib.metadata as importlib_metadata
|
5
|
-
except ModuleNotFoundError:
|
6
|
-
# Python < 3.8
|
7
|
-
import importlib_metadata # type: ignore
|
3
|
+
import importlib.metadata
|
8
4
|
|
9
5
|
from .component import (
|
10
6
|
WebRtcStreamerContext,
|
@@ -47,8 +43,8 @@ from .webrtc import (
|
|
47
43
|
# https://github.com/python-poetry/poetry/issues/144#issuecomment-623927302
|
48
44
|
# https://github.com/python-poetry/poetry/pull/2366#issuecomment-652418094
|
49
45
|
try:
|
50
|
-
__version__ =
|
51
|
-
except
|
46
|
+
__version__ = importlib.metadata.version(__name__)
|
47
|
+
except importlib.metadata.PackageNotFoundError:
|
52
48
|
pass
|
53
49
|
|
54
50
|
# For backward compatibility
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: streamlit-webrtc
|
3
|
-
Version: 0.53.
|
3
|
+
Version: 0.53.2
|
4
4
|
Summary: Real-time video and audio processing on Streamlit
|
5
5
|
Project-URL: Repository, https://github.com/whitphx/streamlit-webrtc
|
6
6
|
Author-email: "Yuichiro Tachibana (Tsuchiya)" <t.yic.yt@gmail.com>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
streamlit_webrtc/__init__.py,sha256=
|
1
|
+
streamlit_webrtc/__init__.py,sha256=jMWwXoQ9hVyYXPD4Vrps7MyiR9goyC-n7LtkZNFBOxU,2273
|
2
2
|
streamlit_webrtc/_compat.py,sha256=43RUwFoGdRBq8EkOdf6inWkl-qogs5lF8tc-sYrVd1s,4128
|
3
3
|
streamlit_webrtc/component.py,sha256=k9O3CwqUddbIU61gVr9gjhjvfspi_F8jm_r-RTC1-W4,26003
|
4
4
|
streamlit_webrtc/components_callbacks.py,sha256=tdrj2TlV8qcexFEdjm4PVkz8JwHffo4A8imoXOtjNHA,2401
|
@@ -19,7 +19,7 @@ streamlit_webrtc/source.py,sha256=haPqMZ50Xh8tg7Z1yN8Frfk8v7D3oOuKteaD59asbzs,22
|
|
19
19
|
streamlit_webrtc/webrtc.py,sha256=UBWoa2-u3X3tAaIj3NSUY9Thptk9CH50qeQS-tRY2tY,27278
|
20
20
|
streamlit_webrtc/frontend/dist/index.html,sha256=1iOx-PsDxdqWKzx6SFPeQH17DsdM8NJSkfOm-XjFl5Q,527
|
21
21
|
streamlit_webrtc/frontend/dist/assets/index-1ywg1u80.js,sha256=6DS5LiYVHfQac1QqoUOdw2ALfo86UUrpvdn4Cdz-GaY,582648
|
22
|
-
streamlit_webrtc-0.53.
|
23
|
-
streamlit_webrtc-0.53.
|
24
|
-
streamlit_webrtc-0.53.
|
25
|
-
streamlit_webrtc-0.53.
|
22
|
+
streamlit_webrtc-0.53.2.dist-info/METADATA,sha256=hRpD7I0HvgGNh3NKXbO5ywuQqCyRulaWLAY4Iaw-CLk,18640
|
23
|
+
streamlit_webrtc-0.53.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
24
|
+
streamlit_webrtc-0.53.2.dist-info/licenses/LICENSE,sha256=pwccNHVA7r4rYofGlMU10aKEU90GLUlQr8uY80PR0NQ,1081
|
25
|
+
streamlit_webrtc-0.53.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|