You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/pages/02-development-environments/10-powershell.markdown
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,11 @@ of a Python programmer's
20
20
21
21
### PowerShell resources
22
22
*[A Python Developer's Guide to Powershell](https://akr.am/blog/posts/a-python-developers-guide-to-powershell)
23
+
explains the PowerShell scripting language then shows how to combine a
24
+
Python script and a PowerShell script to automate web scrapining downloads.
23
25
24
26
*[ChatOps with PowerShell](https://www.youtube.com/watch?v=XIMOFnfdOx0)
25
27
28
+
*[PowerShell in Azure Functions](http://www.brianbunke.com/blog/2018/02/27/powershell-in-azure-functions/)
29
+
26
30
*[Getting Started with Windows PowerShell](https://docs.microsoft.com/en-us/powershell/scripting/getting-started/getting-started-with-windows-powershell)
Copy file name to clipboardExpand all lines: content/pages/02-development-environments/18-environment-variables.markdown
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,3 +18,10 @@ by Python applications to affect a program's execution.
18
18
*[Why you shouldn't use ENV variables for secret data](https://diogomonica.com/2017/03/27/why-you-shouldnt-use-env-variables-for-secret-data/)
19
19
20
20
*[Environment variables in Windows](https://www.digitalcitizen.life/simple-questions-what-are-environment-variables)
21
+
22
+
* One answer I found very useful when learning about getting environment
23
+
variables in Python code is
24
+
[knowing the difference between os.getenv and os.environ.get](https://stackoverflow.com/questions/16924471/difference-between-os-getenv-and-os-environ-get).
25
+
Either one can be used in your applications but there are slight
26
+
differences that can make one better than the other in various
0 commit comments