Introduction: Web scraping, web harvesting, or web data extraction is data scraping used for extracting data from websites using its HTML structure, In this post, I will explain how to extract data from authenticated required websites using selenium (chrome driver) with python programing. What is Selenium: Selenium is a tool to test your web application.... Continue Reading →
Flask APi with wordcloud
Introduction: Hi there, In this repository, I am gonna show you how you can generate interactive images using python word cloud. Here I integrated with it flask API. Reference: Wordcloud: https://github.com/amueller/word_cloud fonts: https://www.1001freefonts.com/ flask: http://flask.pocoo.org/docs/1.0/ Requirements: python 3+ linux if you have window than you have to chage directory path in views.py (from "/" to... Continue Reading →
Flask app using MVC
What is MVC? The Model-View-Controller (MVC) is an architectural pattern that separates an application into three main logical components: the model, the view, and the controller. Each of these components is built to handle specific development aspects of an application. MVC is one of the most frequently used industry-standard web development frameworks` to create... Continue Reading →
Django vowel count Api
Introduction: Hi, there in this post I am gonna show you how we can build basic API in Django which can .calculate count of vowels from your text file that you can upload here. In this post, you will learn various things such as Django basic, request method and integration front-end with backend using python.... Continue Reading →
Flask basic python
Introduction: Flask is a micro web framework written in python. It is well known as a lightweight framework for python web development because it is run on a stand-alone file whereas Django has multiple files for each operation such as URLs, views, and setting. How to install flask using pip3 pip3 install flask What you... Continue Reading →
Web Scraping with BeautifulSoup
Introduction: Web scraping, web harvesting, or web data extraction is data scraping used for extracting data from websites using its HTML structure, In this post, I will explain basic fundaments of web scraping using python and also explore it by a live demonstration with two python libraries Beautifulsoup and requests respectively. What you will learn... Continue Reading →
python script for converting snake case string to camel case string.
In this tutorial, I will explain how to convert snake case string into camel case using a simple python script. Requirements: python 3.5+ what you will learn form this post: input function replace function print function string formationg This is source code: print("This is python program for converting snake case string to camel case string... Continue Reading →
How to use rest countries api with python programming language
Introduction: In this post, you will learn how to fetch data from the API link using get method and Requests module. One can also learn how to extract data from huge json using python programming and learn manipulation of unstructured data Requirements: Internet connection (it will not work offline) python 3.5+ Requests package (if your... Continue Reading →
what is variable in python ?
Generally, a variable is an empty box where we can store some value. let's assume x = "hello" , where x is a variable having "hello" data. In python programming variable plays an important role in storing data and reuse them in multiple positions. Rule for assign name to a variable we name a variable... Continue Reading →
All about Python programming language for beginners.
Introduction Python is a high-level programing language famous for its easy syntax (easy to read and easy to understand). Nowadays python is present at top of the I.T sector. One can find python in various sectors such as scripting language, Web-scraping, Website development, Machine learning, and Artificial intelligence. Do you want to become a python... Continue Reading →