MCPcopy Create free account
hub / github.com/Breakthrough/PySceneDetect / quote

Function quote

scenedetect/_thirdparty/simpletable.py:55–63  ·  view source on GitHub ↗
(string)

Source from the content-addressed store, hash-verified

53
54# noinspection PyCompatibility,PyUnresolvedReferences
55def quote(string):
56 try:
57 from urllib.parse import quote
58
59 return quote(string)
60 except ModuleNotFoundError:
61 from urllib import pathname2url
62
63 return pathname2url(string)
64
65
66class SimpleTableCell:

Callers 1

__str__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected