Skip to main content

Easily convert iterable objects into `namedtuple` objects.

Project description

namedtuple Maker

GitHub Actions Status

Easily Convert Python iterable objects into namedtuple objects

Contents


Capabilities

  • Converts Python iterable objects (list, tuple, set, etc.) into a namedtuple objects using a decorator function, so you don't have to rewrite code that already returns iterable objects.

  • Gathers namedtuple attribute names via either a kwarg in a decorated function or using prompts to collect attribute names.

  • Automatically corrects attribute name entries that would be invalid.


Requirements

  • Python 3.9+

Installation

Install via Python pip:

pip install namedtuple-maker

Usage

Usage as a Decorator

Click to expand and view a decorator example
  1. Create an iterable object:

    my_favorites = (
        'pizza',
        'summer',
        'too personal'
    )
    
  2. Import the convert_to_namedtuple decorator function:

    from namedtuple_maker.namedtuple_maker import named_tuple_converter
    
  3. Create a function that returns an iterable object, and decorate that function with the convert_to_namedtuple decorator function:

    @named_tuple_converter
    def tuple_to_namedtuple(
        iterable_input=my_favorites,
        attribute_names=None
    ):
    
        return iterable_input
    
  4. Call the tuple_to_namedtuple function:

    • Pass an iterable object (the default my_favorites object, in this example) to the iterable_input parameter.
    • By default, you will receive a prompt to provide an attribute name for each iterable input value.
    • You may instead pass a separate iterable object of attribute names to the attribute_names parameter.
    Option #1 - Enter attribute names using prompts:
    # Call the tuple_to_namedtuple function and fill the attribute name prompts
    my_named_favorites = tuple_to_namedtuple()
    
    Enter an attribute name for the value "pizza": food
    Enter an attribute name for the value "summer": season
    Enter an attribute name for the value "too personal": sports team
    
    Option #2 - Pass an iterable object of attribute names to the `attribute_names` parameter:
    # Create an iterable object with attribute names
    my_attributes = (
        'food',
        'season',
        'sports team'
    )
    
    # Call the make_named_tuple function and pass in the attribute names
    my_named_favorites = tuple_to_namedtuple(
        attribute_names=my_attributes
    )
    
  5. Display the resulting namedtuple object:

    print(my_named_favorites)
    
  6. Observe the print function output:

    NamedTuple(food='pizza', season='summer', sports_team='too personal')
    

Usage as a Function

Click to expand and view a function usage example
  1. Create an iterable object:

    my_favorites = (
        'pizza',
        'summer',
        'too personal'
    )
    
  2. Import the make_named_tuple function:

    from namedtuple_maker.namedtuple_maker import make_named_tuple
    
  3. Call the make_named_tuple function:

    • Pass an iterable object (the default my_favorites object, in this example) to the iterable_input parameter.
    • By default, you will receive a prompt to provide an attribute name for each iterable input value.
    • You may instead pass a separate iterable object of attribute names to the attribute_names parameter.
    Option #1 - Enter attribute names using prompts:
    # Call the make_named_tuple function and fill the attribute name prompts
    my_named_favorites = make_named_tuple(
        iterable_input=my_favorites
    )
    
    Enter an attribute name for the value "pizza": food
    Enter an attribute name for the value "summer": season
    Enter an attribute name for the value "too personal": sports team
    
    Option #2 - Pass an iterable object of attribute names to the `attribute_names` parameter:
    # Create an iterable object with attribute names
    my_attributes = (
        'food',
        'season',
        'sports team'
    )
    
    # Call the make_named_tuple function and pass in the attribute names
    my_named_favorites = make_named_tuple(
        iterable_input=my_favorites,
        attribute_names=my_attributes
    )
    
  4. Display the resulting namedtuple object:

    print(my_named_favorites)
    
  5. Observe the print function output:

    NamedTuple(food='pizza', season='summer', sports_team='too personal')
    

Background

Python tuple objects are great, right? So are list, set, and many other iterable Python objects. However, accessing the values of an iterable object using arbitrary index numbers can make code difficult to read. For example, the following list object stores data about the foods I might eat in a given day:

my_meals = [
    'pizza',
    'blueberry pancakes',
    'granola',
    'fruit smoothie',
    'rice and beans'
]

Let's say that I want to access values in the list object named my_food. I can do that by referencing one or more numeric list indices like this:

print('My Meals')
print('--------')
print(f'Breakfast: {my_meals[1]}\n'
      f'Snack: {my_meals[3]}\n'
      f'Lunch: {my_meals[4]}')

The resulting output from this code is:

My Meals
--------
Breakfast: blueberry pancakes
Snack: fruit smoothie
Lunch: rice and beans

That works just fine, although it's not terribly intuitive to associate a list (or tuple) index number with a certain meal of the day, since this list doesn't have meals in any particular order. The list index assigned to each meal is arbitrary.


The Python namedtuple Function

The collections module in the Python Standard Library includes the namedtuple function, which allows you to, as the name implies, create tuple-like objects with values that you can reference by name. What does that mean, practically? Well, it means you can access the values in an iterable object by an explicit attribute name that is much more meaningful than an arbitrary index number.

For example, I'll recreate the my_meals data using a namedtuple object:

  1. First, import the namedtuple function from the collections module:

    from collections import namedtuple
    
  2. Next, create a new object type using the namedtuple function.

    • Think of a namedtuple object like a class object with named attributes, but no methods.
    • The typename parameter is an arbitrary name for the object class.
    • The field_names parameter defines the attribute names for the new object.
    Meals = namedtuple(
        typename='Meals',
        field_names=[
            'breakfast',
            'snack',
            'lunch',
            'dinner',
            'dessert'
        ]
    )
    
  3. Now, create an instance of the Meals object, and assign the individual foods to each of the named attributes (specified by the field_names parameter):

    my_meals = Meals(
        breakfast='blueberry pancakes',
        snack='fruit smoothie',
        lunch='rice and beans',
        dinner='pizza',
        dessert='granola'
    )
    

When I want to access or display data from the namedtuple object named my_meals, my code will look something like this:

print('My Meals')
print('--------')
print(f'Breakfast: {my_meals.breakfast}\n'
      f'Snack: {my_meals.snack}\n'
      f'Lunch: {my_meals.lunch}')

The result from this code looks exactly like it did in the first example:

My Meals
--------
Breakfast: blueberry pancakes
Snack: fruit smoothie
Lunch: rice and beans

The key difference between the list example and the namedtuple example is, accessing the values in the namedtuple object uses explicit named attributes (my_meals.lunch), rather than arbitrary index numbers (my_meals[4]).

For me, it's much easier to remember that the food I ate for breakfast is accessible as my_foods.breakfast within a namedtuple object, than it is to remember an arbitrary list index value like my_foods[3].


namedtuple objects and The Zen of Python

The Zen of Python is a great guide for how to write clean and effective Python code. Below is an extract of some of the lines in the output of an import this command.

The intent of the named-tuplemaker package is to help Python developers write code that improves compliance with The Zen of Python by making it simple and easy to access iterable object values by explicit attribute names, rather than arbitrary index numbers.

The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
...
Readability counts.
...

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

namedtuple-maker-1.0.9.tar.gz (10.4 kB view hashes)

Uploaded Source

Built Distribution

namedtuple_maker-1.0.9-py3-none-any.whl (10.6 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