from zipfile import ZipFile import os # Klasörü yeniden oluştur output_folder = "/mnt/data/pixc_site_updated" os.makedirs(output_folder, exist_ok=True) # HTML içeriği (güncellenmiş haliyle) html_content = """ PIXC - GetPIXELized
PIXC Logo

PIXC - The Glitch That Prints Gains

Retro-futuristic chaos meets memecoin magic.

Tokenomics

Roadmap

""" # HTML dosyasını kaydet html_path = os.path.join(output_folder, "index.html") with open(html_path, "w") as f: f.write(html_content) # ZIP dosyasını oluştur zip_file_path = "/mnt/data/pixc_updated_site.zip" with ZipFile(zip_file_path, 'w') as zipf: for root, _, files in os.walk(output_folder): for file in files: full_path = os.path.join(root, file) relative_path = os.path.relpath(full_path, output_folder) zipf.write(full_path, relative_path) zip_file_path