Created
October 9, 2015 02:09
-
-
Save ross-nordstrom/8bbe8b4ceea86afc0894 to your computer and use it in GitHub Desktop.
This file contains 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 | |
import json | |
from datetime import datetime | |
data = {} | |
now = datetime.now() | |
data['general_state'] = 1 | |
data['year'] = now.year | |
data['month'] = now.month | |
data['day'] = now.day | |
data['hour'] = now.hour | |
data['minute'] = now.minute | |
print json.dumps(data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment