3D renders and JSON data for NFTs straight from Blender by using Python.
https://ocularmagic.medium.com/3d-renders-and-json-data-for-nfts-straight-from-blender-by-using-python-a508530f969d
https://ocularmagic.medium.com/3d-renders-and-json-data-for-nfts-straight-from-blender-by-using-python-a508530f969d
Medium
3D renders and JSON data for NFTs straight from Blender by using Python.
Blender allows you to run Python scripts directly inside the program, changing pretty much anything in your scene using code. I wanted to…
Simple CRUD REST API with Blacksheep and Piccolo ORM
https://medium.com/@carlosmarcano2704/simple-crud-rest-api-with-blacksheep-and-piccolo-orm-698e6e85ae80
https://medium.com/@carlosmarcano2704/simple-crud-rest-api-with-blacksheep-and-piccolo-orm-698e6e85ae80
Medium
Simple CRUD REST API with Blacksheep and Piccolo ORM
Usually, I use Django for building apps in Python, but weeks ago, scrolling on Reddit I found out about Blacksheep.
Unpacking and destructuring an object in Python
https://medium.com/@jaguar48/unpacking-and-destructuring-an-object-in-python-2a803ff080f
https://medium.com/@jaguar48/unpacking-and-destructuring-an-object-in-python-2a803ff080f
Medium
Unpacking and destructuring an object in Python
Unpacking or exploding means an object can be split into its elements; again, due to ‘duck typing,’ an iterable is an object that defines…