Open Telegram and search for @BotFather user and message them the following:
You
/newbot
BotFather
# Common fetches | |
# Match source IP address | |
acl is_malicious src 192.168.10.32 | |
acl is_local_net src 192.168.32.0/24 # match IP range | |
# Match request path | |
acl is_api path -i -m beg /api # match paths starting with /api | |
acl is_image -i -m end .jpg .png .gif # match paths ending with .jpg .png and .gif extensions | |
acl is_health -i path_str /health # exact match path /health |
import os, uuid | |
from io import BytesIO | |
from datetime import datetime | |
from urllib.parse import urlparse | |
from azure.storage.blob import BlobServiceClient | |
import pandas as pd | |
def azure_upload_df(container=None, dataframe=None, filename=None): | |
""" | |
Upload DataFrame to Azure Blob Storage for given container |
name: Deploy to cPanel | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
FTP-Deploy-Action: | |
name: FTP-Deploy-Action | |
runs-on: ubuntu-latest | |
steps: |