Skip to content

Instantly share code, notes, and snippets.

@dwoffinden
Forked from RaphaelWimmer/endscopetool.py
Last active March 30, 2026 21:31
Show Gist options
  • Select an option

  • Save dwoffinden/20be1f532c3d34f6311a2ca5e99cad54 to your computer and use it in GitHub Desktop.

Select an option

Save dwoffinden/20be1f532c3d34f6311a2ca5e99cad54 to your computer and use it in GitHub Desktop.
Python implementation of the endscopetool (sic!) Android application used for the Vitcoco ear wax remover camera thingy.
use flake
.direnv
.pre-commit-config.yaml
result
#!/usr/bin/env python3
# SPDX-License-Identifier: MPL-2.0
#
# Python implementation of the endscopetool (sic!) Android application used for the Vitcoco ear wax remover camera thingy.
#
# Original version released at https://gist.github.com/RaphaelWimmer/5bcb286414e6cd38ed38724f9a6a6129
# under CC0 / Public Domain (0) 2023 Raphael Wimmer.
# Contributions by https://github.com/Aghei2 and https://gist.github.com/jamaggs.
#
# v0.1.0
# reverse-engineered using a packet capture log - this means that I have no idea what all those magic numbers mean
# and whether there are further features that might be supported by the hardware
# usage: first connect to the 'softish-XXXX' wifi, then run this script. Check code for keyboard shortcuts.
import socket
import cv2
import numpy as np
import time
from PIL import Image
from io import BytesIO
from urllib.parse import parse_qs
from typing import Protocol, runtime_checkable
@runtime_checkable
class UdpChannelInterface(Protocol):
def send(self, data: bytes) -> None: ...
def recv(self) -> bytes: ...
def close(self) -> None: ...
def set_timeout(self, timeout: float | None) -> None: ...
class UdpChannel:
def __init__(
self, local_port: int, target_ip: str, target_port: int, buffer_size: int = 1500
):
self.target_address = (target_ip, target_port)
self.buffer_size = buffer_size
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.sock.bind(("0.0.0.0", local_port))
def send(self, data: bytes) -> None:
self.sock.sendto(data, self.target_address)
def recv(self) -> bytes:
return self.sock.recvfrom(self.buffer_size)[0]
def close(self) -> None:
self.sock.close()
def set_timeout(self, timeout: float | None) -> None:
self.sock.settimeout(timeout)
class EndscopeConnection:
def __init__(
self, meta_channel: UdpChannelInterface, vid_channel: UdpChannelInterface
):
self.meta = meta_channel
self.vid = vid_channel
def query_battery(self) -> float | None:
data: bytes = "type=1001\x0a".encode()
self.meta.send(data)
reply = self.meta.recv()
received_data: str = reply.decode()
return get_battery_level(received_data)
def set_brightness(self, level: int) -> str:
data = f"type=1003&value={level}\x0a".encode()
self.meta.send(data)
reply = self.meta.recv()
try:
return reply.decode()
except UnicodeDecodeError:
return "UnicodeDecodeError"
def get_system_info(self) -> str:
data: bytes = "type=1002\x0a".encode()
self.meta.send(data)
reply = self.meta.recv()
return reply.decode()
def start_video(self) -> None:
# three times according to captured traffic
data = "\x20\x36\x00\x02".encode()
for _ in range(3):
self.vid.send(data)
def stop_video(self) -> None:
data = "\x20\x37".encode()
self.vid.send(data)
def recv_video(self) -> bytes:
return self.vid.recv()
def close(self) -> None:
self.meta.close()
self.vid.close()
def get_battery_level(query_string: str) -> float | None:
"""
Extracts the battery level from a string like 'type=2001&data=23'.
Returns an integer or None if not found or invalid.
"""
try:
params = parse_qs(query_string)
return int(params["data"][0]) / 100
except (KeyError, IndexError, ValueError):
print(f"failed to extract battery from data: ${query_string}")
return None
def draw_battery(
img: cv2.typing.MatLike,
x: int,
y: int,
width: int,
height: int,
level: float,
thickness: int,
) -> None:
"""
Draw a battery icon at (x, y) with given width, height and charge level (0 to 1).
"""
# Clamp level to [0, 1]
level = max(0, min(level, 1.0))
# Colors
border_color = (255, 255, 255)
fill_color = (0, 255, 0) if level > 0.3 else (0, 0, 255) # Red if low battery
# Draw battery outline
cv2.rectangle(img, (x, y), (x + width, y + height), border_color, thickness)
# Draw battery tip
tip_width = int(width * 0.08)
tip_x = x + width
tip_y = y + int(height * 0.3)
tip_height = int(height * 0.4)
cv2.rectangle(
img, (tip_x, tip_y), (tip_x + tip_width, tip_y + tip_height), border_color, -1
)
# Fill battery level
fill_width = int((width - 4) * level)
cv2.rectangle(
img, (x + 2, y + 2), (x + 2 + fill_width, y + height - 2), fill_color, -1
)
def absolute_frame_from_raw(raw_frame: int, latest_abs_frame: int) -> int:
# Find the multiple of 256 that makes raw_frame closest to latest_abs_frame
base = (latest_abs_frame // 256) * 256
candidates = [base - 256 + raw_frame, base + raw_frame, base + 256 + raw_frame]
# pick the candidate closest to latest_abs_frame
abs_frame = min(candidates, key=lambda x: abs(x - latest_abs_frame))
return abs_frame
def main() -> None:
debug = False
buffer_size = 1500
target_ip = "192.168.1.1"
target_port_meta = 61502
source_port_meta = 50262
target_port_vid = 61503
source_port_vid = 51320
# Initialize connection
meta_chan = UdpChannel(source_port_meta, target_ip, target_port_meta, buffer_size)
vid_chan = UdpChannel(source_port_vid, target_ip, target_port_vid, buffer_size)
vid_chan.set_timeout(5.0)
conn = EndscopeConnection(meta_chan, vid_chan)
brightness = 100
win_name = "Video Stream"
firstframe = True
try:
# get system info
received_data = conn.get_system_info()
print("Received data:", received_data)
# TODO: parse? Example:
# Received data: type=2002&protocol=2&w=640&h=480&fps=20&ratio=4:3&angle=270&hardware=V1.1&company=vitcoco&id=4e18d7c8054f5d209daaab4f5d200000&firmware=2030072618&ssid=softish-23840&dn=Y8&bl=30
battery_level: float | None = conn.query_battery()
print(f"Battery level: {battery_level}")
# three times according to captured traffic
conn.start_video()
# set led brightness to 100%
received_data = conn.set_brightness(100)
print("Received data:", received_data)
# TODO: parse? Example:
# Received data: type=1003&value=100
# !@
cv2.namedWindow(win_name, flags=cv2.WINDOW_GUI_NORMAL)
rotation_lock = False
rotation = 0
fullframe = False
raw_frame = 0
frame = 0
part = 0
pic_buf = b""
keep_awake_time = time.time()
# Store received parts per frame
# frame_number -> {part_number: pic_data}
frames_dict: dict[int, dict[int, bytes]] = {}
# number of parts required per frame
parts_dict: dict[int, int] = {}
while True:
# read video stream
reply = conn.recv_video()
raw_frame = reply[0]
frame_end: int = reply[1]
part = reply[2]
part_end: int = reply[3]
# misc_data = reply[4:8]
if not rotation_lock:
rotation = int.from_bytes(reply[4:6], "big")
pic_data = reply[8:]
frame = absolute_frame_from_raw(raw_frame, frame)
# store the part
if frame not in frames_dict:
frames_dict[frame] = {}
frames_dict[frame][part] = pic_data
if debug:
print(
f"raw_frame={raw_frame}, frame={frame}, frame_end={frame_end}, part={part}, part_end={part_end}"
)
# find number of parts required
if frame_end == 1:
parts_dict[frame] = part_end
if frame in parts_dict:
num_parts = parts_dict[frame]
parts = frames_dict[frame]
if all(p in parts for p in range(num_parts)):
pic_buf = b"".join(parts[i] for i in range(num_parts))
try:
image = Image.open(BytesIO(pic_buf))
image_np = np.array(image)
image_cv = cv2.cvtColor(image_np, cv2.COLOR_RGB2BGR)
num_rows, num_cols = image_cv.shape[:2]
if not fullframe:
# Case 1: Masked circle. The window will be a square of the SHORTER dimension.
square_size = min(num_rows, num_cols)
# Create a circular mask on the original image dimensions
mask = np.zeros((num_rows, num_cols), np.uint8)
cv2.circle(
mask,
(num_cols // 2, num_rows // 2),
square_size // 2,
255,
-1,
)
image_masked = cv2.bitwise_and(
image_cv, image_cv, mask=mask
)
# Get rotation matrix for the original image
rotation_matrix = cv2.getRotationMatrix2D(
(num_cols / 2, num_rows / 2), rotation + 90, 1
)
# Rotate the masked image within its original frame
image_rotated = cv2.warpAffine(
image_masked, rotation_matrix, (num_cols, num_rows)
)
# Crop the center square from the rotated image
center_x, center_y = num_cols // 2, num_rows // 2
half_size = square_size // 2
image_to_show = image_rotated[
center_y - half_size : center_y + half_size,
center_x - half_size : center_x + half_size,
]
else:
# Case 2: Full frame, ensuring no corners are ever cropped.
# The window will be a square with side length equal to the image diagonal.
# Calculate the length of the image diagonal
diagonal = np.sqrt(num_cols**2 + num_rows**2)
# The new square size is the diagonal, rounded up to the nearest integer
square_size = int(np.ceil(diagonal))
# Get the rotation matrix centered on the original image
rotation_matrix = cv2.getRotationMatrix2D(
(num_cols / 2, num_rows / 2), rotation + 90, 1
)
# Adjust the matrix's translation component to center the image on the new, larger canvas
tx = (square_size - num_cols) / 2
ty = (square_size - num_rows) / 2
rotation_matrix[0, 2] += tx
rotation_matrix[1, 2] += ty
# Warp the original image onto the new square canvas
image_to_show = cv2.warpAffine(
image_cv, rotation_matrix, (square_size, square_size)
)
if debug:
print(
f"image {num_rows}x{num_cols}, using window {square_size}x{square_size}"
)
if battery_level is not None:
draw_battery(
image_to_show,
x=square_size // 100,
y=square_size // 100,
width=square_size // 10,
height=square_size // 20,
level=battery_level,
thickness=square_size // 200,
)
cv2.imshow(win_name, image_to_show)
if firstframe:
cv2.resizeWindow(win_name, square_size, square_size)
firstframe = False
# delete earlier frame data
frames_dict = {
f: frames_dict[f] for f in frames_dict if f >= frame
}
parts_dict = {
f: parts_dict[f] for f in parts_dict if f >= frame
}
if time.time() > keep_awake_time:
keep_awake_time = time.time() + 10
prev_battery_level = battery_level
battery_level = conn.query_battery()
if prev_battery_level != battery_level:
print(f"Battery level: {battery_level}")
except OSError:
print("image corrupted")
# process UI events (e.g. window closing) and poll for a keypress
key = cv2.pollKey() & 0xFF
if key == ord("1"):
rotation_lock = True
rotation = 0
elif key == ord("2"):
rotation_lock = True
rotation = 90
elif key == ord("3"):
rotation_lock = True
rotation = 180
elif key == ord("4"):
rotation_lock = True
rotation = 270
elif key == ord("r"):
rotation_lock = False
elif (
key == ord("q")
or key == 27
or cv2.getWindowProperty(win_name, cv2.WND_PROP_AUTOSIZE) == -1
):
print("window closed")
break
elif key == ord("w"):
with open("out.jpg", "wb") as fd:
ret = fd.write(pic_buf)
print("Wrote " + str(ret) + " bytes to out.jpg")
elif key == ord("+"):
if brightness < 100:
brightness += 10
received_data = conn.set_brightness(brightness)
print("Received data:", received_data)
elif key == ord("-"):
if brightness > 0:
brightness -= 10
received_data = conn.set_brightness(brightness)
print("Received data:", received_data)
elif key == ord("f"):
fullframe = not fullframe
elif key == ord("d"):
debug = not debug
finally:
# stop stream and close
conn.stop_video()
conn.close()
cv2.destroyAllWindows()
if __name__ == "__main__":
main()
{
"nodes": {
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1767039857,
"narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
"owner": "NixOS",
"repo": "flake-compat",
"rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "flake-compat",
"type": "github"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"git-hooks": {
"inputs": {
"flake-compat": "flake-compat",
"gitignore": "gitignore",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1772665116,
"narHash": "sha256-XmjUDG/J8Z8lY5DVNVUf5aoZGc400FxcjsNCqHKiKtc=",
"owner": "cachix",
"repo": "git-hooks.nix",
"rev": "39f53203a8458c330f61cc0759fe243f0ac0d198",
"type": "github"
},
"original": {
"owner": "cachix",
"repo": "git-hooks.nix",
"type": "github"
}
},
"gitignore": {
"inputs": {
"nixpkgs": [
"git-hooks",
"nixpkgs"
]
},
"locked": {
"lastModified": 1709087332,
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
"owner": "hercules-ci",
"repo": "gitignore.nix",
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "gitignore.nix",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1770073757,
"narHash": "sha256-Vy+G+F+3E/Tl+GMNgiHl9Pah2DgShmIUBJXmbiQPHbI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "47472570b1e607482890801aeaf29bfb749884f6",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1772598333,
"narHash": "sha256-YaHht/C35INEX3DeJQNWjNaTcPjYmBwwjFJ2jdtr+5U=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "fabb8c9deee281e50b1065002c9828f2cf7b2239",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-25.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"git-hooks": "git-hooks",
"nixpkgs": "nixpkgs_2"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}
{
description = "A flake for endscopetool";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
flake-utils.url = "github:numtide/flake-utils";
git-hooks.url = "github:cachix/git-hooks.nix";
};
outputs =
{
self,
nixpkgs,
flake-utils,
git-hooks,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
python = pkgs.python313;
deps = ps: [
(ps.opencv4.override { enableGtk3 = true; })
ps.numpy
ps.pillow
];
python-with-mypy = python.withPackages (
ps:
(deps ps)
++ [
ps.mypy
ps.types-pillow
]
);
endscopetool = python.pkgs.buildPythonApplication {
pname = "endscopetool";
version = "0.1.0";
pyproject = true;
src = ./.;
nativeBuildInputs = [
python.pkgs.setuptools
];
dependencies = deps python.pkgs;
buildInputs = [ pkgs.gtk3 ];
};
pre-commit-check = git-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixfmt-rfc-style.enable = true;
mypy = {
enable = true;
settings = {
binPath = "${python-with-mypy}/bin/mypy";
};
};
ruff.enable = true;
ruff-format.enable = true;
};
};
in
{
packages.default = endscopetool;
apps.default = {
type = "app";
program = "${endscopetool}/bin/endscopetool";
};
checks = {
inherit pre-commit-check;
};
formatter =
let
config = self.checks.${system}.pre-commit-check.config;
script = ''
${pkgs.lib.getExe config.package} run --all-files --config ${config.configFile}
'';
in
pkgs.writeShellScriptBin "pre-commit-run" script;
devShells.default = pkgs.mkShell {
inherit (pre-commit-check) shellHook;
buildInputs = pre-commit-check.enabledPackages;
packages = [
pkgs.nixfmt-rfc-style
pkgs.gtk3
(python.withPackages deps)
];
};
}
);
}
Mozilla Public License Version 2.0
==================================
1. Definitions
--------------
1.1. "Contributor"
means each individual or legal entity that creates, contributes to
the creation of, or owns Covered Software.
1.2. "Contributor Version"
means the combination of the Contributions of others (if any) used
by a Contributor and that particular Contributor's Contribution.
1.3. "Contribution"
means Covered Software of a particular Contributor.
1.4. "Covered Software"
means Source Code Form to which the initial Contributor has attached
the notice in Exhibit A, the Executable Form of such Source Code
Form, and Modifications of such Source Code Form, in each case
including portions thereof.
1.5. "Incompatible With Secondary Licenses"
means
(a) that the initial Contributor has attached the notice described
in Exhibit B to the Covered Software; or
(b) that the Covered Software was made available under the terms of
version 1.1 or earlier of the License, but not also under the
terms of a Secondary License.
1.6. "Executable Form"
means any form of the work other than Source Code Form.
1.7. "Larger Work"
means a work that combines Covered Software with other material, in
a separate file or files, that is not Covered Software.
1.8. "License"
means this document.
1.9. "Licensable"
means having the right to grant, to the maximum extent possible,
whether at the time of the initial grant or subsequently, any and
all of the rights conveyed by this License.
1.10. "Modifications"
means any of the following:
(a) any file in Source Code Form that results from an addition to,
deletion from, or modification of the contents of Covered
Software; or
(b) any new file in Source Code Form that contains any Covered
Software.
1.11. "Patent Claims" of a Contributor
means any patent claim(s), including without limitation, method,
process, and apparatus claims, in any patent Licensable by such
Contributor that would be infringed, but for the grant of the
License, by the making, using, selling, offering for sale, having
made, import, or transfer of either its Contributions or its
Contributor Version.
1.12. "Secondary License"
means either the GNU General Public License, Version 2.0, the GNU
Lesser General Public License, Version 2.1, the GNU Affero General
Public License, Version 3.0, or any later versions of those
licenses.
1.13. "Source Code Form"
means the form of the work preferred for making modifications.
1.14. "You" (or "Your")
means an individual or a legal entity exercising rights under this
License. For legal entities, "You" includes any entity that
controls, is controlled by, or is under common control with You. For
purposes of this definition, "control" means (a) the power, direct
or indirect, to cause the direction or management of such entity,
whether by contract or otherwise, or (b) ownership of more than
fifty percent (50%) of the outstanding shares or beneficial
ownership of such entity.
2. License Grants and Conditions
--------------------------------
2.1. Grants
Each Contributor hereby grants You a world-wide, royalty-free,
non-exclusive license:
(a) under intellectual property rights (other than patent or trademark)
Licensable by such Contributor to use, reproduce, make available,
modify, display, perform, distribute, and otherwise exploit its
Contributions, either on an unmodified basis, with Modifications, or
as part of a Larger Work; and
(b) under Patent Claims of such Contributor to make, use, sell, offer
for sale, have made, import, and otherwise transfer either its
Contributions or its Contributor Version.
2.2. Effective Date
The licenses granted in Section 2.1 with respect to any Contribution
become effective for each Contribution on the date the Contributor first
distributes such Contribution.
2.3. Limitations on Grant Scope
The licenses granted in this Section 2 are the only rights granted under
this License. No additional rights or licenses will be implied from the
distribution or licensing of Covered Software under this License.
Notwithstanding Section 2.1(b) above, no patent license is granted by a
Contributor:
(a) for any code that a Contributor has removed from Covered Software;
or
(b) for infringements caused by: (i) Your and any other third party's
modifications of Covered Software, or (ii) the combination of its
Contributions with other software (except as part of its Contributor
Version); or
(c) under Patent Claims infringed by Covered Software in the absence of
its Contributions.
This License does not grant any rights in the trademarks, service marks,
or logos of any Contributor (except as may be necessary to comply with
the notice requirements in Section 3.4).
2.4. Subsequent Licenses
No Contributor makes additional grants as a result of Your choice to
distribute the Covered Software under a subsequent version of this
License (see Section 10.2) or under the terms of a Secondary License (if
permitted under the terms of Section 3.3).
2.5. Representation
Each Contributor represents that the Contributor believes its
Contributions are its original creation(s) or it has sufficient rights
to grant the rights to its Contributions conveyed by this License.
2.6. Fair Use
This License is not intended to limit any rights You have under
applicable copyright doctrines of fair use, fair dealing, or other
equivalents.
2.7. Conditions
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
in Section 2.1.
3. Responsibilities
-------------------
3.1. Distribution of Source Form
All distribution of Covered Software in Source Code Form, including any
Modifications that You create or to which You contribute, must be under
the terms of this License. You must inform recipients that the Source
Code Form of the Covered Software is governed by the terms of this
License, and how they can obtain a copy of this License. You may not
attempt to alter or restrict the recipients' rights in the Source Code
Form.
3.2. Distribution of Executable Form
If You distribute Covered Software in Executable Form then:
(a) such Covered Software must also be made available in Source Code
Form, as described in Section 3.1, and You must inform recipients of
the Executable Form how they can obtain a copy of such Source Code
Form by reasonable means in a timely manner, at a charge no more
than the cost of distribution to the recipient; and
(b) You may distribute such Executable Form under the terms of this
License, or sublicense it under different terms, provided that the
license for the Executable Form does not attempt to limit or alter
the recipients' rights in the Source Code Form under this License.
3.3. Distribution of a Larger Work
You may create and distribute a Larger Work under terms of Your choice,
provided that You also comply with the requirements of this License for
the Covered Software. If the Larger Work is a combination of Covered
Software with a work governed by one or more Secondary Licenses, and the
Covered Software is not Incompatible With Secondary Licenses, this
License permits You to additionally distribute such Covered Software
under the terms of such Secondary License(s), so that the recipient of
the Larger Work may, at their option, further distribute the Covered
Software under the terms of either this License or such Secondary
License(s).
3.4. Notices
You may not remove or alter the substance of any license notices
(including copyright notices, patent notices, disclaimers of warranty,
or limitations of liability) contained within the Source Code Form of
the Covered Software, except that You may alter any license notices to
the extent required to remedy known factual inaccuracies.
3.5. Application of Additional Terms
You may choose to offer, and to charge a fee for, warranty, support,
indemnity or liability obligations to one or more recipients of Covered
Software. However, You may do so only on Your own behalf, and not on
behalf of any Contributor. You must make it absolutely clear that any
such warranty, support, indemnity, or liability obligation is offered by
You alone, and You hereby agree to indemnify every Contributor for any
liability incurred by such Contributor as a result of warranty, support,
indemnity or liability terms You offer. You may include additional
disclaimers of warranty and limitations of liability specific to any
jurisdiction.
4. Inability to Comply Due to Statute or Regulation
---------------------------------------------------
If it is impossible for You to comply with any of the terms of this
License with respect to some or all of the Covered Software due to
statute, judicial order, or regulation then You must: (a) comply with
the terms of this License to the maximum extent possible; and (b)
describe the limitations and the code they affect. Such description must
be placed in a text file included with all distributions of the Covered
Software under this License. Except to the extent prohibited by statute
or regulation, such description must be sufficiently detailed for a
recipient of ordinary skill to be able to understand it.
5. Termination
--------------
5.1. The rights granted under this License will terminate automatically
if You fail to comply with any of its terms. However, if You become
compliant, then the rights granted under this License from a particular
Contributor are reinstated (a) provisionally, unless and until such
Contributor explicitly and finally terminates Your grants, and (b) on an
ongoing basis, if such Contributor fails to notify You of the
non-compliance by some reasonable means prior to 60 days after You have
come back into compliance. Moreover, Your grants from a particular
Contributor are reinstated on an ongoing basis if such Contributor
notifies You of the non-compliance by some reasonable means, this is the
first time You have received notice of non-compliance with this License
from such Contributor, and You become compliant prior to 30 days after
Your receipt of the notice.
5.2. If You initiate litigation against any entity by asserting a patent
infringement claim (excluding declaratory judgment actions,
counter-claims, and cross-claims) alleging that a Contributor Version
directly or indirectly infringes any patent, then the rights granted to
You by any and all Contributors for the Covered Software under Section
2.1 of this License shall terminate.
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
end user license agreements (excluding distributors and resellers) which
have been validly granted by You or Your distributors under this License
prior to termination shall survive termination.
************************************************************************
* *
* 6. Disclaimer of Warranty *
* ------------------------- *
* *
* Covered Software is provided under this License on an "as is" *
* basis, without warranty of any kind, either expressed, implied, or *
* statutory, including, without limitation, warranties that the *
* Covered Software is free of defects, merchantable, fit for a *
* particular purpose or non-infringing. The entire risk as to the *
* quality and performance of the Covered Software is with You. *
* Should any Covered Software prove defective in any respect, You *
* (not any Contributor) assume the cost of any necessary servicing, *
* repair, or correction. This disclaimer of warranty constitutes an *
* essential part of this License. No use of any Covered Software is *
* authorized under this License except under this disclaimer. *
* *
************************************************************************
************************************************************************
* *
* 7. Limitation of Liability *
* -------------------------- *
* *
* Under no circumstances and under no legal theory, whether tort *
* (including negligence), contract, or otherwise, shall any *
* Contributor, or anyone who distributes Covered Software as *
* permitted above, be liable to You for any direct, indirect, *
* special, incidental, or consequential damages of any character *
* including, without limitation, damages for lost profits, loss of *
* goodwill, work stoppage, computer failure or malfunction, or any *
* and all other commercial damages or losses, even if such party *
* shall have been informed of the possibility of such damages. This *
* limitation of liability shall not apply to liability for death or *
* personal injury resulting from such party's negligence to the *
* extent applicable law prohibits such limitation. Some *
* jurisdictions do not allow the exclusion or limitation of *
* incidental or consequential damages, so this exclusion and *
* limitation may not apply to You. *
* *
************************************************************************
8. Litigation
-------------
Any litigation relating to this License may be brought only in the
courts of a jurisdiction where the defendant maintains its principal
place of business and such litigation shall be governed by laws of that
jurisdiction, without reference to its conflict-of-law provisions.
Nothing in this Section shall prevent a party's ability to bring
cross-claims or counter-claims.
9. Miscellaneous
----------------
This License represents the complete agreement concerning the subject
matter hereof. If any provision of this License is held to be
unenforceable, such provision shall be reformed only to the extent
necessary to make it enforceable. Any law or regulation which provides
that the language of a contract shall be construed against the drafter
shall not be used to construe this License against a Contributor.
10. Versions of the License
---------------------------
10.1. New Versions
Mozilla Foundation is the license steward. Except as provided in Section
10.3, no one other than the license steward has the right to modify or
publish new versions of this License. Each version will be given a
distinguishing version number.
10.2. Effect of New Versions
You may distribute the Covered Software under the terms of the version
of the License under which You originally received the Covered Software,
or under the terms of any subsequent version published by the license
steward.
10.3. Modified Versions
If you create software not governed by this License, and you want to
create a new license for such software, you may create and use a
modified version of this License if you rename the license and remove
any references to the name of the license steward (except to note that
such modified license differs from this License).
10.4. Distributing Source Code Form that is Incompatible With Secondary
Licenses
If You choose to distribute Source Code Form that is Incompatible With
Secondary Licenses under the terms of this version of the License, the
notice described in Exhibit B of this License must be attached.
Exhibit A - Source Code Form License Notice
-------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
If it is not possible or desirable to put the notice in a particular
file, then You may include the notice in a location (such as a LICENSE
file in a relevant directory) where a recipient would be likely to look
for such a notice.
You may add additional accurate notices of copyright ownership.
Exhibit B - "Incompatible With Secondary Licenses" Notice
---------------------------------------------------------
This Source Code Form is "Incompatible With Secondary Licenses", as
defined by the Mozilla Public License, v. 2.0.
[project]
name = "endscopetool"
version = "0.1.0"
description = "Python implementation of the endscopetool Android application"
requires-python = ">=3.12"
dependencies = [
"numpy",
"pillow",
"opencv"
]
[project.scripts]
endscopetool = "endscopetool:main"
[tool.setuptools]
py-modules = ["endscopetool"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment