mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 00:33:39 +00:00
1.3 KiB
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 |
|
|
Dave Gallant | true | false | false | false | false | false | false | false | false | false | 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.