This media is not supported in your browser
VIEW IN TELEGRAM
If you want to effortlessly animate your matplotlib plot in Python, use gif.
Если вы хотите без особых усилий анимировать график
matplotlib
в Python, используйте библиотеку gif.Следующая анимация создана с помощью gif.
pip install gif
import gif
from random import randint
from matplotlib import pyplot as plt
x = [randint(0, 100) for _ in range(100)]
y = [randint(0, 100) for _ in range(100)]
# (Optional) Set the dots per inch resolution to 300
gif.options.matplotlib["dpi"] = 300
# Decorate a plot function with @gif.frame
@gif.frame
def plot(i):
xi = x[i*10:(i+1)*10]
yi = y[i*10:(i+1)*10]
plt.scatter(xi, yi)
plt.xlim((0, 100))
plt.ylim((0, 100))
# Construct "frames"
frames = [plot(i) for i in range(10)]
# Save "frames" to gif with a specified duration (milliseconds) between each frame
gif.save(frames, 'example.gif', duration=50)
• Github
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
🎉🎉🎉 Download the latest version of Python 3.12.0🎉🎉🎉
Вышел стабильный выпуск Python 3.12.0
👍 лайк, если ждал новую версию
https://www.python.org/downloads/release/python-3120/
@pythonl
Вышел стабильный выпуск Python 3.12.0
👍 лайк, если ждал новую версию
https://www.python.org/downloads/release/python-3120/
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
pip install -U clarifai
Импортировать наборы данных вместе с аннотациями.
- Создавать приложения, входы, наборы данных и выполнять прогнозирование моделей.
- Доступ к моделям, рабочим процессам и другим LLM от сообщества Clarifai с помощью всего нескольких строк кода.
• Github
• Demo
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Бесплатные курсы Django!
Хотите с легкостью создавать надежные и масштабируемые веб-приложения? Django - мы собрали для вас список бесплатных курсов по всем топикам.
1. Learn Django 3 and Start Creating Websites With Python.
https://freecodecamp.org/news/learn-django-3-and-start-creating-websites-with-python/
2. Django основы.
https://www.youtube.com/playlist?list=PLysMDSbb9HcyLnXB9eLiYmsznjzEXo_6W
3. CRM App Development with Django, Python, and MySQL.
https://freecodecamp.org/news/crm-app-development-with-django-python-and-mysql/
4. How to Deploy a Django App on Render
https://freecodecamp.org/news/deploying-a-django-app-to-render/
5. Use Django REST Framework to Create Web APIs
https://freecodecamp.org/news/use-django-rest-framework-to-create-web-apis/
6. Django Test Suite Introduction – How to Increase Your Confidence as a Python Developer
https://freecodecamp.org/news/increase-developer-confidence-with-a-great-django-test-suite/
7. Django Project Best Practices That'll Keep Your Developers Happy
https://freecodecamp.org/news/django-project-best-practices-for-happy-developers/
8. Django For Everybody - Full Python University Course
https://youtube.com/watch?v=o0XbHvKxw7Y
9. How to Build a Secure Web Application.
https://freecodecamp.org/news/how-to-build-a-secure-django-web-app/
10. Основы создания веб-приложений с Django
https://stepik.org/course/177769/promo
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
📌Видео
• Папка отборных каналов для Python разработчиков -https://yangx.top/addlist/8vDUwYRGujRmZjFi
• Cсылка на бота: @Youtubedtg_bot
• Полный код бота: https://github.com/Develp10/telegramyoutubebot
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
YouTube
Пишем телеграм бота для скачивания #yotube видео
Туториал от получения токена до размещения бота на хостинге.
Для бота используется самая продвинутая библиотеку aiogram3, бот хостится абсолютно бесплатно при помощи Replit.
• Телеграм - https://yangx.top/pythonl
• Машинное обучение - https://yangx.top/ai_machi…
Для бота используется самая продвинутая библиотеку aiogram3, бот хостится абсолютно бесплатно при помощи Replit.
• Телеграм - https://yangx.top/pythonl
• Машинное обучение - https://yangx.top/ai_machi…
📲 Using your mobile as webcam.
Использование мобильного телефона в качестве веб-камеры.
• opencv-python
@pythonl
Использование мобильного телефона в качестве веб-камеры.
• opencv-python
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
PyDork предоставляет возможность легко автоматизировать сбор результатов поиска в таких поисковых системах, как Google, Bing, DuckDuckGo, Baidu и Yahoo.
pip install pydork
from pydork.engine import SearchEngine
# SearchEngine
search_engine = SearchEngine()
search_engine.set('google')
search_result = search_engine.search('python')
@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM