Discord Python API user timeout?

So I want to timeout a user using the Discord API (using the official timeout function). Discord says it works via the API (https://support.discord.com/hc/en-us/articles/4413305239191-Time-Out-FAQ). However, I can't find anything about the timeout function and how to use it, so I hope one of you can help me. PS: It must work because other bots like…

Programming language for modern GUI applications?

Hello, I would like to program a desktop application that works on as many operating systems as possible. The application is a management system where things can be added and removed and live data can be viewed via API requests. Based on my experience in computer science studies, where I developed GUI applications in Java,…

Do Woocommerce and Shopyfy offer the option to integrate unlimited products and wholesaler plugins and csv support, and which system is better?

Hello I'm thinking about becoming self-employed again with a web shop. I used to use Gambio and JTL Wawi. I would now like to use JTL Wawi again if necessary, but not Gambio or JTL as a shop system (unless you specifically advise me to do so), but rather Woocommerce or Shopyfy, as many wholesalers…

Why do I get the value “none” back from the API?

I am currently working on a voice assistant that uses gpt-3.5-turbo communicate, but for each request I only get the value none back. Can anyone tell me why? My code: import speech_recognition as sr import openai import pyttsx3 class ChatGPT: def __init__(self, api_key, rolle): openai.api_key = api_key self.dialog = [{"role":"system", "content":rolle}] def fragen(self, frage): self.dialog.append({"role":"user","content":"frage"})…