- Name: Matt Kenny
- GIS Data Engineer At [Tableau Software][1]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
GET /svc/archive/v1/1985/2.json?api-key=772925f7d490445fa8a6b1be09ec262a HTTP/1.1 | |
User-Agent: Request-Promise | |
Host: api.nytimes.com | |
Connection: close | |
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
GET /svc/archive/v1/1985/2.json?api-key=772925f7d490445fa8a6b1be09ec262a HTTP/1.1 | |
User-Agent: Request-Promise | |
Host: api.nytimes.com | |
Connection: close | |
- Presentation: http://tech-diversified.github.io/Workshops/CreateADashboard/#/
- Workshop Github Repository: https://github.com/tech-diversified/resources
- Online JSON Viewer - Handy tool to browse large JSON files in a "sane" way.
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
__author__ = 'mkenny' | |
__date__ = '5/12/14' | |
""" | |
OUTPUT | |
------ | |
Individual Sorted List | |
[('Andrew', {'age': 33, 'hometown': 'Menlo Park', 'name': 'Andrew'}), | |
('Doug', {'age': 12, 'hometown': 'London', 'name': 'Doug'}), |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
__author__ = 'matt' | |
__date__ = '1/27/14' | |
""" | |
Create an example Reader class that implements a context manager and __iter__ method. | |
Use this Reader class in a with statement in conjunction with a Writer class. | |
Processing classes are examples of class-based decorator patterns. These operate | |
on the Writer class' public interface, the write() method. |
NewerOlder