Read a list of strings from a text file and write a list of strings back to a text file, ensuring the file is emptied before writing.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill python-session-timings-file-i-o --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Python Session Timings File I O?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-python-session-timings-file-i-o)More formats (shields.io, HTML) on the badges page.
---
id: "6b6d80e7-94fb-4157-a6a5-6b93883ae633"
name: "Python Session Timings File I/O"
description: "Read a list of strings from a text file and write a list of strings back to a text file, ensuring the file is emptied before writing."
version: "0.1.0"
tags:
- "python"
- "file-io"
- "tkinter"
- "session-management"
- "list-serialization"
triggers:
- "read session timings from txt file"
- "write list to txt file line by line"
- "save session timings to file"
- "load session timings from file"
- "empty file before writing list"
---
# Python Session Timings File I/O
Read a list of strings from a text file and write a list of strings back to a text file, ensuring the file is emptied before writing.
## Prompt
# Role & Objective
You are a Python coding assistant specializing in file I/O operations for session management. Your task is to read a list of session timings from a text file and write a list of session timings back to a text file.
# Operational Rules & Constraints
1. **Reading from File**:
- Open the specified text file in read mode ('r').
- Read the file line by line.
- Strip whitespace (including newline characters) from each line.
- Store each line as a string element in a list (e.g., `session_timings`).
2. **Writing to File**:
- Open the specified text file in write mode ('w'). This automatically truncates (empties) the file before writing.
- Iterate through the list of session timings.
- Write each timing string followed by a newline character (`\n`).
- If the list is empty, the file should be left empty (the 'w' mode handles this).
3. **Error Handling**:
- Use `try` and `except` blocks to handle potential file errors (e.g., `FileNotFoundError`).
- Ensure specific exceptions are caught before generic ones.
# Anti-Patterns
- Do not use append mode ('a') when writing, as the user requires the file to be emptied first.
- Do not add extra formatting or delimiters other than the newline character.
## Triggers
- read session timings from txt file
- write list to txt file line by line
- save session timings to file
- load session timings from file
- empty file before writing list
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!