Skip to main content

Configuration of Django with postgresql

In this tutorial we learn how to configure PostgreSQL with Django ,It has following advantages over other databases they are as follows
  • PostgreSQL's write-ahead logging makes it a highly fault-tolerant database
  • PostgreSQL source code is freely available under an open source license. This allows you the freedom to use, modify, and implement it as per your business needs.
  • PostgreSQL supports geographic objects so you can use it for location-based services and geographic information systems
  • PostgreSQL supports geographic objects so it can be used as a spatial data store for location-based services and geographic information systems
  • To learn PostgreSQL, you don't need much training as its easy to use
  • Low maintenance administration for both embedded and enterprise use
  •  PostgreSQL can run dynamic websites and web apps as a LAMP stack option
You will find complete code here

 https://github.com/GanapathiAmbore/Django-with-postgresql 

Comments

Popular posts from this blog

Webscrapping using Python for Machine learning,Data Science

In this tutorial we are going to learn and discuss about how to perform web scrapping  using python Web scrapping:                  Web Scraping    is a technique employed to extract large amounts of data from websites whereby the data is extracted and saved to a local file in your computer or to aws s3 services in json format For web scrapping we will use the following libraries they are  Beautiful soup urllib Json for file storing you will find the complete source code here https://github.com/GanapathiAmbore/Webscrapping-using-python