port to gitlab.

This commit is contained in:
Dave G
2018-07-16 21:46:31 -04:00
commit 2c3ba62ee1
231 changed files with 11557 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
---
title: "Why Python Is My Goto"
date: 2018-07-14T22:48:15-04:00
draft: true
keywords: []
description: ""
tags: ['python', 'pip']
categories: ['python']
author: "Dave Gallant"
# You can also close(false) or open(true) something for this content.
# P.S. comment can only be closed
comment: true
toc: false
autoCollapseToc: false
postMetaInFooter: false
hiddenFromHomePage: false
# You can also define another contentCopyright. e.g. contentCopyright: "This is another copyright."
contentCopyright: false
reward: false
mathjax: false
mathjaxEnableSingleDollar: false
mathjaxEnableAutoNumber: false
# You unlisted posts you might want not want the header or footer to show
hideHeaderAndFooter: false
# You can enable or disable out-of-date content warning for individual post.
# Comment this out to use the global config.
#enableOutdatedInfoWarning: false
flowchartDiagrams:
enable: false
options: ""
sequenceDiagrams:
enable: false
options:
---
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
<!--more-->
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.