Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing a YAML file which contains some configuration data. It will be read in to Python as a dictionary of dictionaries. Some of the data needs to be repeated under a different key. Is there a way to do this without large amounts of cut and paste?

Here is an example of the yaml file:

BLOCK1:
  a: 1
  b: 2
  c: 3

BLOCK2:
  a: 4
  b: 5
  c: 6

BLOCK3: # Basically the same as BLOCK2
  a: 4  # Is there a way to make this a link to BLOCK2 or a copy of BLOCK2?
  b: 5
  c: 6
share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, there is. Take a look at: http://pyyaml.org/wiki/PyYAMLDocumentation#Aliases

Basically, you should do:

BLOCK1: 
  a: 1
  b: 2
  c: 3

BLOCK2: &block
  a: 4
  b: 5
  c: 6

BLOCK3: *block

And the results will be:

{'BLOCK1': {'a': 1, 'b': 2, 'c': 3},
 'BLOCK2': {'a': 4, 'b': 5, 'c': 6},
 'BLOCK3': {'a': 4, 'b': 5, 'c': 6}}
share|improve this answer
Thanks for the quick answer! – southoz Aug 18 '11 at 15:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.