download any jar files from internet
import os
import urllib.request
# Create folder in the current directory (or adjust path as needed)
lib_dir = "./lib" # Use "/content/lib" if running in Google Colab
os.makedirs(lib_dir, exist_ok=True)
# URLs of required .jar files (updated to a valid version)
jar_urls = [
"https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar"
]
# Download each JAR file
for url in jar_urls:
try:
filename = url.split("/")[-1]
filepath = os.path.join(lib_dir, filename)
print(f"Downloading {filename}...")
urllib.request.urlretrieve(url, filepath)
print(f"✅ {filename} downloaded to {filepath}")
except Exception as e:
print(f"❌ Error downloading {url}: {e}")
print("✅ All downloads completed")