GitXplorerGitXplorer
r

PostgreSQL_ConnectingViaPython

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
275bdff3d3abc8e98814279c3db42273deede468

additional uploads

rrajneesh44 committed 5 years ago
Unverified
a3b016ba6e13d340bde64fc1e04e80a2578dd946

Checking and Logging with Hashed password

rrajneesh44 committed 5 years ago
Unverified
19b62578cf1acc3dcecae555e3f719062ec4c0d8

Hashed Password added

rrajneesh44 committed 5 years ago
Unverified
76508f316a8d6cdf0361e3439bc975b48b6f5aa9

Login page

rrajneesh44 committed 5 years ago
Unverified
4231f5b3b53df1692d7f0d3c99bdf59b3be42ee8

Validation and Login Form added

rrajneesh44 committed 5 years ago
Unverified
63497180781bae652c4cfe31c77b6a6836123d08

@LoginRoute Added

rrajneesh44 committed 5 years ago

README

The README file for this repository.

PostgreSQL_ConnectingViaPython

We will be creating a PostgreSQL database and connecting and accessing it using python.

Some required softwares

PostgreSQL, Python3

Some required packages and libraries:

pip install psycopg2

Steps to make a database in PostrgreSQL

1. search for **psql** in the search bar in windows, i.e simply open the psql terminal 
2. CREATE DATABASE <Database_name>
3. \c <Database_name>
4. Use python to do the rest of the things.