html_template = """
<html>
<head>
<title>Отчет</title>
</head>
<body>
<h4>Текущая дата: {CurrentDate}</h4>
</body>
</html>
"""
print(html_template.format(CurrentDate=str(now_time.strftime("%Y.%m.%d %H-%M-%S"))))
print("Текущая дата: {CurrentDate2}".format(CurrentDate2=str(now_time.strftime("%d.%m.%Y_%H-%M-%S"))))
unexpected EOF while parsing
"Текущая дата: {CurrentDate} def".format(CurrentDate=str(now_time.strftime("%d.%m.%Y_%H-%M-%S")))
print html_template.format(CurrentDate=str(now_time.strftime("%d.%m.%Y_%H-%M-%S"))
html_template1 = """
<html>
<head>
<title>Отчет номер: """ + str(now_time.strftime("%d.%m.%Y_%H-%M-%S")) + """</title>
</head>
<body>
<table border="1">
<tr>
<td>Имя</td>
<td>Результат</td>
</tr>
""" + """<tr>
<td>""" + CurrentNameJob + """</td>
<td>""" + BuildStatus + """</td>
</tr>
</table>
</body>
</html>
"""
html_template = """
<html>
<head>
<title>Отчет номер: {current_date}</title>
</head>
<body>
<table border="1">
<tr>
<td>Имя</td>
<td>Результат</td>
</tr>
<tr>
<td>{arg_w_name}</td>
<td>{arg_w_res}</td>
</tr>
</table>
</body>
</html>
"""
print html_template.format(current_date=str(now_time.strftime("%d.%m.%Y_%H-%M-%S")), arg_w_name=CurrentNameJob, arg_w_res=BuildStatus)
ImportError: cannot import name 'command_line'
pip install jenkinsapi
import jenkinsapi
from jenkinsapi.jenkins import Jenkins
J = Jenkins('http://jenkins-2008r2-srv:8080')
J.version
Out[6]: '1.575'
#Импорт библиотек
import pandas as pd
from sqlalchemy import create_engine
#Подключение к БД
oracledb = create_engine('oracle://ВАШ_ПОЛЬЗОВАТЕЛЬ:ПАРОЛЬ@ИМЯ_ПОДКЛЮЧЕНИЯ')
#Запрос к БД
query = """
select ПОЛЕ1,ПОЛЕ2 from ИМЯ_ТАБЛИЦЫ
"""
#Прочитать запрос
data1 = pd.read_sql_query(query,oracledb,coerce_float=True)
print(data1)