© 2023 Hashnode
#poetry
Today we are going to make a C++ extension for Python code, wrap it and embed easily with Cython and then make it installable via Poetry. This article is a continuation of my previous article (you can…
Yes, I know. I did say - somewhere on this blog - that I was podman all the way, baby. I lied. Anyways. I needed to deploy a script onto an older server where manually installing python > 3.11 just was too much hassle. I did have docker tho…
Over the last several years, the Python community has been moving towards a packaging layout format known as the src layout as the recommended way to organize directories and files for Python Packages…
I still use pip-tools tho. I find them very convenient. But.. The main reason I'm late to the Poetry party is that I failed to read the docs. I prefer having a .venv in my local dir as opposed to a ~/.config/{virtualenv..cache..thingie} and…
Basic Usage Create a directory called umaineros2and cd into it. Paste the code below into a new file "Dockerfile" build it docker build -t umaineros2 . Run the container detached docker run -itd …
I got to peek into a Python code and make it run after three years of not using the language. I have to say, even prior to that point three years ago, I almost never used Python. So after barely using the language in a while, I noticed Pyth…
A hand full of Stars Bragging they say I'm, Into the cult they accuse me I'm, In their mind I'm always, As neither of them knows what is on my hand. They just see my face as a pearl, They say my teet…
I would sing to you, Ceaselessly, like the Ocean waves sings to the daffodils. Like the clock, lives to tell time, So was I crafted of the calmest sands, Eyes of the ocean's blue, and a feast to all…
You got me up and running Like HTML — You're the skeleton on which My love was built I'm a reservoir of love; a gift Like one who was born in a manger Semantically my thoughts are Well structured;…
Poetry is a tool for dependency management and packaging in Python. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Poetry offers a loc…