Skip to main content

Command Palette

Search for a command to run...

Day 37: 100 Days of Code

Python

Published
1 min readView as Markdown
Day 37: 100 Days of Code

Advanced Authentication: HTTP Headers

It is used for privacy for your API keys; by using it, our private tokens do not show in the URL bar.

HTTP Requests

GET: requests.get(). Use when we request data to an external system.

POST: requests.post(). Use when we give data to an external system.

PUT: requests.put(). Use when we change existing data on an external system.

DELETE: requests.delete(). Use to delete existing data on external system.

Habit Tracking Project:

Using Pixela API

Screen Shot 2022-03-10 at 2.59.00 PM.png