Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronknight/brevo-api-data-processing-with-csv
🤖This project automates sending data from a CSV file to the Brevo API for double opt-in confirmation.
https://github.com/ronknight/brevo-api-data-processing-with-csv
brevo-api csv python
Last synced: about 1 month ago
JSON representation
🤖This project automates sending data from a CSV file to the Brevo API for double opt-in confirmation.
- Host: GitHub
- URL: https://github.com/ronknight/brevo-api-data-processing-with-csv
- Owner: ronknight
- License: mit
- Created: 2024-03-15T15:41:29.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-13T17:18:18.000Z (8 months ago)
- Last Synced: 2024-11-07T07:20:30.258Z (3 months ago)
- Topics: brevo-api, csv, python
- Language: Python
- Homepage: https://pinoyitsolution.com
- Size: 97.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README-Brevo API Data Processing with CSV-1.eraserdiagram
- License: LICENSE
Awesome Lists containing this project
README
flowchart-diagram
title Brevo API Data Processing with CSV
// Define nodes and relationships
Start [shape: oval, icon: flag] > Read CSV file [icon: file-text]
Read CSV file > Extract data [icon: list]
Extract data > Construct payload [icon: package]
Construct payload > Send POST request to Brevo API [icon: send]
Send POST request to Brevo API > Log success [icon: file-text]
Log success > End [shape: oval, icon: check]// Define Groups
For each row in CSV [icon: repeat] {
Extract data
Construct payload
Send POST request to Brevo API
Log success
}