Skip to content

Commit 7cbf946

Browse files
committed
update made
1 parent 5b8f250 commit 7cbf946

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_posts/30DaysOfPython/2026-01-17-python-day28.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ media_subpath: /assets/img/posts/
1616

1717
## What Is an API?
1818

19-
You can think of an <abbr title = "Application Programming Interface">API</abbr> as being a method that allows two separate systems to communicate with each other. The API is what allows the system/software to **automatically** send and recieve requests.
19+
You can think of an <abbr title = "Application Programming Interface">API</abbr> as being a method that allows two separate systems to communicate with each other. The API is what allows the system/software to **automatically** send and receive requests.
2020

2121
A more detailed example would be to think of services like weather applications, delivery updates, or mobile application requests. In all these examples, the application doesn't store data and instead uses another system for data handling.
2222

2323
# Introduction to HTTP
2424

25-
To deepen my understanding of APIs, I took to remeniscing about what I had learnt on <abbr title = "Hyper-Text Transfer Protocol">HTTP</abbr> and how a _request_ is made over the web and received. HTTP defines how information is relayed between a client (system, application, or browser) and a server.
25+
To deepen my understanding of APIs, I took to contemplating about what I had learnt on <abbr title = "Hyper-Text Transfer Protocol">HTTP</abbr> and how a _request_ is made over the web and received. HTTP defines how information is relayed between a client (system, application, or browser) and a server.
2626

2727
Whenever we visit a website or search for something online or in a website, our browsers are sending a **HTTP request** with the information we want and the server is what replies with a **HTTP response** containing all the information.
2828

@@ -74,7 +74,7 @@ Content-Type: application/json
7474
7575
[
7676
{"name": "Sheikh Hussain", "grade": "C"},
77-
{"name": "Alif Roshan", "grade": "B"}
77+
{"name": "John Doe", "grade": "B"}
7878
]
7979
```
8080

@@ -154,7 +154,7 @@ All that happens is, the client sends a synchronise request, receives a synchron
154154
This diagram should help with visualising the concept:
155155
![3-Way TCP Handshake - Geeks for Geeks](https://media.geeksforgeeks.org/wp-content/uploads/handshake-1.png)
156156

157-
This is a topic for another time, but it can get very indepth and I would suggest consuming as much content as possible on this to get the complete picture.
157+
This is a topic for another time, but it can get very in-depth and I would suggest consuming as much content as possible on this to get the complete picture.
158158

159159
## Summary
160160

0 commit comments

Comments
 (0)