paint-brush
From CSV to Buxfer: an unexpected journey — Collectorby@wilk
178 reads

From CSV to Buxfer: an unexpected journey — Collector

by WilkNovember 1st, 2017
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

In <a href="https://hackernoon.com/from-csv-to-buxfer-an-unexpected-journey-cleaner-c87e8a77fda6" target="_blank">Cleaner — Part 2</a>, I’ve coded the first program of this project, cleaning raw data and make it available for the second program: the Collector 📦!
featured image - From CSV to Buxfer: an unexpected journey — Collector
Wilk HackerNoon profile picture

Part 3— collector: a story about how to write a program that collects a pure dataset

Preamble

In Cleaner — Part 2, I’ve coded the first program of this project, cleaning raw data and make it available for the second program: the Collector 📦!

Collector has to read cleaned data from CSV files and to store it inside a MongoDB instance using the data model defined in Part 1.

Journey

In this article, I cover the third part of this journey:

  1. Part 1: Introduction
  2. Part 2: Cleaner
  3. Part 3 (this part): Collector
  4. Part 4: Goxfer
  5. Part 5: Conclusions

Getting started


This is the second important block of this adventure: the Collector.The procedure is similar to the Cleaner: update the docker-compose.yml file and then write the program in Python.


So, like the Cleaner, the collector service uses the same Python image, mounts the same volume, launches a similar command and uses some of the Cleaner’s environment variables.Let’s update the collector service:



Actually, the connector needs something more: for example, a MongoDB instance attached!Ok, connecting to MongoDB requires some variables… yay, environment variables!And of course, the collector service will depend on mongodb service, so I’m going to rewrite it:




Very well!I’ve got almost everything to start writing the collector program: I just need a couple of information more.For instance, I want to customise the account name for each file, like expenses and income, and map transactions’ tags with my new custom tags.As done previously, I’ll put them inside the environment space:

Now, TAGS_FILE is a reference to a file where I map those tags found inside CSV files with my own custom tags, like this:





{"expenses.csv": {"Abbigliamento": ["Abbigliamento", "Uscite / Annuali"]}}


I’ve to do this because my current transactions have more than one tag each.So, for a transaction like this one:

04/06/2016,Abbigliamento,maglietta,"5,00"

the result will be a new transaction with two tags associated: Abbigliamento and Uscite / Annuali.

EXPENSE_ACCOUNT and INCOME_ACCOUNT define the accounts for expenses and income transactions respectively.

Collector

It’s time to define the collector procedure:

  1. connect to MongoDB
  2. read CSV cleaned files
  3. for each row, map the right account and tags
  4. for each row, create a MongoDB document
  5. check the number of transactions added

Ok, first of all, I need the collector to check the existence of the cleaned folder:

Then, the DB connection, followed by an erasing procedure used to clean previous executions:


That’s great!Let’s read some files:

tags is a dictionary used to map old tags with new ones, while csv_files holds the CSV files references.

Now, it’s time to write the collector core logic:



Long story short: for each CSV file, put a new transaction inside MongoDB, using a dictionary to represent it.The transaction model is composed by a date (datetime package is really useful in these cases), an account (defining the transaction’s type), a description, an amount (built by converting string into float) and a list of tag (combining the TAGS_FILE with the original transaction’s tag).Then some counters, like transactions_counter and total_counter are updated because they will be used for the final test.

Testing


When the collector’s execution has finished, I need to check if the amount of transactions read from CSV files is equal to the amount of transactions inserted inside MongoDB: I need to check both the counter and the total amount.With assert, I can test if total_counter (that is the number of transactions added) and total_amount (the sum of every transaction added) are equal to collection_counter and amount_counter (counterparts, read and calculated from the DB).

At this point, running collector after cleaner makes it easy filling the DB with cleaned data, hence having fresh transactions ready to be pushed on Buxfer!

Following the source code of collector.py:

End of part 3

Before the collector I had just a bunch of CSV files, containing data like this:



02/01/2016,Alimentari,spesa,"17,64"26/03/2016,Hobby,libri,"30,46"04/06/2016,Abbigliamento,maglietta,"5,00"

But then, I’ve got something better! Take a look:

Much better 😁


So, Collector promotes cleaned unstructured data to well-defined and well-structured documents inside MongoDB.This is useful for data analysis and it’s definitely a bridge between Python and GoLang (used in the next step).


If you enjoyed this article don’t forget to share it!See you in Part 4: Goxfer!

Spoiler

Source code is already available here: https://github.com/wilk/from-csv-to-buxfer