Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
egeakman committed Oct 14, 2023
1 parent b8629d8 commit 80deac2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mjpeg_streamer/mjpeg_streamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ def start(self) -> None:

print("Available streams:")
for addr in self._host:
for route in self._cap_routes:
print(f"http://{addr}:{str(self._port)}/{route}")
for route in self._cap_routes: # route has a leading slash
print(f"http://{addr}:{str(self._port)}{route}")
print("--------------------------------")
thread = threading.Thread(target=self.__start_func, daemon=True)
thread.start()
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

__version__ = "2023.3.26"
__version__ = "2023.10.14"

with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
Expand All @@ -21,7 +21,7 @@
install_requires=[
"setuptools",
"numpy",
"opencv-python==4.6.0.66",
"opencv-python",
"aiohttp",
"netifaces",
],
Expand Down Expand Up @@ -55,6 +55,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
Expand Down

0 comments on commit 80deac2

Please sign in to comment.