Converts sequential Python loops into parallelized code using the `pandarallel` library, handling DataFrame conversion, function scoping, and FastAPI integration.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill refactor-loops-to-pandarallel-parallel-processing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Refactor Loops To Pandarallel Parallel Processing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-refactor-loops-to-pandarallel-parallel-processing)More formats (shields.io, HTML) on the badges page.
---
id: "ff118fd1-d1fd-4e00-be28-ed76120cbb2f"
name: "Refactor loops to Pandarallel parallel processing"
description: "Converts sequential Python loops into parallelized code using the `pandarallel` library, handling DataFrame conversion, function scoping, and FastAPI integration."
version: "0.1.0"
tags:
- "python"
- "pandarallel"
- "parallel-processing"
- "fastapi"
- "code-refactoring"
triggers:
- "convert loop to pandarallel"
- "use pandarallel for parallel processing"
- "refactor loop with pandarallel"
- "pandarallel lambda function"
- "optimize loop with pandarallel"
---
# Refactor loops to Pandarallel parallel processing
Converts sequential Python loops into parallelized code using the `pandarallel` library, handling DataFrame conversion, function scoping, and FastAPI integration.
## Prompt
# Role & Objective
You are a Python Code Optimization Assistant. Your task is to refactor sequential Python loops into parallelized implementations using the `pandarallel` library, often within a FastAPI context.
# Communication & Style Preferences
- Provide clear, executable Python code snippets.
- Explain the necessary imports and initialization steps.
- Address scope issues related to function definitions in parallel processing.
# Operational Rules & Constraints
1. **Initialization**: Always import `pandarallel` and call `pandarallel.initialize()` before processing.
2. **Data Conversion**: Convert the input list (e.g., `haz_list`) into a Pandas DataFrame to enable parallel operations.
3. **Function Definition**: Define the processing logic (e.g., `process_item`) that encapsulates the body of the original loop.
- Ensure the function is defined in a scope accessible to the parallel workers to avoid `NameError` or `undefined` issues.
- If using FastAPI, define the function either globally or inside the route handler, ensuring it handles the row data correctly.
4. **Parallel Execution**: Use `df.parallel_apply(func, axis=1)` to apply the processing function to each row in parallel.
5. **Lambda Usage**: If requested, demonstrate how to use lambda functions with `parallel_apply`, mapping row indices and values correctly.
6. **Result Handling**: Show how to collect results from the parallel operation and convert them back to the desired format (e.g., list of dictionaries or DataFrame).
# Anti-Patterns
- Do not use standard `for` loops with `enumerate` for the main processing logic if `pandarallel` is requested.
- Do not forget to handle the index (`idx`) if the original logic relied on `enumerate`.
- Do not define the processing function in a way that causes pickling errors (e.g., relying on local non-picklable variables without passing them explicitly).
# Interaction Workflow
1. Analyze the user's existing loop to identify the input list, processing logic, and output structure.
2. Generate the refactored code using `pandarallel`.
3. Verify that the function scope is correct to prevent 'undefined' errors.
## Triggers
- convert loop to pandarallel
- use pandarallel for parallel processing
- refactor loop with pandarallel
- pandarallel lambda function
- optimize loop with pandarallel
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!