Python

How To Install Scrapy The Recommended Way

This tutorial will guide you to install scrapy on windows the recommended way. If you have an error regarding installation about cannot install Twisted module, i will show you how to fix pip install scrapy error using this guide. Scrapy is amazing tool you should learn for every data scraper. …

How to Route Multi URL with Same Prefix Using Gin

Gin (Gin-Gonic) is a powerful HTTP web framework. It is famous among Golang Developers. Let’s say you want to route some microservice hosted in your site using prefix url, i.e: yoursite.com/myservice this simple code that use Gin will make your life easier. Using RouterGroup feature you can navigate URL with …

Install Python 2.7 via Scoop

Scoop is powerful tools to install package in Windows environment. So, python is and available via Scoop. Scoop will install Python version 3.x. But, if you still need python 2.7 for your development you will need to do followings. Install alternative bucket for Scoop. scoop bucket add versions Install Python …

The Best Python IDE for Beginners

Every programmers need to hone their skill from scratch. Most Python programmers start to learn their first Python code in IDE. If you are looking for IDE for Python there are plenty free Python IDE available out there. You can find the complete list on Python Wiki. I am still …

Building Simple RESTful API with Flask

RESTful API is very popular trends right now. Almost web application use API to provide a client-server application. Today we are gonna learn REST API example by building a simple RESTful API with Flask. Flask is a framework based on Python. It is very powerful and lightweight to build any …

Creating Your First Flask Application

This time we will cover the steps to create a new development environment for Python and the Flask web development framework. We will create our first Flask application and we will learn how to configure custom routing rules inside Flask. Flask is a micro framework used for website and Web …