Python Requests Beginner Tutorial - GET Requests With Translate API

preview_player
Показать описание
In this video, I introduce the Python Requests library to you by talking about how to perform GET requests to a language translation API.

Рекомендации по теме
Комментарии
Автор

Without you and Sentdex I would have never learn't Python. Thank you for all the tutorials. :)

karlduckett
Автор

Nice video.
This is a brilliant way of teaching requests with a cool and useful project.
Well done!

nowyouknow
Автор

This was cool. Easy to understand. Thanks

danielaesmaili
Автор

Thank you! It simple to understand, and you very good speaker. I'm from cold Russia and it cool for me, that you use Yandex API as example))) Thanks!

immanuelkant
Автор

wow! brilliant work, thanks for videos!

sojino
Автор

Great tutorial bro... awesome vid..keep it up

ramanupreti
Автор

good one mate, can you please create a tutorial for beginners about fetching third party API step by step much appreciated

TheGaridi
Автор

Nice example. Maybe nexttime show us how to login and use session tokens ?

ahostn
Автор

Nice tut. Very instructional and concise. Why did you enter "params=params", and not just "params"??

kaanuki
Автор

good one, post a tutorial on django-channels

deezedpotato
Автор

Some secure sites won't work unless you add a user-agent in your request.get() line. To add user-agent:


requests.get(url, headers={'User-Agent: ''Mozilla/5.0'})

fruitfcker
Автор

Your content is great man ! But i was little late :(
yandex has stopped giving free API keys :(

This is what website says now!!!

"We no longer issue free keys for the Yandex.Translate API. For all existing free keys, there will be a limit of 50, 000 symbols as of July 31st and these keys will stop working on August 15th."

rajatprakash
Автор

I type 'pip install requests' into cmd and it tells me " 'pip' is not recognized as an internal or external command,
operable program or batch file."

spencerbrule