I've done only a few projects using the Python language. My biggest yet is prolly something I call WILLSMITH.
WILLSMITH is a kind of chatbot made using Python, based on the algorithm that responds a specific answer to a specific sentence.
Example:
if input.lower() == "hello":
(#indent#) print("hello, world!")
So WILLSMITH is based on this logic, but responds in a more funny way, ig. And he's got a sense of humor. That's rare for an AI.
WILLSMITH's responds are displayed directly on the terminal, and not on a GUI, like ChatGPT. WILLSMITH's script is fast and lightweight, and doesn't even use libraries outside of the ones that are already included in the Python default installation.
WILLSMITH.py uses the following libraries: random, and time. Yeah, that's all.
If you wish to try it out, download the python source code here.