Skip to content

Instantly share code, notes, and snippets.

@raghothams
Created June 1, 2015 15:38
Show Gist options
  • Save raghothams/3f5f7c82f7ee955d0a67 to your computer and use it in GitHub Desktop.
Save raghothams/3f5f7c82f7ee955d0a67 to your computer and use it in GitHub Desktop.
expenses to csv convertor
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 41,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import csv"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"with open(\"/Users/raghothams/ds_expense.txt\") as f:\n",
" lines = f.readlines()\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def cleaner(line):\n",
" return line.replace(\"\\xe2\\x80\\x94\",\"-\")\n",
"\n",
"def splitter(line):\n",
" return map(lambda x: x.strip(), line.split(\"-\"))\n",
" \n",
" "
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"clean_lines = map(cleaner, lines)\n",
"rows = map(splitter, clean_lines)"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"with open(\"/Users/raghothams/ds_expense.csv\", \"wb\") as wf:\n",
" writer = csv.writer(wf)\n",
" writer.writerows(rows)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.9"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment