Kundenseite

  1. Coaching Produkt Anlegen
  2. Verkauf von Coaching Pordukt
  3. anpssen von Coaching Produkten
  4. Abschließen eines Abos
  5. Kündigen eines Abos
  6. Hochalden von Dokumenten
  7. AGB's anpassen
  8. Verkaufsseite anpassen

Firmenseite

  1. Newsletterversand
  2. Nutzerbasierter E-Mail versand (Kundenbindung)
  3. update depolyment
  4. Server bezahlen

Einzelnde Prozesse

Mailjet(Send API) + Netcup (Mail)

All mails sent to MySQLMailjet Mail addresses by Netcup

  1. 1.) Application receives signal for mail sending
  2. 2.) Application sends an entry with all necessary information to MySQL
  3. 3.) Mail server checks at intervals (e.g., every 30 seconds) if there is an entry in MySQL
  4. 4a.) If Yes:

→ proceed to step 5.

  1. 4b.) If No:

→ go back to step 3.

  1. 5.) Send API request to Mailjet
  2. 6.) Mail server confirms status in MySQL

Print

Print
#normal print
#only see in "gunicorn -w 4 'app:app'" or simalar
#only temp. for debug - remove after coding session
print("")
 
#print via telegram
#common
#in feedback_helper.py
#use:
from feedback_helper import write_output
write_output(*args)

Transactional E-Mail

Newsletter will in any time org. extern

Transactional E-Mail
#via mailgun
# to do: Python Intreation + Call

Analyse

Mixpanel
#init
from mixpanel import Mixpanel
from config import MIXPANEL_PRO_KEY, MIXPANEL_RETRY_LIMIT
mp = Mixpanel(MIXPANEL_PRO_KEY, MIXPANEL_RETRY_LIMIT)
#use:
#https://docs.mixpanel.com/docs/tracking-methods/sdks/python
#in json can be all free use
mp.track('USER_ID', 'some_event', {
    'plan': 'premium'
})

AI/KI

Deepseek & Chatgpt
#in ai_handler.py
 
#init
from ai_handler import deepseek_prompt_to_text
from ai_handler import chatgpt_promt_to_text
 
#use
res_text_only = deepseek_prompt_to_text(promt)
res_text_only = chatgpt_promt_to_text(promt)
  • prozesse.txt
  • Zuletzt geändert: 04:33 06/02/2026
  • von 127.0.0.1