Python Modules

Modules is one of the best feature of Python. Except some core modules, you can install what you need and keep your Python setup smooth.

Tokenization in Python using NLTK

Let’s learn to implement tokenization in Python using the NLTK library. As humans, we heavily depend on language to communicate with one another. Artificial Intelligence also requires computers to understand our language. Making computer understand and process a language comes under Natural Language Processing (NLP). NLP is broadly defined as the automatic manipulation of a

Tokenization in Python using NLTK Read More »

Flask PostgreSQL – SQLAlchemy

In this article, we will learn to connect our Flask Application with PostgreSQL Database systems using an ORM – Object Relational Mapper, called Flask SQLAlchemy. What is PostgreSQL? Similar to the MySQL Database management system, PostgreSQL is another type of RDBMS used for accessing, storing, and handling the data in the form of database tables.

Flask PostgreSQL – SQLAlchemy Read More »