Python/ django
59K subscribers
2.08K photos
62 videos
47 files
2.8K links
по всем вопросам @haarrp

@itchannels_telegram - 🔥 все ит-каналы

@ai_machinelearning_big_data -ML

@ArtificialIntelligencedl -AI

@datascienceiot - 📚

@pythonlbooks

РКН: clck.ru/3FmxmM
加入频道
🖥 drf-yasg - Yet another Swagger generator

Automated generation of real Swagger/OpenAPI 2.0 schemas from Django REST Framework code.

Автоматическая генерация документации API Django REST Framework.

pip install -U drf-yasg

Github
Project

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 🖥SQLiDetector

Script that helps you to detect SQL injection "Error based" by sending multiple requests with 14 payloads and checking for 152 regex patterns for different databases.

Python-скрипт, позволяющий обнаружить
SQL-инъекции путем отправки нескольких запросов и проверки regex-шаблонами для различных баз данных.

Github

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Googlesearch 🖥

A Python library for scraping the Google search engine.

googlesearch - это библиотека на Python для удобного поиска в Google. googlesearch использует запросы и BeautifulSoup4 для crhtqgbyuf Google.

Github
Docs

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Python: File Organisation Automated!

Простой скрипт по управлению файлами на пк с помощью Python 🦸‍♂

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
🖥 GIF

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
🖥 Voice Recorder using Python

Python скрипт для записи голоса
.

Github
Docs

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Extracting Tables from a PDF

Извлечение текста из PDF.

Github

@pythonl
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
🖥 Regular Expressions in Python: Free course

Бесплатный курс по регулярным выражениям на Python.

📌 Course

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
☑️ IBM Free course: Python Basics for Data Science

Этот бесплатный курс от IBM по Python представляет собой удобное для начинающих введение в Python для Data Science.

📌 Course

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Clarifai's New Python SDK!

pip install -U clarifai

Импортировать наборы данных вместе с аннотациями.
- Создавать приложения, входы, наборы данных и выполнять прогнозирование моделей.
- Доступ к моделям, рабочим процессам и другим LLM от сообщества Clarifai с помощью всего нескольких строк кода.


Github
Demo

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🌏 Country details using Python

Детализация информации о стране с помощью Python.

pip install countryinfo

Github

@pythonl
🖥 FastStream

FastStream is a powerful and easy-to-use Python framework for building asynchronous services.

FastStream - мощный и простой в использовании фреймворк на Python для создания асинхронных сервисов, взаимодействующих с потоками событий, таких как Apache Kafka и RabbitMQ.

Github

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Laptop Notifications with Python

Выводим уведомления на ноутбуке с помощью Python.

Github

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Simple trick to remove background using Python, you can reduce code lines to 5

Простой скрипт, который убирает фон с помощью Python.

pip install rembg # for library
pip install rembg[cli] # for library + cli


Github

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Image Color Extraction with Python

Извлечение цвета из изображения с помощью Python.

Github

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 HarvardX: CS50's Introduction to Programming with Python (бесплатный курс)

Бесплатный курс для Python программистов от Гарварда по основам программирования на Python, науки о данных, веб-программировании, парсинга и др.

📌 Course

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Hyperbola graph using Python

График гиперболы с использованием Python.

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Django Free Courses with Certificate!

Бесплатные курсы 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
🖥 Download YouTube videos using Python

Загрузка видеороликов с YouTube с помощью Python.

📌 Github

@pythonl
Please open Telegram to view this post
VIEW IN TELEGRAM