Business, The Serious Side of Python
Learn about running an MLops business with Bojan Miletic!
Learn about running an MLops business with Bojan Miletic!
Michael Driscoll has been a Python fan since the days PyPI did not yet exist. He is an author, blogger and tinkerer. He runs PyDev of The Week. He needs no introduction. This episode interviews Python world’s interviewer!
A casual chat with the maintainer of the pypi commandline package and typesplainer. A dive into his journey into tech and how he tackles projects. We talk along the way of a discord.py/nextcord visual code extension, mypy from the programming interface and a linter specifically for discord bots projects. We also get to hear the …
This podcast features two Pypy and one CPython core devs. Projects like Pypy and CPython are complex undertakings. Even to start contributing, people are intimidated. As maintainers of such projects, the amount of knowledge accumulated over the years is just huge. This episode explores the history and evoltion of Pypy. It debunks the myth of …
Osmar Mansoor has had a rich career at big tech companies. Now an Engineering Manager at Amazon, he has been at Apple, Uber and Microsoft. Me i owe my path 100 percent to OpenSource. The episode covers the normal break into tech path preparation as well as illustrates how OpenSource can be an incredible shortcut. …
Breaking Into Tech: The Traditional Way v/s OpenSource Read More »
Talk notes thepkg/ # is a package since has __init__.py __init__.py a.py b.py data/ sample.dat You need to get data files (templates, certifs etc) from your package You do import thepkg from pathlib import Path pkg = Path.(thepkg.__file__).parent path = pkg / ‘data’ / ‘sample.dat’ Problem as __file__ not necessarily a real file on system …
Notes of Get your resources faster, with importlib.resources by Barry Warsaw Read More »
Callback demo ”’ Abdur-Ramaan Janhangeer Updated from Jeff Hoogland’s tutos for Python3.9 and Python-elf 1.25.0 https://www.toolbox.com/tech/operating-systems/blogs/py-efl-tutorial-2-weight-hints-031215/ ”’ import efl.elementary as elm from efl.elementary.box import Box from efl.elementary.button import Button from efl.elementary.label import Label from efl.elementary.window import StandardWindow from efl.evas import EVAS_HINT_EXPAND EXPAND_BOTH = EVAS_HINT_EXPAND, EVAS_HINT_EXPAND class MainWindow(StandardWindow): def __init__(self): StandardWindow.__init__(self, “ex1”, “Good Bye Elementary”, size=(300, …
People talk about FastAPI a lot, but they give little attention to Sebastián RamÃrez, alias tiangolo. It’s so obvious to me that FastAPI is a reflection of someone cool. It’s hard to miss the fact that FastAPI is cool but it has lots of details that shine beyond technical ones. Commit messages If you take …
Python-efl is the binding for EFL, an awesome and performance-obcessed set of libraries. EFL stands for Enlightment Foundation Libraries. It was started for the Enlightment desktop project and developed into a set of libraries. This tutorial shows how to install python-efl. Install Instructions First create a new folder called efl_dev mkdir efl_dev cd efl_dev Then …
How to install Python-efl on Ubuntu or Linux Mint Read More »