Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Aug 14, 2023Integrating Robyn with RabbitMQ | PythonIn this article, we are going to learn how to integrate RabbitMQ into a Robyn server. This article will show the code of the server that consumes messages from a RabbitMQ queue. And the code of a server that publishes messages to a queue. RabbitMQ Ra...Discuss·33 readsrobyn
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Jun 27, 2023Dockerazing a Robyn App with Postgres as Database | ComposeIn this article, we are going to learn how to Dockerize a Robyn app that performs CRUD operations with Postgres as a database, Dockerize them and run them with Compose. Robyn Robyn is a fast async Python web framework coupled with a web server writte...Discuss·66 readsrobyn
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Jun 20, 2023Dockerizing a Robyn App | PythonThis is an article about how to create an image and run a container for a simple Robyn app using Docker. This article assumes that the reader knows what Docker, images and containers are. The app will have one endpoint, that will send a "Hello, World...Discuss·39 readsrobyn
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Mar 6, 2023Building a Fast REST API with Robyn and Cockroach DB | PythonThis article is aimed at developers who want to learn how to build a REST API with Robyn, a fast async Python web framework coupled with a web server written in Rust, and Cockroach DB, a distributed SQL database that provides ACID transactions and au...Discuss·252 readsPython
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Feb 27, 2023Building a REST API with Robyn and Postgres | PythonIn this article, we are going to build a REST API to perform CRUD operations. To build this server we will use Robyn and the Postgres driver Psycopg2. Robyn Robyn is a fast async Python web framework coupled with a web server written in Rust. Psycopg...Discuss·136 readsrobyn
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Nov 23, 2022Robyn, a web framework for Python, built it on top of Rust.For this article, we are going to build a server using the Robyn web framework. It will be a simple server, we are going to learn how to serve an HTML file, and how to perform CRUD operations. We will not be using a database to do it, just a python l...Discuss·7 likes·819 readsrobyn