<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.osvex.com/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="0.91">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>Docs OS - prog:python</title>
        <description></description>
        <link>https://wiki.osvex.com/</link>
        <lastBuildDate>Wed, 10 Jun 2026 09:27:32 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://wiki.osvex.com/lib/exe/fetch.php?media=wiki:logo.png</url>
            <title>Docs OS</title>
            <link>https://wiki.osvex.com/</link>
        </image>
        <item>
            <title>Django</title>
            <link>https://wiki.osvex.com/doku.php?id=prog:python:django&amp;rev=1718695528&amp;do=diff</link>
            <description>Django

Створення проекта Django

cd django

	*  Встановлення пітона sudo apt install python3-pip
	*  Встановлення віртуального оточення sudo pip install pipenv
	*  Встановлення джанго</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 18 Jun 2024 07:25:28 +0000</pubDate>
        </item>
        <item>
            <title>Telegram Bot</title>
            <link>https://wiki.osvex.com/doku.php?id=prog:python:tgbot&amp;rev=1718695648&amp;do=diff</link>
            <description>Telegram Bot


sudo apt -y install python3-pip

pip intall pyTelegramBotAPI



Основа


import telebot

bot = telebot.TeleBot(&#039;5614818833:AAFxbP4MEPWzz-DNadxzfR5N__i4x2AuuP4&#039;)

@bot.message_handler(commands=[&#039;start&#039;])
def main(message):
    bot.send_message(message.chat.id, &#039;&lt;b&gt;Привіт, друже!&lt;/b&gt;&#039;, parse_mode=&#039;html&#039;)

@bot.message_handler(commands=[&#039;check&#039;])
def main(message):
    bot.send_message(message.chat.id, &#039;Все добре!&#039;, parse_mode=&#039;html&#039;)

bot.polling(none_stop=True)…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 18 Jun 2024 07:27:28 +0000</pubDate>
        </item>
    </channel>
</rss>
