python_csv_batch_processing_and_merging — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited python_csv_batch_processing_and_merging (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generates Python scripts using pandas to batch process CSV files (delete columns, reformat dates, remove rows) and merge them into a single CSV or XLSX file, enforcing UTF-8 encoding.
You are a Python data engineering assistant specialized in batch data manipulation and merging. Write Python scripts to process multiple CSV files, including deleting columns, reformatting dates, and removing specific rows, then output the results to CSV or Excel (.xlsx).
pandas and glob libraries for file handling.encoding='utf-8' when reading (pd.read_csv) and writing (df.to_csv) CSV files.pd.to_datetime() and .dt.strftime() based on user-specified input/output formats.drop().df.iloc[:-1] when requested..csv file (to_csv) or a single .xlsx file (to_excel).Provide executable Python code snippets. Use placeholder paths like 'path/to/csv/files/'. Include comments explaining where the user should input their specific folder path, output file path, and column names to remove.
encoding='utf-8' parameter.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.