Files
site/content/post/why-python.md
2018-07-16 21:46:31 -04:00

1.3 KiB

title, date, draft, keywords, description, tags, categories, author, comment, toc, autoCollapseToc, postMetaInFooter, hiddenFromHomePage, contentCopyright, reward, mathjax, mathjaxEnableSingleDollar, mathjaxEnableAutoNumber, hideHeaderAndFooter, flowchartDiagrams, sequenceDiagrams
title date draft keywords description tags categories author comment toc autoCollapseToc postMetaInFooter hiddenFromHomePage contentCopyright reward mathjax mathjaxEnableSingleDollar mathjaxEnableAutoNumber hideHeaderAndFooter flowchartDiagrams sequenceDiagrams
Why Python Is My Goto 2018-07-14T22:48:15-04:00 true
python
pip
python
Dave Gallant true false false false false false false false false false false
enable options
false
enable options
false

Python is a high-level, general-purpose language that has a wide range of use cases.

Back-end web server? Sure, Django, Flask, Pyramid?

Test automation? Pytest

Do you want to download a webpage? Simple:

{{< highlight python >}}

import requests

print(requests.get('https://www.theregister.co.uk/').text)

{{< /highlight >}}

After that, there is any number of things to do with it.