All Projects → zblesk → csv-to-sqlite

zblesk / csv-to-sqlite

Licence: MIT license
A command-line tool that copies data from CSV files into a SQLite database.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to csv-to-sqlite

fp-units
An FP-oriented library to easily convert CSS units.
Stars: ✭ 18 (-70.97%)
Mutual labels:  converter
System.Configuration.Abstractions
Injectable, mockable, extensible, configuration for .NET
Stars: ✭ 42 (-32.26%)
Mutual labels:  converter
vista2xp
Vista-to-XP application converter
Stars: ✭ 36 (-41.94%)
Mutual labels:  converter
readable-web-to-node-stream
Converts a Web-API readable-stream into a Node readable-stream.
Stars: ✭ 33 (-46.77%)
Mutual labels:  converter
dnglab
Camera RAW to DNG file format converter
Stars: ✭ 103 (+66.13%)
Mutual labels:  converter
vectorexpress-api
Vector Express is a free service and API for converting, analyzing and processing vector files.
Stars: ✭ 66 (+6.45%)
Mutual labels:  converter
Audiblex
Audible audio book converter which actually works!
Stars: ✭ 26 (-58.06%)
Mutual labels:  converter
brkraw
BrkRaw: A comprehensive tool to access raw Bruker Biospin MRI data
Stars: ✭ 31 (-50%)
Mutual labels:  converter
ZPL-Printer-Emulator-SDK
Convert, Preview & Render raw ZPL commands to PNG, JPG & PDF from .NET
Stars: ✭ 29 (-53.23%)
Mutual labels:  converter
gonvert
Golang character encoding converter with an automatic code-estimation.
Stars: ✭ 24 (-61.29%)
Mutual labels:  converter
bank2ynab
Easily convert and import your bank's statements into YNAB. This project consolidates other conversion efforts into one universal tool.
Stars: ✭ 197 (+217.74%)
Mutual labels:  converter
converter-go
Convert AsyncAPI documents from older to newer versions with Golang
Stars: ✭ 17 (-72.58%)
Mutual labels:  converter
gpx-converter
python package for manipulating gpx files and easily converting gpx to other different formats
Stars: ✭ 54 (-12.9%)
Mutual labels:  converter
json2table
Converts JSON to an HTML table
Stars: ✭ 52 (-16.13%)
Mutual labels:  converter
node-poppler
Asynchronous node.js wrapper for the Poppler PDF rendering library
Stars: ✭ 97 (+56.45%)
Mutual labels:  converter
slackdown
A simple Slack message text formatting to HTML code converter.
Stars: ✭ 27 (-56.45%)
Mutual labels:  converter
ics-to-json
📅 Convert ICS calendars (eg. Google Calendar) to an opinionated JSON format.
Stars: ✭ 36 (-41.94%)
Mutual labels:  converter
zxtap-to-wav
Converter of .TAP files (a ZX-Spectrum emulator data format) into .WAV sound files
Stars: ✭ 34 (-45.16%)
Mutual labels:  converter
BlocksConverter
A PocketMine-MP plugin allows you to convert Minecraft PC maps to MCPE/Bedrock maps or vice-versa.
Stars: ✭ 47 (-24.19%)
Mutual labels:  converter
SoxSharp
.NET wrapper for SoX.
Stars: ✭ 41 (-33.87%)
Mutual labels:  converter

csv-to-sqlite

This is a simple, datatype-guessing script that takes CSV files as input and copies their contents into a SQLite database.
(Column names are taken from the headers (first row) in the csv file.)
Intended for Python 3. (I know it did run on Py2 as some people tried, but I haven't tested it.)

Links

Overview

Installs via

 pip install csv-to-sqlite

To find out more, run

 csv-to-sqlite --help

If you've installed the package as a dependency for your own script, you can use it like this:

import csv_to_sqlite 

# all the usual options are supported
options = csv_to_sqlite.CsvOptions(typing_style="full", encoding="windows-1250") 
input_files = ["abilities.csv", "moves.csv"] # pass in a list of CSV files
csv_to_sqlite.write_csv(input_files, "output.sqlite", options)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].