sensiblecodeio / scraperwiki-python

ScraperWiki Python library for scraping and saving data
https://scraperwiki.com
BSD 2-Clause "Simplified" License
160 stars 69 forks source link

Don't insert unicode names twice: #86 #87

Closed scraperdragon closed 8 years ago

scraperdragon commented 8 years ago

Resolves #86 -- str(new_column) of a column containing u'a\xa0b' is u'a\\xa0b' -- we already have a nice name in column_name.

With tests, py23 compatible (bug was py2 only)

StevenMaude commented 8 years ago

Looks good to me.