⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.184
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
mysqlsh
/
lib
/
python3.8
/
site-packages
/
svg
/
View File Name :
_helpers.py
from __future__ import annotations from ._types import Length, Number def escape(text: str) -> str: """Make the text safe to use in SVG. """ text = text.replace("&", "&") text = text.replace(">", ">") text = text.replace("<", "<") return text def mm(val: Number) -> Length: """Explicitly specify mm unit for the value. """ return Length(value=val, unit='mm') def px(val: Number) -> Length: """Explicitly specify px unit for the value. """ return Length(value=val, unit='px')