4.9 Recap for 반복문은 sequence 안의 각 item 으로 코드를 실행시킬 수 있는 방법이다. from requests import get websites = ( 'google.com', 'https://airbnb.com', 'facebook.com', 'https://naver.com' ) results ={} for website in websites: if not website.startswith('https://'): website = f"https://{website}" response = get(website) if response.status_code == 200: results[website] = "OK" else: results[website] = "FAILED" prin..
4.7 Requests Python Standard Library 사용해본다. Pyhon Standard Library 에 없는 것은 pypi 에서 찾을 수 있다. pypi - 다른 사람이 만든 project 나 module 을 모아둔 곳. https://pypi.org/ PyPI · The Python Package Index The Python Package Index (PyPI) is a repository of software for the Python programming language. pypi.org requests 를 검색해서 사용할 예정이다. reqeusts는 user의 python 코드에서 웹사이트로 request 보내는걸 할수 있게 해준다. request 란 무엇인가? 예를 ..