Re: less verbose Python lib

Dennis Lissov <[email protected]>
Newsgroups gmane.text.yaml.general
Message-ID <CAB3rFOsz5T=VLiMWi-7OfnbSdR3pLkZFY4ttZbObwhWSP0F-3A@mail.gmail.com>
Hello Nico,

in Python YAML is typically mapped directly to the trees of objects.
The YAML sequence is mapped to the Python list, so using

    yaml.dump(['eggs', 'bread', 'milk'], default_flow_style=False)

and if the equivalent output of '[eggs, bread, milk]' is acceptable,
the keyword argument may also be omitted. Unless you need to
explicitly deal with the representation and serialization steps, it's
the easiest way to deal with YAML in Python.

Good luck,
Dennis.

On Tue, Jun 12, 2012 at 11:39 PM, Nico Schlömer
<[email protected]> wrote:
> Hi all,
>
> in C++, typical YAML usage looks like
>
> ============ *snip* ============
> YAML::Emitter out;
> out << YAML::BeginSeq;
> out << "eggs";
> out << "bread";
> out << "milk";
> out << YAML::EndSeq;
> ============ *snap* ============
>
> while the same thing in Python is (as far as I know)
> ============ *snip* ============
> print yaml.emit([yaml.StreamStartEvent(),
>                 yaml.DocumentStartEvent(),
>                 yaml.SequenceStartEvent(anchor=None, tag=None, implicit=True),
>                 yaml.ScalarEvent(anchor=None, tag=None,
> implicit=(True, False), value=u'eggs'),
>                 yaml.ScalarEvent(anchor=None, tag=None,
> implicit=(True, False), value=u'bread'),
>                 yaml.ScalarEvent(anchor=None, tag=None,
> implicit=(True, False), value=u'milk'),
>                 yaml.SequenceEndEvent()
>               ])
> ============ *snap* ============
>
> Is there any way to make this less verbose? (I don't even know why I
> need all these options.)
>
> Cheers,
> Nico
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Yaml-core mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/yaml-core

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Yaml-core mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/yaml-core
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.