From 298cda6a423a461caf0c877f71d383b078d5cd32 Mon Sep 17 00:00:00 2001 From: Mrinank-Bhowmick <77621953+Mrinank-Bhowmick@users.noreply.github.com> Date: Fri, 6 Oct 2023 02:56:17 +0530 Subject: [PATCH 1/2] Update python3-cheat-sheet.json --- data/python3-cheat-sheet.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/data/python3-cheat-sheet.json b/data/python3-cheat-sheet.json index ae645114f..a1b0321ad 100644 --- a/data/python3-cheat-sheet.json +++ b/data/python3-cheat-sheet.json @@ -521,6 +521,38 @@ } ] }, + { + "title": "রিকোয়েস্ট লাইব্রেরি (Requests Library)", + "items": [{ + "definition": "রিকোয়েস্ট ইনস্টল করা", + "code": "pip install requests" + }, + { + "definition": "রিকোয়েস্ট ইম্পোর্ট করা", + "code": "import requests" + }, + { + "definition": "ওয়েবসাইট থেকে ডেটা গ্রহন করা", + "code": "r = requests.get('https://api.github.com/events')" + }, + { + "definition": "স্ট্যাটাস কোড চেক করা", + "code": "r.status_code" + }, + { + "definition": "হেডার চেক করা", + "code": "r.headers" + }, + { + "definition": "টেক্সট চেক করা", + "code": "r.text" + }, + { + "definition": "জেসন চেক করা", + "code": "r.json()" + } + ] + }, { "title": "নামপাই লাইব্রেরি (Numpy Library)", "items": [{ From a8aaba642773458528955ad7036d3ef6af5a670f Mon Sep 17 00:00:00 2001 From: Mrinank-Bhowmick <77621953+Mrinank-Bhowmick@users.noreply.github.com> Date: Fri, 6 Oct 2023 03:40:38 +0530 Subject: [PATCH 2/2] Update algorithm-complexity.json --- data/algorithm-complexity.json | 1 + 1 file changed, 1 insertion(+) diff --git a/data/algorithm-complexity.json b/data/algorithm-complexity.json index 792495a6b..1046025c6 100644 --- a/data/algorithm-complexity.json +++ b/data/algorithm-complexity.json @@ -914,6 +914,7 @@ "definition": "স্পেস কমপ্লেক্সিটি", "code": "O(|V|)" } + ] }, { "title": "ব্রেডথ-ফার্স্ট সার্চ (BFS) ট্রি",