Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python312-csvkit | Distribution: openSUSE Tumbleweed |
Version: 2.0.1 | Vendor: openSUSE |
Release: 1.4 | Build date: Tue Jul 23 08:38:43 2024 |
Group: Unspecified | Build host: reproducible |
Size: 372138 | Source RPM: python-csvkit-2.0.1-1.4.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/wireservice/csvkit | |
Summary: A library of utilities for working with CSV |
CSVkit is a library of utilities for working with CSV. It is inspired by pdftk, gdal and the original csvcut utility by Joe Germuska and Aaron Bycoffe.
MIT
* Tue Jul 23 2024 Steve Kowalik <steven.kowalik@suse.com> - Update to 2.0.1: * feat: csvsql adds --min-col-len and --col-len-multiplier options. * feat: sql2csv adds a --engine-option option. * feat: Add man pages to the sdist and wheel distributions. * fix: csvstat no longer errors when a column is a time delta and --json is set. * csvclean now writes its output to standard output and its errors to standard error, instead of to basename_out.csv and basename_err.csv files. * csvclean no longer reports or fixes errors by default; it errors if no checks or fixes are enabled. * csvclean no longer omits rows with errors from the output. * csvclean joins short rows using a newline by default, instead of a space. * Add a lot of options to csvclean. * feat: The --quoting option accepts csv.QUOTE_STRINGS and csv.QUOTE_NOTNULL on Python 3.12. * feat: csvformat: The --out-quoting option accepts csv.QUOTE_STRINGS and csv.QUOTE_NOTNULL on Python 3.12. * fix: csvformat: The --out-quoting option works with csv.QUOTE_NONUMERIC. * fix: csvclean: The --join-short-rows option no longer reports length mismatch errors that were fixed. * feat: Add support for Zstandard files with the .zst extension, if the zstandard package is installed. * feat: csvformat adds a --out-asv (--A) option to use the ASCII unit separator and record separator. * feat: csvsort adds a --ignore-case (--i) option to perform case-independent sorting. * Sun Mar 24 2024 Dirk Müller <dmueller@suse.com> - update to 1.4.0: * feat: :doc:`/scripts/csvpy` adds the options: --no-number- ellipsis, to disable the ellipsis (…) if max precision is exceeded, for example, when using table.print_table() - -sniff-limit` --no-inference` * feat: :doc:`/scripts/csvpy` adds the options: * --no-number-ellipsis, to disable the ellipsis (…) if max precision is exceeded, for example, when using table.print_table() * feat: :doc:`/scripts/csvpy` removes the --linenumbers and - -zero output options, which had no effect. * feat: :doc:`/scripts/csvpy` removes the --linenumbers and - -zero output options, which had no effect. * feat: :doc:`/scripts/in2csv` adds a --reset-dimensions option to recalculate the dimensions of an XLSX file, instead of trusting the file's metadata. csvkit's dependency agate-excel 0.4.0 automatically recalculates the dimensions if the file's metadata expresses dimensions of "A1:A1" (a single cell). * feat: :doc:`/scripts/in2csv` adds a --reset-dimensions option to recalculate the dimensions of an XLSX file, instead of trusting the file's metadata. csvkit's dependency agate-excel 0.4.0 automatically recalculates the dimensions if the file's metadata expresses dimensions of "A1:A1" (a single cell). * fix: :doc:`/scripts/csvlook` only reads up to --max-rows rows instead of the entire file. * fix: :doc:`/scripts/csvlook` only reads up to --max-rows rows instead of the entire file. * fix: :doc:`/scripts/csvpy` supports the existing input options: --locale --blanks --null-value --date-format - -datetime-format --skip-lines * Update minimum agate version to 1.6.3. * Thu Dec 14 2023 Steve Kowalik <steven.kowalik@suse.com> - Update to 1.3.0: * /scripts/csvformat adds a --skip-header (-E) option to not output a header row. * /scripts/csvlook adds a --max-precision option to set the maximum number of decimal places to display. * /scripts/csvlook adds a --no-number-ellipsis option to disable the ellipsis (…) if --max-precision is exceeded. * /scripts/csvstat supports the --no-inference (-I), --locale (-L), - -blanks, --date-format and datetime-format options. * /scripts/csvstat reports a "Non-null values" statistic. * /scripts/csvstat adds a --non-nulls option to only output counts of non-null values. * /scripts/csvstat reports a "Most decimal places" statistic. * /scripts/csvstat adds a --max-precision option to only output the most decimal places. * /scripts/csvstat adds a --json option to output results as JSON text. * /scripts/csvstat adds an --indent option to indent the JSON text when - -json is set. * /scripts/in2csv adds a --use-sheet-names option to use the sheet names as file names when --write-sheets is set. * Add a --null-value option to commands with the --blanks option, to convert additional values to NULL. * Reconfigure the encoding of standard input according to the --encoding option, which defaults to utf-8-sig. * Prompt the user if additional input is expected (i.e. if no input file or piped data is provided) in /scripts/csvjoin, /scripts/csvsql and /scripts/csvstack. * No longer errors if a NUL byte occurs in an input file. * Add Python 3.12 support. * /scripts/csvjoin uses the correct columns when performing a --right join. * Add SQLAlchemy 2 support. * Drop Python 3.7 support (end-of-life was June 5, 2023). - Switch to pyproject macros. * Fri Sep 29 2023 Ondřej Súkup <mimi.vx@gmail.com> - cleanup package requires and buildrequires * Tue May 30 2023 Dirk Müller <dmueller@suse.com> - require sqlalchemy < 2 due to agate-sql * Mon Apr 17 2023 pgajdos@suse.com - python-six is not required - Add missing Requires. * Tue Mar 28 2023 Dirk Müller <dmueller@suse.com> - update to 1.1.1: * feat: :doc:`/scripts/csvstack` handles files with columns in different orders or with different names. * Mon Jan 16 2023 Dirk Müller <dmueller@suse.com> - update to 1.1.0: * feat: :doc:`/scripts/csvsql` accepts multiple :code:`--query` command- line arguments. * feat: :doc:`/scripts/csvstat` adds :code:`--no-grouping-separator` and :code:`--decimal-format` options. * Add Python 3.11 support. * Drop Python 3.6 support (end-of-life was December 23, 2021). * Drop Python 2.7 support (end-of-life was January 1, 2020). * Fri Oct 07 2022 Daniel Garcia <daniel.garcia@suse.com> - Fix u-a scriptlets - Update to v1.0.7 * fix: :doc:`/scripts/csvcut` extracts the correct columns when - -line-numbers is set. * fix: Restore Python 2.7 support in edge cases. * feat: Use 1024 byte sniff-limit by default across csvkit. Improve csvstat performance up to 10x. * feat: Add support for .xz (LZMA) compressed input files. * Add Python 3.10 support. * Drop Python 3.5 support (end-of-life was September 30, 2020). - v1.0.6 * :doc:`/scripts/csvstat` no longer prints "Row count: " when --count is set. * :doc:`/scripts/csvclean`, :doc:`/scripts/csvcut`, :doc:`/scripts/csvgrep` no longer error if standard input is null. * :doc:`/scripts/csvformat` creates default headers when --no-header-row is set, as documented. * :doc:`/scripts/csvstack` no longer errors when --no-header-row is combined with --groups or --filenames. * Sun Feb 28 2021 Ben Greiner <code@bnavigator.de> - Add testdbf_converted.csv to fix a test failure since agate-dbf 0.2.2 -- gh#wireservice/csvkit#1073 - Make rpmlint happy by expanding the u-a install scripts early. (Keep all the cli commands as their own u-a master links.)
/etc/alternatives/csvclean /etc/alternatives/csvclean.1.gz /etc/alternatives/csvcut /etc/alternatives/csvcut.1.gz /etc/alternatives/csvformat /etc/alternatives/csvformat.1.gz /etc/alternatives/csvgrep /etc/alternatives/csvgrep.1.gz /etc/alternatives/csvjoin /etc/alternatives/csvjoin.1.gz /etc/alternatives/csvjson /etc/alternatives/csvjson.1.gz /etc/alternatives/csvlook /etc/alternatives/csvlook.1.gz /etc/alternatives/csvpy /etc/alternatives/csvpy.1.gz /etc/alternatives/csvsort /etc/alternatives/csvsort.1.gz /etc/alternatives/csvsql /etc/alternatives/csvsql.1.gz /etc/alternatives/csvstack /etc/alternatives/csvstack.1.gz /etc/alternatives/csvstat /etc/alternatives/csvstat.1.gz /etc/alternatives/in2csv /etc/alternatives/in2csv.1.gz /etc/alternatives/sql2csv /etc/alternatives/sql2csv.1.gz /usr/bin/csvclean /usr/bin/csvclean-3.12 /usr/bin/csvcut /usr/bin/csvcut-3.12 /usr/bin/csvformat /usr/bin/csvformat-3.12 /usr/bin/csvgrep /usr/bin/csvgrep-3.12 /usr/bin/csvjoin /usr/bin/csvjoin-3.12 /usr/bin/csvjson /usr/bin/csvjson-3.12 /usr/bin/csvlook /usr/bin/csvlook-3.12 /usr/bin/csvpy /usr/bin/csvpy-3.12 /usr/bin/csvsort /usr/bin/csvsort-3.12 /usr/bin/csvsql /usr/bin/csvsql-3.12 /usr/bin/csvstack /usr/bin/csvstack-3.12 /usr/bin/csvstat /usr/bin/csvstat-3.12 /usr/bin/in2csv /usr/bin/in2csv-3.12 /usr/bin/sql2csv /usr/bin/sql2csv-3.12 /usr/lib/python3.12/site-packages/csvkit /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/AUTHORS.rst /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/COPYING /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/INSTALLER /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/METADATA /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/RECORD /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/REQUESTED /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/WHEEL /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/entry_points.txt /usr/lib/python3.12/site-packages/csvkit-2.0.1.dist-info/top_level.txt /usr/lib/python3.12/site-packages/csvkit/__init__.py /usr/lib/python3.12/site-packages/csvkit/__pycache__ /usr/lib/python3.12/site-packages/csvkit/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/cleanup.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/cleanup.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/cli.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/cli.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/exceptions.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/exceptions.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/grep.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/__pycache__/grep.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/cleanup.py /usr/lib/python3.12/site-packages/csvkit/cli.py /usr/lib/python3.12/site-packages/csvkit/convert /usr/lib/python3.12/site-packages/csvkit/convert/__init__.py /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__ /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__/fixed.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__/fixed.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__/geojs.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/convert/__pycache__/geojs.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/convert/fixed.py /usr/lib/python3.12/site-packages/csvkit/convert/geojs.py /usr/lib/python3.12/site-packages/csvkit/exceptions.py /usr/lib/python3.12/site-packages/csvkit/grep.py /usr/lib/python3.12/site-packages/csvkit/utilities /usr/lib/python3.12/site-packages/csvkit/utilities/__init__.py /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__ /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvclean.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvclean.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvcut.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvcut.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvformat.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvformat.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvgrep.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvgrep.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvjoin.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvjoin.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvjson.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvjson.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvlook.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvlook.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvpy.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvpy.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvsort.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvsort.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvsql.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvsql.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvstack.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvstack.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvstat.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/csvstat.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/in2csv.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/in2csv.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/sql2csv.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/__pycache__/sql2csv.cpython-312.pyc /usr/lib/python3.12/site-packages/csvkit/utilities/csvclean.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvcut.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvformat.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvgrep.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvjoin.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvjson.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvlook.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvpy.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvsort.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvsql.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvstack.py /usr/lib/python3.12/site-packages/csvkit/utilities/csvstat.py /usr/lib/python3.12/site-packages/csvkit/utilities/in2csv.py /usr/lib/python3.12/site-packages/csvkit/utilities/sql2csv.py /usr/share/doc/packages/python312-csvkit /usr/share/doc/packages/python312-csvkit/AUTHORS.rst /usr/share/doc/packages/python312-csvkit/CHANGELOG.rst /usr/share/doc/packages/python312-csvkit/README.rst /usr/share/licenses/python312-csvkit /usr/share/licenses/python312-csvkit/COPYING /usr/share/man/man1/csvclean-3.12.1.gz /usr/share/man/man1/csvclean.1.gz /usr/share/man/man1/csvcut-3.12.1.gz /usr/share/man/man1/csvcut.1.gz /usr/share/man/man1/csvformat-3.12.1.gz /usr/share/man/man1/csvformat.1.gz /usr/share/man/man1/csvgrep-3.12.1.gz /usr/share/man/man1/csvgrep.1.gz /usr/share/man/man1/csvjoin-3.12.1.gz /usr/share/man/man1/csvjoin.1.gz /usr/share/man/man1/csvjson-3.12.1.gz /usr/share/man/man1/csvjson.1.gz /usr/share/man/man1/csvlook-3.12.1.gz /usr/share/man/man1/csvlook.1.gz /usr/share/man/man1/csvpy-3.12.1.gz /usr/share/man/man1/csvpy.1.gz /usr/share/man/man1/csvsort-3.12.1.gz /usr/share/man/man1/csvsort.1.gz /usr/share/man/man1/csvsql-3.12.1.gz /usr/share/man/man1/csvsql.1.gz /usr/share/man/man1/csvstack-3.12.1.gz /usr/share/man/man1/csvstack.1.gz /usr/share/man/man1/csvstat-3.12.1.gz /usr/share/man/man1/csvstat.1.gz /usr/share/man/man1/in2csv-3.12.1.gz /usr/share/man/man1/in2csv.1.gz /usr/share/man/man1/sql2csv-3.12.1.gz /usr/share/man/man1/sql2csv.1.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Jan 29 23:53:53 2025