#!/bin/bash

# Clear the screen
clear;

# Set the session language to English
LANG=C
export LANG

# Function to run pyscan
function pyscan() {
    python <(curl -ks https://raw.githubusercontent.com/bashcode/Pyscan/master/pyscan.py) "$@"
}

# Run pyscan
pyscan "$@"
