move api key file

This commit is contained in:
Daniel Abbassi
2025-07-16 15:40:54 +02:00
parent 06b2141cb3
commit 01ae002d96
3 changed files with 12 additions and 3 deletions

7
.gitignore vendored
View File

@@ -1,3 +1,8 @@
## general
*.pyc
## data
_data/api_keys.py
angebote_traegerMail_iteration/dict_*.json angebote_traegerMail_iteration/dict_*.json
openAI_validate_data/2024-12 gpt-4o-mini/*.csv openAI_validate_data/2024-12 gpt-4o-mini/*.csv
*.pyc

View File

@@ -1,5 +1,11 @@
# Data processing script(s) # Data processing script(s)
### PrerequisiriesXX
In directory `_data` is a file with name `api_keys.py` that holds API keys:
```GOOGLE_API_KEY = 'api_key_here'
OPENAI_API_KEY = 'api_key_here'
... ```
## angebote_traegerMail_iteration (related to FM) ## angebote_traegerMail_iteration (related to FM)
### Input ### Input
This script is related to FileMaker script "OptOut: Mailadressen sammeln - simple Tabelle" that collects data "Name | Angebotsmail | Trägermail". The FM script has the variable $$angeboteMailListe as result -> extract its value into `input.txt`. This script is related to FileMaker script "OptOut: Mailadressen sammeln - simple Tabelle" that collects data "Name | Angebotsmail | Trägermail". The FM script has the variable $$angeboteMailListe as result -> extract its value into `input.txt`.

View File

@@ -1,2 +0,0 @@
GOOGLE_API_KEY = 'INSERT HERE'
OPENAI_API_KEY = 'INSERT HERE'