Python Connect Database Using peewee First install peewee using pip pip3 install peewee Now we have to install MySQLdb or PyMySQL To install PyMySQL run following command: sudo pip3 install PyMySQL Now our basic Configuration done. Lets... Read More
Up & Running With Gulp Check Older version if installed $ npm rm --global gulp Install Gulp Globally $ npm install --global gulp-cli Initializing Project directory npm init Installing Dependencies npm install --save-dev gulp Creatng gulpfile.js in root directory var gulp = require('gulp'); gulp.task('default',... Read More