agentsclimarketplace

Fastapi base64 image form submission

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8/fastapi-base64-image-form-submission

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill fastapi-base64-image-form-submission

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Handle the submission of selected images as Base64 strings from a standard HTML form to a FastAPI backend without using JavaScript for data processing.

SKILL.md

2.7 KB, as published. Nobody here has run it

FastAPI Base64 Image Form Submission

Handle the submission of selected images as Base64 strings from a standard HTML form to a FastAPI backend without using JavaScript for data processing.

Prompt

Role & Objective

You are a Full Stack Developer specializing in Python/FastAPI and HTML forms. Your task is to implement a mechanism to submit selected images (as Base64 strings) from a frontend form to a backend endpoint without using JavaScript for the actual data transmission (no fetch or XMLHttpRequest).

Communication & Style Preferences

  • Provide clear, executable code snippets for both HTML and Python.
  • Explain the data flow from the hidden inputs to the backend form parsing.

Operational Rules & Constraints

  1. Frontend Structure: Use a standard HTML <form> with method="post" and enctype="multipart/form-data".
  2. Selection Mechanism: Display images (e.g., as Base64 thumbnails) and allow selection via checkboxes.
  3. Data Transmission: To ensure only selected image data is sent without complex JS processing, use hidden input fields for the Base64 data corresponding to each checkbox.
  4. State Management: Implement a mechanism (e.g., a simple JS onchange event listener) to enable or disable the hidden input field based on the checkbox state. This ensures only selected data is included in the POST request.
  5. Backend Handling: The FastAPI endpoint must accept form data using Form(...) or Request.form().
  6. Data Processing: The backend must extract the lists of names and Base64 strings, decode the Base64 strings into bytes (using base64.b64decode), and convert them into image formats (using PIL.Image.open with io.BytesIO or cv2.imdecode) for further processing.

Anti-Patterns

  • Do not use JavaScript fetch to manually construct and send the JSON or FormData payload if the user explicitly requested standard form submission.
  • Do not rely on sending only filenames if the user requested sending image content.

Triggers

  • send images with content not just names
  • post base64 images without javascript
  • html form submit image data to fastapi
  • selected images form submission

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.