We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97dba5b commit 9c2199cCopy full SHA for 9c2199c
projects/pyapp.com/pip/myapp/main.py
@@ -1,9 +1,11 @@
1
import requests
2
3
+
4
def get_website_content(url):
5
response = requests.get(url)
6
return response.text
7
8
9
def main():
- content = get_website_content("https://example.com")
10
+ content = get_website_content("https://google.com")
11
print(content)
projects/pyapp.com/poetry/myapp/main.py
0 commit comments