Posts

Showing posts with the label web development

List of Top NoSQL Databases-2023

Image
NoSQL , which stands for “ not only SQL ,” is an approach to database design that can accommodate a wide variety of data models, including key-value, document, columnar, and graph formats. NoSQL  is an alternative to traditional relational databases in which data is placed in tables and data schema is meticulously designed before the database is built.  NoSQL  databases are especially utilizable for working with large sets of distributed data.  NoSQL Features & Capabilities  Performance  Availability  Multi-Model  Concurrency  Security  Scalability  Data Model Flexibility  Deployment Model Flexibility  Today, we will see a  list of top NoSQL databases. MongoDB MongoDB is a cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas. Documents consist of key-value pairs which are the basic unit of data in MongoDB. Collections contain sets of documents and functions which is the equivalent of relati

Vue.js + Python + MongoDB CRUD example

Image
Hello everyone, today we will learn how to develop a  web application that is a basic User Management Application using MongoDB , Vue.js , Python , and Flask . GitHub repository link is provided at the end of this tutorial. You can download the source code. More Related Topics, React.js + Python + MongoDB CRUD application Python + MongoDB + Vue.js CRUD Application  Angular10 + Python + MongoDB CRUD application Python-Create a CRUD Restful Service API using FLASK and MYSQL Python-Simple CRUD Web App with Python, Flask, and Mysql Python with MongoDB Atlas - CRUD After completing this tutorial what we will build? We will build a full-stack web application that is a basic User Management Application with CRUD features:       • Create User     • List User     • Update User     • Delete User User Interfaces -Retrieve all Users: -Add a User: -Update User: We divided this tutorial into two parts.  PART 1 - Rest APIs Development using Python and Flask PART 2 - UI development using Vue.js PART 1