Programming Project

How To Perform Sentiment Analysis in Python 3 Using the Natural Language Toolkit (NLTK) — step-by-step Python tutorial on Progressive Robot

How To Perform Sentiment Analysis in Python 3 Using the Natural Language Toolkit (NLTK)

The process of analyzing natural language and making sense out of it falls under the field of Natural Language Processing (NLP). In this tutorial, you will prepare a dataset of sample tweets from the NLTK package for NLP with different data cleaning methods. You will also train a model on pre-classified tweets and use the model to classify them into negative and positives sentiments.

Read more
Como Utilizar APIs Web no Python 3 — step-by-step Python tutorial on Progressive Robot

Como Utilizar APIs Web no Python 3

Uma API, ou Interface de Programação de Aplicações, torna fácil para os desenvolvedores integrar um app com outro. Elas expõem alguns dos funcionamentos internos de um programa de maneira limitada. Você pode utilizar APIs para obter informações de outros programas ou para…

Read more
How To Create Views for Django Web Development — step-by-step Linux tutorial on Progressive Robot

How To Create Views for Django Web Development

In this tutorial, we will create Django views that enable our web application to properly handle web requests and return the required web responses. As defined in the Django docs, a web response can be the HTML content of a Web page, a redirect, or an HTTP error.

Read more
How To Enable and Connect the Django Admin Interface — step-by-step Linux tutorial on Progressive Robot

How To Enable and Connect the Django Admin Interface

In this tutorial, we will connect to and enable the Django admin site so that you can manage your blog website. The Django admin site comes pre-built with a user interface that is designed to allow you and other trusted individuals to manage content for the website.

Read more
How To Plot Data in Python 3 Using matplotlib — step-by-step Python tutorial on Progressive Robot

How To Plot Data in Python 3 Using matplotlib

Visualization is a quick and easy way to convey concepts in a universal manner, especially to those who aren’t familiar with your data. This tutorial will describe how to plot data in Python using the 2D plotting library matplotlib. We’ll go through generating a scatter plot using a small set of data, adding information such as titles and legends to plots, and customizing plots by changing how plot points look.

Read more
How To Build and Deploy a GraphQL Server with Node.js and MongoDB on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Build and Deploy a GraphQL Server with Node.js and MongoDB on Ubuntu 18.04

In this tutorial you’ll build and deploy a GraphQL server with Node.js that can query and mutate data from a MongoDB database that is running on Ubuntu 18.04. At the end of this tutorial, you’ll be able to access data in your database by using a single endpoint, both by sending requests to the server directly through the terminal and by using the pre-made GraphiQL playground interface.

Read more
CHAT