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 os | |
import shutil | |
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument( | |
"--source", "-s", help="Set the source folder", required=True) | |
parser.add_argument("--destination", "-d", | |
help="Set the destination folder", required=True) | |
parser.add_argument("--hidden_files", "-hf", |
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 json | |
import random | |
import string | |
from time import sleep | |
def random_number(digits): | |
range_start = 10**(digits-1) | |
range_end = (10**digits)-1 | |
return random.randint(range_start, range_end) |