Skip to content

lockscut/datatransporttools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Data Transport Tools

A lightweight Python toolkit designed to allow for easy, transactional conversion of data between common data storage mediums. Currently supports:

  • ODBC Tables, Queries (batching supported)
    • MySQL
    • PostgreSQL
    • Microsoft SQL Server
    • Microsoft Access
  • Delimited Files (python csv library)
  • Microsoft Excel
  • Python Iterators
  • SQLAlchemy Constructions

Example:

import datatransporttools
from datatransporttools.mysql import MySQLTable
from datatransporttools.csv_ import CSVFile

src = MySQLTable.from_values(server='localhost', username='zakir', password='password', table='users')
dst = CSVFile('users_dump.csv')
datatransporttools.transfer(src, dst)

About

python toolkit for easy data transfers in/out of databases

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published