How to use alembic for your database migrations?

Alembic is a very useful library we can use for our database migrations. when we are working with Flask Framework we need a tool which can handle the database migrations. Alembic is widely used for migrations. Let us start how to use to alembic. First, install the alembic in your virtual environment pip install alembic After installing the...

How to configure the AWS CLI to your local environment?

Nowadays AWS is a very common service that every single company or person uses for code deploy, creating lambdas, deploy machine learning models. So If you want to create s3 bucket from your code or create any service using code or using Serverless you need to configure the AWS CLI to your local environment for easy access. To set up...

What are the best python practices?

Python is a very popular language in the current world. Everyone is using python for different purposes like web development, machine learning, data science, desktop applications. And it is very important to follow the best practices in python so code will be readable and understandable for next-generation people. Let’s know some of the best practices in python Your...

How to make your python service live for 24*7 using supervisor?

Lots of people use python for their online service and have to make the service live for 24*7. I will show you how can you make your server live for forever. The supervisor is the service that we use for python service to run for endless time. first of all, you need to install the supervisor in your...

How to Connect to docker Mysql through local PC

First, create the MySQL docker container using the following command sudo docker run -e MYSQL_ROOT_HOST=your_ip -p 3309:3306 -e MYSQL_ROOT_PASSWORD=root mysql/mysql-server:latest Now check the available docker container using the following command sudo docker ps once the container created a login to the container using the following command sudo docker exec -it your_container_name /bin/bash now connect the MySQL server mysql...

Page 1 of 212Next
Powered by Blogger.