Python Requests Module: Just the Basics

Опубликовано: 28 Сентябрь 2024
на канале: TokyoEdtech
4,713
106

In this brief video, I'll show you how to use the Python requests module to send information back and forth between your program and a remote webserver.

Requests Documentation: https://pypi.org/project/requests/
Install requests module: pip3 install requests

CODE:

import requests
word = input("What word would you like to translate? ")
url = "https://christianthompson.com/diction..."
params = {"word":word}
response = requests.get(url, params)
print(f"Status Code: {response.status_code}")
print(response.text)

NEED HELP?
🆘 Watch this first and then let me know in the comments below:    • Help Me Help You  

❤️❤️ SHOW SOME LOVE AND SUPPORT THE CHANNEL ❤️❤️

Click Join and Become a Channel Member Today!
Channel members can get preferential comment replies, early access to new content, members only live streams, and access to my private Discord.
❤️    / @tokyoedtech  

LINKS
🗄️ GITHUB: https://github.com/wynand1004
💬 Follow me on Twitter:   / tokyoedtech  
📜 Subscribe to my Newsletter: http://eepurl.com/dKgM8k
📝 Check out my Blog: https://christianthompson.com
⬇️ Download Geany Editor: https://www.geany.org

LEARN MORE PYTHON
➡️Space Invaders:    • Python Game Programming Tutorial: Spa...  
➡️Snake Game:    • Python Game Programming Tutorial: Sna...  
➡️Pong:    • Python Game Programming Tutorial: Pon...  
➡️Space War:    • Python Game Programming Tutorial: Spa...  
➡️Intro to Python (for Java Coders):    • Intro to Python for Java Coders: Comm...  
➡️Space Arena - The Ultimate Python Turtle Graphics Game Tutorial:    • Ultimate Python Turtle Graphics Tutor...  

LEARN MORE JAVA
➡️Basic Java for Beginners:    • Basic Java 1&2: Comments and Printing  

➡️Intro to AP Computer Science A:    • AP Computer Science Unit 1: Primitive...  

#Python #Tutorial #Requests