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
# Made by Xemulated | GPL-2 | |
import os | |
def install_apk_files(directory): | |
apk_files = [file for file in os.listdir(directory) if file.endswith(".apk")] | |
if not apk_files: | |
print("No APK files found in the directory.") | |
return |
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 praw | |
import os | |
import shutil | |
import requests | |
from tqdm import tqdm | |
# Initialize PRAW with your Reddit API credentials | |
# Get your API creds at https://www.reddit.com/prefs/apps | |
reddit = praw.Reddit( | |
client_id='YOUR_CLIENT_ID', |