New pages
Jump to navigation
Jump to search
- 18:00, 8 August 2025 Python Download images from url contained in an excel file (hist | edit) [6,042 bytes] Bacchas (talk | contribs) (Created page with "<pre> import pandas as pd import requests import os from urllib.parse import urlparse, unquote # Import urlparse and unquote for robust URL handling import mimetypes # For guessing file extensions from content type import re # Load exported file df = pd.read_csv("nsimage.csv") # or .xlsx with pd.read_excel image_column = "Amazon Image 02" # Update to your column name containing the image URLs output_folder = "netsuite_downloads" os.makedirs(output_folder, exist_ok=...")
- 15:21, 8 August 2025 Convert Python Script into a windows exe file (hist | edit) [452 bytes] Bacchas (talk | contribs) (Created page with "===To turn a Python script into an executable (.exe) file on Windows, you can use tools like PyInstaller.=== '''Here are some steps using PyInstaller:''' *Install PyInstaller (if it's not already installed): pip install pyinstaller * Navigate to your script's directory in the command prompt. * Run this command: pyinstaller --onefile [your_script_name].py * This will bundle all necessary Python dependencies and create a single executable file.")
- 14:39, 8 August 2025 CONVERT POWERSHELL SCRIPT TO EXE (hist | edit) [132 bytes] Bacchas (talk | contribs) (Created page with "== Install Module == Install-Module -Name ps2exe -Force == Convert your Script == ps2exe -input myscript.ps1 -output myscript.exe")
- 19:42, 26 June 2025 FFMPEG (hist | edit) [327 bytes] Bacchas (talk | contribs) (Created page with "==Resize Image == '''Resize With only, keep height same ratio''' ffmpeg -i input.jpg -vf scale=1280:-1 output.jpg")