Skip to content

Instantly share code, notes, and snippets.

View asvechkar's full-sized avatar
🏠
Working from home

Aleksey Svechkar asvechkar

🏠
Working from home
  • FRESH INTEL
  • Dubai
View GitHub Profile
@asvechkar
asvechkar / google_search.py
Created June 28, 2023 07:18
Google поиск через Python
pip install googlesearch-python
from googlesearch import search
# Define the query you want to search
query = "Python programming"
# Specify the number of search results you want to retrieve
num_results = 5
@asvechkar
asvechkar / load_from_instagram.py
Created June 28, 2023 07:19
Загружать посты с Нельзяграмма
pip install instaloader
import instaloader
# Create an instance of Instaloader
loader = instaloader.Instaloader()
# Define the target Instagram profile
target_profile = "instagram"
@asvechkar
asvechkar / extract_audio_from_video.py
Created June 28, 2023 07:21
Извлечь аудио с видеофайла
pip install moviepy
from moviepy.editor import VideoFileClip
# Define the path to the video file
video_path = "path/to/video/file.mp4"
# Create a VideoFileClip object
video_clip = VideoFileClip(video_path)