https://github.com/linuxbozo/truss
https://github.com/linuxbozo/truss
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/linuxbozo/truss
- Owner: LinuxBozo
- Created: 2020-11-04T04:22:21.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-20T01:46:13.000Z (over 5 years ago)
- Last Synced: 2024-10-19T02:15:25.158Z (over 1 year ago)
- Language: Python
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Truss Software Engineering Interview
## Requirements
This code has been tested with python 3.8.x in your path. It does look for python3 in general. If you do get an error about `pytz` you should be able to fix by installing `pytz` with pip:
```shell
pip install pytz
```
## How to run
It reads a CSV formatted file on stdin and emits a normalized CSV formatted file on stdout. You can test this code on the command line like this:
```shell
./normalizer < sample.csv > output.csv
```