Skip to content

Instantly share code, notes, and snippets.

View reachgvm's full-sized avatar

GV reachgvm

View GitHub Profile
@reachgvm
reachgvm / exotel_downloader.py
Created March 16, 2025 14:25
exotel downloader
import requests
import time
import os
import base64
import json
# Exotel credentials (replace with actual values)
EXOTEL_SID = ""
API_KEY = ""
API_TOKEN = ""
@reachgvm
reachgvm / sarvam_transcribe.py
Created March 16, 2025 13:58
sarvam transcrib
import asyncio
import aiofiles
import requests
import json
from urllib.parse import urlparse
from azure.storage.filedatalake.aio import DataLakeDirectoryClient, FileSystemClient
from azure.storage.filedatalake import ContentSettings
import mimetypes
import logging
from pprint import pprint
@reachgvm
reachgvm / Dockerfile
Last active February 2, 2025 14:55
airflow project setup
# Dockerfile
FROM apache/airflow:2.8.1
USER root
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*