python_developer
1.54K subscribers
3.74K photos
1.97K videos
232 files
434 links
کانال اموزش پایتون @Real_developer
تبلیغات پذیرفته میشود.
Download Telegram
Get PINCODE details using #Python
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Useful Python string formatting types base in placeholder
👍1
Image to pencil sketch using
Python libraries for ML
This media is not supported in your browser
VIEW IN TELEGRAM
Generate Barcode using Python
🖥 zarr - Python library for implementing compressed N-dimensional arrays

- pip install zarr

Zarr provides classes and functions for working with N-dimensional arrays, which behave like #NumPy arrays, but the data is divided into chunks and each chunk is compressed. If anyone is familiar with HDF5, Zarr arrays provide similar functionality, but they are more convenient.

Also, unlike HDF5, Zarr has better multithreading support.
String Methods in Python
This media is not supported in your browser
VIEW IN TELEGRAM
learneverythingai .pdf
3.8 MB
آموزش کتابخانه pandas در پایتون با مثال
🖥 چگونه با استفاده از پایتون متن مخفی را در داخل یک عکس پنهان کنیم؟

هیچ چیز پیچیده ای نیست، فقط به کتابخانه Stegano نیاز دارید

# pip install stegano

from stegano import lsb
secret = lsb.hide('image.png', 'очень секретный текст')
secret.save('secret_image.png')

print(lsb.reveal('secret_image.png'))
How to easily blur any image using PIL



from PIL import Image, ImageFilter

def blur_image(image_path, output_path, radius):
image = Image.open(image_path)
blurred_image = image.filter(ImageFilter.GaussianBlur(radius))
blurred_image.save(output_path)

blur_image('cat.jpg', 'cat_out.jpg', 3)
Image.open('cat_out.jpg')


🟡 In general, the PIL library has a lot of features and excellent documentation
This media is not supported in your browser
VIEW IN TELEGRAM
Convert Image to text

import pytesseract as t
from PIL import Image
img = Image.open("photo.jpg")
text = t.image_to_string(img)
print(text)
Transform your #Python code in an image
Downloading a Audio file from YouTube Video

Free Code: https://www.clcoding.com/2024/06/downloading-audio-file-from-youtube.html