Skip to content

Latest commit

 

History

History
 
 

python-interview-problems-parsing-csv

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Python Interview Problems – Parsing CSV Files

Corresponding code for "Python Interview Problems – Parsing CSV Files."

The skeleton_code directory contains pytest fixtures and module files to get you set up to run pytest. There are no tests in the files, which pytest tells you when you run it:

$ pytest test_weather_v1.py 
======================================= test session starts ========================================
platform linux -- Python 3.7.1, pytest-6.2.1, py-1.10.0, pluggy-0.13.1
rootdir: /home/jima/coding/materials_realpy/python-interview-problems-parsing-csv/skeleton_code
collected 0 items                                                                                  

====================================== no tests ran in 0.00s =======================================

The full_code directory contains the source files we used to generate the examples in the article.

Good luck!