tktable icon indicating copy to clipboard operation
tktable copied to clipboard

Wrapper library for Python of the homonymous Tk library.

tktable

license

This is a wrapper library for Python of the homonymous Tcl/Tk library written by Guilherme Polo.

Dependencies

You need to install a few dependencies (or make sure they are already installed) to use this wrapper library.

  1. Tcl (a programming language)
  2. Tk (a cross-platform windowing toolkit for Tcl)
  3. Tkinter (the Python wrapper around Tk)
  4. TkTable (the Tcl library that extends Tk, so it doesn't usually come with Tk)

If those dependencies are satisfied, you can proceed. It might be the case that some, all or none of these dependencies are installed, so you need to install them, because this package does not install them for you.

How to use?

TODO

WARNINGS

  • It can be difficult to use this library because it depends on other external libraries (Tcl, Tk and TkTable), which might not be installed on your system. Even if they are installed, they might not be linked correctly.

  • This repository tries to make more visible this wrapper library to Python users. However, it's not under development or really maintained, so don't expect someone to help you if you encounter a problem.

  • The original Tk extension, TkTable, is also not developed anymore. The last time it was modified was in 2008. See this and this

Installation issues

The issue tracker contains some potentially useful info on how to solve certain installation issues. In particular, read this comment.

Development

I use poetry to manage the dependencies and packaging.

TODO

See here.