teamgeek.geekpython.inPower-up API Testing with EchoAPI's AIWhen you’re building an application, one thing you can’t skip is API testing. Whether it’s a login flow, payment gateway, or a complex e-commerce workflow, ensuring your APIs behave correctly saves you from nasty surprises in production. I had alread...Sep 25, 2025·9 min read
teamgeek.geekpython.inHow to Install PyPy and Use it?PyPy is an implementation of Python written in RPython (Reduced Python) language, and it is seen as a replacement for CPython. PyPy claims that it is almost a drop-in replacement for CPython and can beat it on speed and memory usage. It supports libr...Jan 6, 2025·3 min read
teamgeek.geekpython.in10 Useful yet Rarely Used OS Functions in PythonYou must have used functions provided by the os module in Python several times in your projects. These could be used to create a file, walk down a directory, get info on the current directory, perform path operations, and more. In this article, we’ll...Nov 14, 2024·7 min read
teamgeek.geekpython.inHow to Stream Video to Frontend in FastAPIFastAPI is a fast and modern web framework known for its support for asynchronous REST API and ease of use. In this article, we’ll see how to stream videos on frontend in FastAPI. StreamingResponse Stream Local Video FastAPI provides a StreamingRespo...Nov 6, 2024·7 min read
teamgeek.geekpython.inHow to Fix Circular Imports in PythonHave you ever come across circular imports in Python? Well, it’s a very common code smell that indicates something’s wrong with the design or structure. Circular Import Example How does circular import occur? This import error usually occurs when two...Nov 2, 2024·6 min read