|
Description:
|
|
Watch on YouTube
About the show
Sponsored by Microsoft for Startups Founders Hub.
Michael #1: Prefix-cache
- via Brendan Hannigan
- You can set an environment variable or use it as a command line argument and then instead of creating tons of
__pycache__ folders to store your *.pyc files right next to the source code, it puts them in some specified folder.
- Introduced in python 3.8.
Brian #2: NiceGUI
- Suggested by several listeners
- Browser based GUI
- “NiceGUI is an easy-to-use, Python-based UI framework, which shows up in your web browser. You can create buttons, dialogs, Markdown, 3D scenes, plots and much more.
It is great for micro web apps, dashboards, robotics projects, smart home solutions and similar use cases. You can also use it in development, for example when tweaking/configuring a machine learning algorithm or tuning motor controllers.” - from the README
Michael #3: flask-ngrok
Brian #4: No-async async with Python
- Will McGugan
- Allowing async while not requiring async
- Await me (maybe)
- Optionally awaitable
- Providing API methods that can be called by both async and non-async code.
- The called method really is async, but if a caller doesn’t want to know when the code is done, it can ignore the return value and not await.
- MK: I had to solve a similar problem in fastapi-chameleon
- MK: Syncify async functions.
Extras:
Brian:
Jokes:
|