Script for converting SWITRS reports to SQLite.
Project description
Looking to get right to work with the data? Checkout the cleaned dataset on Kaggle:California Traffic Collision Data from SWITRS
SWITRS-to-SQLite is a Python3 script that will convert the CSV files provided by the California Highway Patrol’s Statewide Integrated Traffic Records System (SWITRS) and convert them to an SQLite3 database.
Instructions to download the SWITRS data can be found here.
Versioning
This repository follows Semver. I will increment the MAJOR version if a change is backwards incompatible for either the Python command line or the structure of the output database.
Installation
The best way to install SWITRS-to-SQLite is with pip:
pip install switrs-to-sqlite
This will give you access to the script simply by calling:
switrs_to_sqlite --help
You can also clone this repository:
git clone https://github.com/agude/SWITRS-to-SQLite.git
cd SWITRS-to-SQLite
./switrs_to_sqlite/switrs_to_sqlite --help
If you clone the repository, SWITRS-to-SQLite can be installed as a local application using the setup.py script:
git clone https://github.com/agude/SWITRS-to-SQLite.git
cd SWITRS-to-SQLite
./setup.py install
Which, like using pip, will give you access to the script by calling switrs_to_sqlite.
SWITRS-to-SQLite requires only Python3.
Usage
Using SWITRS-to-SQLite is simple, just point it to the unzipped files from SWITRS and it will run the conversion:
switrs_to_sqlite \
CollisionRecords.txt \
PartyRecords.txt \
VictimRecords.txt
The script also supports reading gziped records files:
switrs_to_sqlite \
CollisionRecords.txt.gz \
PartyRecords.txt.gz \
VictimRecords.txt.gz
The conversion process will take about an hour to write the database, which by default is saved to a file named switrs.sqlite3. The output file can be changed as follows:
switrs_to_sqlite \
CollisionRecords.txt \
PartyRecords.txt \
VictimRecords.txt \
-o new_db_file.sql
The program provides the following help menu when called with --help:
usage: switrs_to_sqlite [-h] [-o OUTPUT_FILE]
collision_record party_record victim_record
Convert SWITRS text files to a SQLite database
positional arguments:
collision_record the CollisionRecords.txt file or the same file gzipped
party_record the PartyRecords.txt file or the same file gzipped
victim_record the VictimRecords.txt file or the same file gzipped
optional arguments:
-h, --help show this help message and exit
-o OUTPUT_FILE, --output-file OUTPUT_FILE
file to save the database to
Unit Tests
SWITRS-to-SQLite uses pytest to run unit tests (contained in the tests folders). To run the tests, run this command from the base directory:
python3 -m pytest -v
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file switrs-to-sqlite-4.1.2.tar.gz
.
File metadata
- Download URL: switrs-to-sqlite-4.1.2.tar.gz
- Upload date:
- Size: 41.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 751cd7d3dee41cab7debb43be985ba3a98090b0571ce3c7cae4ce20cde4df40d |
|
MD5 | 549af995a3df943e7b51048d21b564ff |
|
BLAKE2b-256 | b7659cd68f16e58dde7f2c9e06ae620918f5534e4eedb592f49521596f4203e3 |
File details
Details for the file switrs_to_sqlite-4.1.2-py3-none-any.whl
.
File metadata
- Download URL: switrs_to_sqlite-4.1.2-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e468ee4c4ac9f7dd7e5bce234f34522dcf50a8c58d4314154474d8541439894e |
|
MD5 | ea4f48335225f41a829288823a90c1b3 |
|
BLAKE2b-256 | 5800f6627da62b40b35d04f6be2704ba606b8089b79e5948d051aed9d64cedfd |