Package Details: csvtotable 2.1.2-2

Git Clone URL: https://aur.archlinux.org/csvtotable.git (read-only, click to copy)
Package Base: csvtotable
Description: Simple command-line utility to convert CSV files to searchable and sortable HTML table
Upstream URL: https://github.com/vividvilla/csvtotable
Licenses: MIT
Conflicts: csvtotable-git
Submitter: drawm
Maintainer: None
Last Packager: seifferth
Votes: 0
Popularity: 0.000000
First Submitted: 2017-07-07 08:53 (UTC)
Last Updated: 2021-02-02 20:54 (UTC)

Latest Comments

Nanawel commented on 2023-10-20 11:31 (UTC)

Hi seifferth, You're perfectly right. I thought I also rebuilt this package but I was wrong. Simply running aura -A python-unicodecsv made it work (I use aura as wrapper). Thanks!

seifferth commented on 2023-10-20 09:38 (UTC)

Hi Nanawel,

python-unicodecsv is listed as a dependency of csvtotable, so it should be installed. Note that python-unicodecsv is also an AUR package and does not seem to be in the official repos. If you haven't done that yet, you might try reinstalling python-unicodecsv as well to ensure that it is actually installed.

Best

Frank

Nanawel commented on 2023-10-20 09:23 (UTC)

Hi, After reinstalling today, I've notived it complains about a missing dependency "unicodecsv" that I cannot find for Arch.

$ csvtotable
Traceback (most recent call last):
  File "/usr/bin/csvtotable", line 33, in <module>
    sys.exit(load_entry_point('csvtotable==2.1.2', 'console_scripts', 'csvtotable')())
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/bin/csvtotable", line 25, in importlib_load_entry_point
    return next(matches).load()
           ^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/importlib/metadata/__init__.py", line 202, in load
    module = import_module(match.group('module'))
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 940, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/usr/lib/python3.11/site-packages/csvtotable/cli.py", line 4, in <module>
    from csvtotable import convert
  File "/usr/lib/python3.11/site-packages/csvtotable/convert.py", line 13, in <module>
    import unicodecsv as csv
ModuleNotFoundError: No module named 'unicodecsv'

Any clue?