При запуске открытия и записи excel файла в Python (openpyxl) выдает предупреждение

Начал изучать openpyxl, написал простейшую программку - открыть файл xlsx, записать туда Hello world! Вот код:

from openpyxl import Workbook
workbook = Workbook()
sheet = workbook.active
sheet["A1"] = "hello"
sheet["B1"] = "world!"
workbook.save(filename="hello_world.xlsx")

Почему интерпретатор выдает предупреждение, хотя файл открывается и записывается корректно?

C:\Users\Alien\PycharmProjects\Parsing\venv\lib\site-packages\urllib3\connectionpool.py:981: InsecureRequestWarning: Unverified HTTPS request is being made to host 'market.yandex.ru'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  warnings.warn(
<!DOCTYPE html>
<html><head><title>403</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>body{font-family:Arial,sans-serif;margin:0;padding:0;color:#000;background-color:#fff}.header{height:48px}.header__logo{display:inline-block;overflow:hidden;width:130px;height:48px;white-space:nowrap;text-indent:100%;background-repeat:no-repeat;background-position:center bottom}.header__code{font-size:32px;display:inline-block;overflow:hidden;width:76px;height:48px;text-align:center;color:#fff;background-color:#999}.header__logo_lang_ru{background-image:url(//yastatic.net/islands/_/5vJOTgN-leXxtlxIFPiM-vfC24o.png)}.header__logo_lang_en{background-image:url(//yastatic.net/islands/_/fGdVzvAAq7J8px5LpiysN6M_sy8.png)}.content{font-size:15px;line-height:20px;margin:20px 0 30px;padding-left:25px}.content__h1{font-size:21px;font-weight:400}.footer{line-height:30px;height:30px;padding:0 25px;border-top:1px solid #eee}.footer__copyright{font-size:13px}.link{color:#44b}.link:hover{color:#e00}</style>
<!--[if gt IE 8]><!--><link rel="stylesheet" href="captcha.min.css"/><!--<![endif]--><!--[if lte IE 8]><link rel="stylesheet" href="captcha.ie.min.css"/><![endif]-->
</head><body><div class='header'>
    <a class="header__logo header__logo_lang_ru" href="https://www.yandex.ru/">ЯндекÑ</a>
<div class='header__code'>403</div></div><div class='content'>
    <h1 class="content__h1">ДоÑтуп к&nbsp;нашему ÑервиÑу временно запрещён!</h1><p>Возможно, ваш компьютер заражён вредоноÑной программой, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки обращаетÑÑ Ðº&nbsp;ЯндекÑу.<br>Рекомендуем вам проверить компьютер на&nbsp;вируÑÑ‹ или обратитьÑÑ Ðº&nbsp;админиÑтратору вашей Ñети.</p><p>ЕÑли у&nbsp;Ð²Ð°Ñ Ð²Ð¾Ð·Ð½Ð¸ÐºÐ»Ð¸ проблемы или вы&nbsp;хотите задать Ð²Ð¾Ð¿Ñ€Ð¾Ñ Ð½Ð°ÑˆÐµÐ¹ Ñлужбе поддержки, пожалуйÑта, воÑпользуйтеÑÑŒ <a class="link" href="https://yandex.ru/support/captcha/" onclick="ym(15897442, 'reachGoal', 'support_complain', { 'req_id': '1602680940221556-3319146505757211261' }); return true;">формой обратной ÑвÑзи</a>.</p>
</div><div class='footer'><span class='footer__copyright'>©&nbsp;ЯндекÑ</span></div><!-- Yandex.Metrika counter --><script type="text/javascript">(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)}; m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)}) (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); ym(15897442, "init", { clickmap:true, trackLinks:true, accurateTrackBounce:true, webvisor:true, ut:"noindex", params:{ "service": "market", "req_id": "1602680940221556-3319146505757211261", "ident_type": "1" } });</script><noscript><div><img src="https://mc.yandex.ru/watch/15897442?ut=noindex" style="position:absolute; left:-9999px;" alt="" /></div></noscript><!-- /Yandex.Metrika counter --></body></html>

Process finished with exit code 0

Ответы (0 шт):