1 В head страницы добавляем:
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs@2/webcomponents-loader.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/gh/zerodevx/zero-md@1/src/zero-md.min.js"></script>
import types | |
from functools import wraps | |
def humanify(name: str): | |
import re | |
return ' '.join(re.split('_+', name)) | |
def step(fn): |
import re | |
import inspect | |
from functools import wraps | |
from allure_commons import plugin_manager | |
from allure_commons.utils import uuid4, func_parameters, represent | |
def step(title, display_params=True): | |
if callable(title): |
# install_certifi.py | |
# | |
# sample script to install or update a set of default Root Certificates | |
# for the ssl module. Uses the certificates provided by the certifi package: | |
# https://pypi.python.org/pypi/certifi | |
import os | |
import os.path | |
import ssl | |
import stat |