This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import time | |
| import os | |
| import base64 | |
| import json | |
| # Exotel credentials (replace with actual values) | |
| EXOTEL_SID = "" | |
| API_KEY = "" | |
| API_TOKEN = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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/* |