- command line values (for example, -u my_user, these are not variables)
- role defaults (defined in role/defaults/main.yml)
- inventory file or script group vars
- inventory group_vars/all
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Electronics / Raspberry Pi / Arduino: | |
| - Ben Eater: https://www.youtube.com/user/eaterbc | |
| - EEVBlog: https://www.youtube.com/user/EEVblog | |
| - ElectroBOOM: https://www.youtube.com/ElectroBOOM | |
| - GreatScott!: https://www.youtube.com/user/greatsco... | |
| - Sean Hodgins: https://www.youtube.com/SeanHodgins | |
| - LOOK MUM NO COMPUTER: https://www.youtube.com/LOOKMUMNOCOMP... | |
| - ExplainingComputers: https://www.youtube.com/user/explaini... | |
| - Michael Klements: https://www.youtube.com/MichaelKlements |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from bs4 import BeautifulSoup | |
| import urllib.request as urllib2 | |
| url = "http://www.citytowninfo.com/places" | |
| states = {} | |
| usa_cities = [] | |
| response = urllib2.urlopen(url) | |
| html = response.read() |