Skip to main content

Simple tools to quickly get the names of multiple variables out of the lines of code where they are defined.

Project description

This package contains the function 'canederlist'

i.e.

Comma And NEwline Delimited Elements Reformatted as LIst of STrings

which allows to reformat a multiline string containing words separated by commas into a list of strings.

This is useful when we have a list of variables and we want to quickly get a list of their names as strings.

usage

The list of variables (i.e. not the variable containing the list, the hardcoded list of variables) must be copied and pasted as argument of canederlist(), enclosed in triple quotes (""").

The function canederlist will remove

  • multiple spaces (double or more, but not single spaces)
  • newline characters
  • triple points ...
  • (if selected in the input) round () and square [] parentheses
  • (if selected in the input) single spaces and split the remaining elements separated by commas into a list of strings.

example

from canederli import canederlist
columns = [ names, 
            descriptions, 
            x_coordinates, 
            y_coordinates ]

columns_labels = canederlist("""
 names, 
            descriptions, 
            x_coordinates, 
            y_coordinates 
""")

print(columns_labels)
['names', 'descriptions', 'x_coordinates', 'y_coordinates']

example removing parentheses


from canederli import canederlist
columns = [ names, 
            descriptions, 
            x_coordinates, 
            y_coordinates ]

columns_labels = canederlist("""
 names, 
            descriptions, 
            x_coordinates, 
            y_coordinates 
""",1)  # <--- this is like setting optional parameter rm_parentheses=False

print(columns_labels)
['names', 'descriptions', 'x_coordinates', 'y_coordinates']

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

canederli-0.0.12.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

canederli-0.0.12-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

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