Skip to main content

Parsing SQL Dumps to JSON Objects

Project description

sqldump2json

PyPI - Python Version PyPI - Version Total Downloads

Parse SQL dumps into JSON objects.

A tool for administrators, data scientists and hackers. With this tool you no longer need to import dumps into Databases. You can extract INSERT data as JSON and analyze them with jq or insert into Mongo/Elastic/etc. The dump is not read entirely into RAM, so this utility can be used to process files of any size. And it can even parse corrupted dumps.

Supported DBMS: MySQL, SQL Server, PotsgreSQL and some other (not all formats).

Installation for normal Arch-based Linux ditros:

# install pipx
yay -S python-pipx

# install package from pypi
pipx install sqldump2json

# install lastet version from github
pipx install git+https://github.com/s3rgeym/sqldump2json.git

For other shit like Ubuntu you need to do more steps:

  • Install pyenv or asdf-vm.
  • Install latest python version and make it global via pyenv or asdf-vm.
  • Install sqldump2json.
  • Or use Docker.

CLI

Help:

sqldump2json -h

Values are converted to dict only if the INSERT INTO contains a list of fields or the fields are declared in CREATE TABLE:

$ sqldump2json<<<'INSERT INTO `page` (title, contents) VALUES ("Title", "Text goes here");' | jq
{
  "table_name": "page",
  "values": {
    "title": "Title",
    "contents": "Text goes here"
  }
}

$ sqldump2json <<< "INSERT INTO data VALUES (null, 3.14159265, false, 'Привет', 0xDEADBEEF);" | jq
{
  "table_name": "data",
  "values": [
    null,
    3.14159265,
    false,
    "Привет",
    "3q2+7w=="
  ]
}

Use together with grep for table parsing:

grep 'INSERT INTO `users`' /path/to/dump.sql | sqldump2json | jq -r '.values[]|@tsv' > output.csv

Also supports basic arifmetic and boolean operations:

$ echo 'insert into test (result) values (-2 + 2 * 2);' | sqldump2json
{"table_name": "test", "values": {"result": 2}}

Scripting

If you were looking for a way how to import data from SQL to NoSQL databases and etc:

#!/usr/bin/env python
from sqldump2json import DumpParser
...
if __name__ == '__main__':
    parser = DumpParser()
    for item in parser.parse("/path/to/dump.sql"):
        do_something(item)

Development

Run tests:

poetry run python -m unittest

TODO LIST

  • Add support mysql strings with charset (eg, _binary '\x00...'). + X'...'
  • Строки должны конкатенироваться, если идут подряд.
  • Improve I/O performance. Тут хз что делать, потому как буфер не особо помогает. Токены так или иначе нужно читать посимвольно. Можно было разбирать целые строки, НО я смотрел дампы, у меня и отдельные строки занимают по 1.5 гигабайта, что, конечно, уже в раму влезет, но текущая реализация тем и хороша, что жрет не больше пары сотен мегабайт (зато грузит процессор). У меня есть дамп одного взломанного сайта, он весит 23 гига и в нем содержится почти 160 миллионов записей, если запустить его парсинг без вывода в консоль отладочной информации (!это очень важно, тк вывод в консоль сильно тормозит) с дополнительными флагами -b128k -o /dev/null, он будет парситься дохуя часов, что меня не очень учтраивает, поэтому используем вместе с grep. Тут, конечно, негативно влияет и использование Btrfs со сжатием (сжатый дамп на диске занимает всего 3.6G). От игры с размером буфера я значительного прироста скорости парсинга не заметил (возможно, эта сомнительная фича будет удалена).
  • Переименовать проект в parsedump?

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqldump2json-0.3.5.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

sqldump2json-0.3.5-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file sqldump2json-0.3.5.tar.gz.

File metadata

  • Download URL: sqldump2json-0.3.5.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/6.5.9-arch2-1

File hashes

Hashes for sqldump2json-0.3.5.tar.gz
Algorithm Hash digest
SHA256 5d140e4744b5190d89ab3c64e25c9d548ca2186567fbe66699b287197195d173
MD5 e49b5b0df7fc5c89b3c6973e070a2f22
BLAKE2b-256 e5213836d0de2f4b6ccd3568dad4bb8e83fa57db9b9653b835827108bd9fa13c

See more details on using hashes here.

File details

Details for the file sqldump2json-0.3.5-py3-none-any.whl.

File metadata

  • Download URL: sqldump2json-0.3.5-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/6.5.9-arch2-1

File hashes

Hashes for sqldump2json-0.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 0723138a212c2b20fc9077d746578fcec5bdfd463403405564cda220b8541433
MD5 63148820ae55398730074343b0446cf4
BLAKE2b-256 52b5b21cd783aebff454dde6bb661f9ed5dd11bed911fc546462f6a3e9b28b5f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page