Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 850113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:12:39+00:00 2026-05-15T07:12:39+00:00

First some background. I’m parsing a simple file format, and wish to re-use the

  • 0

First some background. I’m parsing a simple file format, and wish to re-use the results in python code later, so I made a very simple class hierarchy and wrote the parser to construct objects from the original records in the text files I’m working from.

At the same time I’d like to load the data into a legacy database, the loader files for which take a simple tab-separated format. The most straightforward way would be to just do something like:

print "{0}\t{1}\t....".format(record.id, record.attr1, len(record.attr1), ...)

Because there are so many columns to print out though, I thought I’d use the Template class to make it a bit easier to see what’s what, i.e.:

templ = Template("$id\t$attr1\t$attr1_len\t...")

And I figured I could just use the record in place of the map used by a substitute call, with some additional keywords for derived values:

print templ.substitute(record, attr1_len=len(record.attr1), ...)

Unfortunately this fails, complaining that the record instance does not have an attribute __getitem__.

So my question is twofold:

  • do I need to implement __getitem__ and if so how?
  • is there a more elegant way for something like this where you just need to output a bunch of attributes you already know the name for?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T07:12:40+00:00Added an answer on May 15, 2026 at 7:12 am
    class MyRecord:
        #....  
        def __getitem__(self, key):
            return getattr(self, key)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First, some background: I'm developing a web application using Python. All of my (text)
Some setup background first: I have a cronjob which runs a PHP file called
update: some background - i use the xml file to generate a set of
First some background. I have a file, for simplicity's sake, let's call it test.txt.
Some background first: I am working on some legacy code that implements UI interfaces.
Okay, first some background, I can't use any javascript library except YUI for this
First, some background: I will have to work on code for a JSP that
First some background, I have a python script that will be called periodically by
First some background. I inherited a project where the build file was already written
First some background, I've written an open source .NET library, named Duplicitiy (on github.com),

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.