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 os.path | |
import json | |
import csv | |
from tidylib import tidy_document | |
import html2text as h2t | |
dbfolder = '../CROL-PDF/Sample Database' | |
# ( filename, fieldtoclean, csvdelimiter) | |
files = \ |
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 sysconfig | |
config = sysconfig.get_config_vars() | |
keys = config.keys() | |
keys.sort() | |
for k in keys: | |
print '%s: %s' % (k, config[k]) | |
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 csv | |
import urllib | |
import re | |
from nyc_geoclient import Geoclient | |
from sys import argv | |
from sys import exit | |
script, infile, outfile = argv | |
g = Geoclient('9cd0a15f', '54dc84bcaca9ff4877da771750033275') |
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.
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.
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
import json | |
from jsl import Document, StringField, ArrayField, IntField | |
from jsl import DocumentField, OneOfField | |
class Organization(Document): | |
class Options(object): | |
title = 'Organization' | |
description = 'A DCAS Organization.\nSee: http://talk.beta.nyc' | |
definition_id = 'org' |
OlderNewer