Found 217 bookmarks
Newest
How to Use Loguru for Simpler Python Logging – Real Python
How to Use Loguru for Simpler Python Logging – Real Python
Learn how to use Loguru to implement better logging in your Python applications quickly and with less configuration. Spend more time debugging effectively with cleaner, more informative logs.
·realpython.com·
How to Use Loguru for Simpler Python Logging – Real Python
Subinterpreters and Asyncio
Subinterpreters and Asyncio
PEP-734 subinterpreters in the stdlib has officially been included in the Python 3.14 as a very late addition. subinterpreters now has a new home...
·blog.changs.co.uk·
Subinterpreters and Asyncio
Python: capture stdout and stderr in unittest - Adam Johnson
Python: capture stdout and stderr in unittest - Adam Johnson
When testing code that outputs to the terminal through either standard out (stdout) or standard error (stderr), you might want to capture that output and make assertions on it. To do so, use contextlib.redirect_stdout() and contextlib.redirect_stderr() to redirect the respective output streams to in-memory buffers that you can then inspect and assert on.
·adamj.eu·
Python: capture stdout and stderr in unittest - Adam Johnson
14 Advanced Python Features
14 Advanced Python Features
A collection of advanced Python features that I've found interesting, underrated, or unique - as someone who's seen a lot of Python code.
·blog.edward-li.com·
14 Advanced Python Features
Module itertools overview
Module itertools overview
This article briefly describes the iterators available in the Python module itertools and how to use them.
·mathspp.com·
Module itertools overview
Mastering Fuzzy Logic in Python
Mastering Fuzzy Logic in Python
Mastering fuzzy logic in Python involves understanding the principles of fuzzy logic and how to implement them using Python libraries…
·oleg-dubetcky.medium.com·
Mastering Fuzzy Logic in Python
FastAPI JWT Tutorial | How to add User Authentication
FastAPI JWT Tutorial | How to add User Authentication
In this tutorial, we will walk you through the process of integrating JWT (JSON Web Tokens) with FastAPI to secure user authentication. If you want to add JWT authentication to your FastAPI application, this video is for you! If you are new to FastAPI or JWT, don't worry. We will cover the basics and gradually move towards more advanced topics. You'll get to understand not only how to implement JWT but also why it is important. FastAPI JWT authentication is what you want to use for your JWT Python project 🎥 React + FastAPI: https://youtu.be/0zb2kohYZIM 🎥 AWS Lambda + FastAPI: https://youtu.be/7-CvGFJNE_o 🎥 MongoDB + FastAPI: https://youtu.be/QkGqjPFIGCA 🎥 MySQL + FastAPI: https://youtu.be/zzOwU41UjTM 🎥 PostgreSQL + FastAPI: https://youtu.be/398DuQbQJq0 =========================== 🎓 Courses can be found: FastAPI Beginner & Advanced: https://www.udemy.com/course/fastapi-the-complete-course/?referralCode=4F4A35C1A243D23A1A59 Learn Chatbot Development: https://www.udemy.com/course/the-complete-chatbot-bootcamp/?referralCode=2654798EE9F9998023B9 =========================== 🛒 GEAR & RECOMMENDED BOOKS: https://kit.co/codingwithroby 👨‍💻 Hi, I am Eric!👨‍💻 Hey! I’m a seasoned developer and cloud enthusiast. I love sharing my knowledge and helping others to discover the exciting world of programming and cloud technologies. For more tutorials, tips, and tech magic, don’t forget to hit that subscribe button and ring the bell for notifications! 🙏 Support The Channel 🙏 If you found this tutorial helpful, please give it a thumbs up 👍, comment, and share it with your network 🌍 #fastapi #python #programming
·youtube.com·
FastAPI JWT Tutorial | How to add User Authentication
Python 3.12 Preview: Static Typing Improvements – Real Python
Python 3.12 Preview: Static Typing Improvements – Real Python
In this tutorial, you'll preview the new static typing features in Python 3.12. You'll learn about the new syntax for type variables, making generics simpler to define. You'll also see how @override lets you model inheritance and how you use typed dictionaries to annotate variable keyword arguments.
·realpython.com·
Python 3.12 Preview: Static Typing Improvements – Real Python
Captcha Solver: reCAPTCHA solver and captcha solving service. Bypass captchas using the best auto captcha solver online API - 2Captcha
Captcha Solver: reCAPTCHA solver and captcha solving service. Bypass captchas using the best auto captcha solver online API - 2Captcha
Fastest online captcha solving service starting at just $1 for 1,000 captchas. Service supports APIs including PHP, Python, C++, JAVA, C#, and JavaScript, ensuring seamless integration with your applications. Efficient, reliable, and cost-effective, captcha solver is created to fulfill any requirements. Try it and streamline your online operations with ease!
·2captcha.com·
Captcha Solver: reCAPTCHA solver and captcha solving service. Bypass captchas using the best auto captcha solver online API - 2Captcha
Free Proxy
Free Proxy
High quality free proxy server. Best free proxy list. HTTP/SOCKS free proxy. Fast proxy servers with 10Gbps bandwidth. Free rotating proxy.
·webshare.io·
Free Proxy
Please don't hijack my Python root logger
Please don't hijack my Python root logger
With the recent explosion of LLM tools, I often like to kill time fiddling with different LLM client libraries and SDKs in one-off scripts. Lately, I’ve noticed that some newer tools frequently mess up the logger settings, meddling with my application logs. While it’s less common in more seasoned libraries, I guess it’s worth rehashing why hijacking the root logger isn’t a good idea when writing libraries or other forms of reusable code.
·rednafi.com·
Please don't hijack my Python root logger
Asyncio gather() In The Background - Super Fast Python
Asyncio gather() In The Background - Super Fast Python
We can run asyncio.gather() in the background by not awaiting the call to asyncio.gather(). The asyncio.gather() returns an asyncio.Future that does not have to be awaited. It is scheduled for execution in the asyncio event loop, along with all coroutines provided to the gather. Therefore, the caller is free to proceed with other activities and […]
·superfastpython.com·
Asyncio gather() In The Background - Super Fast Python