Skip to main content

Converts text indented/aligned with elastic tabstops

Project description

Description

This package provides functionality for handling text indented/aligned with elastic tabstops. If you have an editor which uses elastic tabstops but work on a project that uses spaces, you might use this to convert a file from using spaces to using elastic tabstops, edit it in an elastic tabstops enabled editor and then convert it back to using spaces before saving to disk.

Alternatively, it can be a nice way to create text from tables of data.

Usage

Instantiate a Text object with the string one wants to convert, and then call one of the from_* methods to create a Table object. Table objects have to_* methods which can be called to create new Text objects.

Text methods are from_spaces, from_elastic_tabstops and from_fixed_tabstops, while Table methods are to_spaces, to_elastic_tabstops and to_fixed_tabstops.

So, to convert text from using spaces to using tabs with elastic tabstops one might use the following:

from elastictabstops import Text
elastic_text = Text(spaces_text).from_spaces().to_elastic_tabstops()

Whereas to convert text from using tabs with elastic tabstops to using spaces the following might be used:

from elastictabstops import Text
spaces_text = Text(elastic_text).from_elastic_tabstops().to_spaces()
# or alternatively
spaces_text = Text(elastic_text).from_elastic_tabstops().to_spaces(multiples_of_tab_width=True)

If you want to use this package to print a table of strings you can use something like this:

from elastictabstops import Table
my_table = [
    ['Title', 'Author', 'Publisher', 'Year'],
    ['Generation X', 'Douglas Coupland', 'Abacus', '1995'],
    ['Informagic', 'Jean-Pierre Petit', 'John Murray Ltd', '1982'],
    ['The Cyberiad', 'Stanislaw Lem', 'Harcourt Publishers Ltd', '1985'],
    ['The Selfish Gene', 'Richard Dawkins', 'Oxford University Press', '2006'],
]
spaces_text = Table(my_table).to_spaces()
# or if you're displaying the text in a widget which understands elastic tabstops
elastic_text = Table(my_table).to_elastic_tabstops()

If you have aligned text which you'd like to get a table from you can do things like this:

from elastictabstops import Text
table = Text(elastic_text).from_elastic_tabstops()
table = Text(fixed_text).from_fixed_tabstops()
table = Text(spaces_text).from_spaces()

Author and licence

This package is by Nick Gravgaard and is licensed under an MIT/X11 licence.

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

ElasticTabstops-1.0.1.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ElasticTabstops-1.0.1-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file ElasticTabstops-1.0.1.tar.gz.

File metadata

  • Download URL: ElasticTabstops-1.0.1.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ElasticTabstops-1.0.1.tar.gz
Algorithm Hash digest
SHA256 22dd7cfcafeb7bdbf8cfd03aab8e71e3866006dd2372830a0e7c54d78491bc42
MD5 ffeb255da64e7425370599e119eba4a1
BLAKE2b-256 5efd20e7f05fbcbd1ad68e0bc68c653265ca08eaa135768d6dccc86c7d9010fa

See more details on using hashes here.

File details

Details for the file ElasticTabstops-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ElasticTabstops-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 34cf2c4b933e5e6a9fcb14b1453764dfc8a897b2634bae5d3c468fad253d70dc
MD5 297147bfe347ad0d40566b6202f52cac
BLAKE2b-256 3eab3a8c8384a41ac9144bb207eef7b8672648ac017e99ca1dd8a92900b2c297

See more details on using hashes here.

Supported by

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