<?php
/**
* @author Exadra37 <exadra37atgmailpointcom>
* @since 2014/07/02
*/
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/PuerkitoBio/goquery" | |
| "log" | |
| "strings" | |
| ) | |
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
| package main | |
| import ( | |
| "fmt" | |
| "golang.org/x/net/html" | |
| "net/http" | |
| "os" | |
| "strings" | |
| ) |
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
| 0 - Weather Victoria - 162.400 | |
| 1 - CVARS Repeater - 146.680 | |
| 2 - CVARS Repeater - 145.470 | |
| 3 - CVARS Repeater - 442.600 | |
| 10 - Shawnigan RCMP - 142.425 | |
| 11 - Shawnigan RCMP - 141.1500 | |
| 12 - Shawnigan RCMP - 141.180 | |
| 13 - Shawnigan RCMP - 141.210 | |
| 14 - Shawnigan RCMP - 141.300 | |
| 15 - Shawnigan RCMP - 414.310 |
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
| import json | |
| import os | |
| json_data = open("top5.json").read() | |
| data = json.loads(json_data) | |
| data = data["feed"] | |
| data = data['data'] | |
| print data[1]['link'] |
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
| import json | |
| import os | |
| json_data = open("top5.json").read() | |
| data = json.loads(json_data) | |
| data = data["feed"] | |
| data = data['data'] | |
| print data[1]['link'] |
NewerOlder