Python

How To Display Data from the cloud provider API with Django — step-by-step Python tutorial on Progressive Robot

How To Display Data from the cloud provider API with Django

Django is a web framework written in Python. Django has been used in websites such as Mozilla, Pinterest and Instagram. You can use Django to display information from APIs (such as Instagram posts or GitHub repositories) in your own websites and web apps. In this tutorial you will build a Django project that will display your cloud account’s Droplet information using the cloud provider’s API. When you complete this tutorial, you will be able use APIs in your own Django projects.

Read more
How To Use Logging in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use Logging in Python 3

The logging module is part of the standard Python library and provides tracking for events that occur while software runs. You can add logging calls to your code to indicate what events have happened. In this tutorial, we will go over how to work with logging calls to understand the various events that occur from running your program over time.

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
Python KeyError Exception Handling Examples — step-by-step Python tutorial on Progressive Robot

Python KeyError Exception Handling Examples

URL: https://www.progressiverobot.com/python-keyerror-exception-handling-examples/ 1. What is Python KeyError Exception? Python KeyError is raised when we try to access a key from dict, which doesn't exist. It's one of the built-in exception classes and raised by many modules that work with dict or objects having key-value pairs. 2. Python KeyError with Dictionary Let's look at a simple […]

Read more
Como começar a usar a biblioteca Requests em Python — step-by-step Python tutorial on Progressive Robot

Como começar a usar a biblioteca Requests em Python

Em vários aplicativos Web, é comum conectar-se a vários serviços de terceiros usando APIs. Ao usar essas APIs, você tem acesso a dados como informações meteorológicas, placares esportivos, listas de filmes, tweets, resultados de mecanismo de busca e fotos. Também é possível usar…

Read more
CHAT