Tagged Questions
YAML: YAML Ain't Markup Language. YAML is a human friendly data serialization standard for all programming languages.
40
votes
10answers
12k views
Which java YAML library should I use?
There are at least 4 YAML implementations listed at yaml.org. Which one of these (or another) would you recommend, and why?
There are two ways you could answer this question, either by voting for ...
38
votes
15answers
18k views
rails error, couldn't parse YAML
After updating the gems I've got this:
/home/megas/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/psych.rb:148:in `parse': couldn't parse YAML at line 182 column 9 (Psych::SyntaxError)
from ...
37
votes
9answers
13k views
PHP YAML Parsers
Does anyone know of a good YAML Parser for PHP? If so, what are the pros and cons of this library?
Update: Starting a bounty to get fresh input. What's the status of YAML parsers in 2010? Any new ...
30
votes
2answers
7k views
17
votes
6answers
3k views
Should I use YAML or JSON to store my Perl data?
I've been using the YAML format with reasonable success in the last 6 months or so.
However, the pure Perl implementation of the YAML parser is fairly
fidgety to hand-write a readable file for and ...
17
votes
3answers
3k views
What is the difference between YAML and JSON ; when prefer one than another
When we prefer to use YAML over JSON and vice versa considering following things :
Performance(the encode/decode time)
memory consumption.
expression clarity
library availability , easy of use ...
17
votes
4answers
8k views
Best way to export a database table to a YAML file?
I have some data in my development database that I would like to utilize as fixtures in my test environment. What is the best way in Rails 2.x to export a database table to a YAML fixture?
17
votes
5answers
5k views
.NET YAML Library
Anyone know of a lightweight YAML library for .NET?
Preferably something that comes with source (in C#) so that I can compile it directly into my binary and not have yet another dll dependency.
15
votes
4answers
3k views
YAML mime type?
What is the most appropriate MIME type to use when sending data structured with YAML over HTTP?
An explanation of why a given choice is most appropriate would be much appreciated.
There is no ...
14
votes
1answer
896 views
Generated Doctrine models respect case, but generated Yaml does not
Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.
I am generating models from the db (MySQL 4) using:
Doctrine::generateModelsFromDb($pathToModels);
Then ...
13
votes
5answers
2k views
Is there a native YAML library for iPhone?
I'm considering using YAML as part of my next iPhone application, but I haven't been able to find an Objective-C library to use.
The Wikipedia page for YAML mentions one, but the link is dead.
Is ...
11
votes
7answers
5k views
How to get string Objects instead Unicode ones from JSON in Python?
I'm using Python (Python 2.5.2 on Ubuntu 8.10) to parse JSON from (ASCII encoded) text files. When loading these files with json (simplejson), all my string values are cast to Unicode objects instead ...
11
votes
4answers
4k views
Pure Javascript YAML library that supports both dump and load?
Does such a thing exist for YAML (aka YAML)?
If this existed at one time, it must have been obliterated because the latest search turned up nada. It looks like there are plenty of implementations ...
10
votes
3answers
222 views
Loading and generating Yaml file with similar keys
I've got a yaml file document which have similar keys :-
sample_file.yml
line:
title: line-name
department: transcription
input_formats:
- input_format:
name: company
...
10
votes
2answers
668 views
Is there a performance gain from defining routes in app.yaml versus one large mapping in a WSGIApplication in AppEngine?
Scenario 1
This involves using one "gateway" route in app.yaml and then choosing the RequestHandler in the WSGIApplication.
app.yaml
- url: /.*
script: main.py
main.py
from ...
10
votes
3answers
2k views
10
votes
4answers
3k views
How can I include an yaml file inside another?
So I have two yaml files A and B and I want the contents of A to be inserted inside B, either spliced into the existing data structure (eg. an array), or as a child of an element, eg. the value for a ...
10
votes
3answers
9k views
How do I tell CPAN.pm where to get modules?
Here is the complete install command to CPAN and the output:
sudo perl -MCPAN -e "install Bundle::CPAN"
CPAN: Storable loaded ok (v2.13)
Going to read /home/delgreco/.cpan/Metadata
Database was ...
9
votes
4answers
640 views
Install YAML Pecl PHP Extension on MAMP
I'm working on a project with a number of developers over Git and the existing codebase uses PECL YAML PHP extension (v1.0.1).
I have tried a number of steps to install the PECL YAML extension on my ...
9
votes
5answers
4k views
How to create a custom yaml config file in Symfony
What I want to do is quite simple: store data in a custom config file that I want to read later on.
I created my file something.yml that I put in the global config directory.
It looks like that:
...
9
votes
6answers
3k views
Python human readable object serialization
i need to store Python structures made of lists / dictionaries, tuples into a human readable format. The idea is like using something similar to pickle, but pickle is not human-friendly. Other options ...
8
votes
1answer
195 views
Automatic documentation of datasets
I'm working on a project right now where I have been slowly accumulating a bunch of different variables from a bunch of different sources. Being a somewhat clever person, I created a different ...
8
votes
3answers
776 views
Browser-based yaml editor, preferably in PHP?
Does somebody know an installable on-line editor tool for YAML data structures, one that an end-user could use, preferably written in PHP?
No luck on the official yaml site.
Open Source would be ...
8
votes
4answers
2k views
YAML serialization library for C++?
YAML seems like a great format for configuration files & data binding persistent objects in human-readable form...
Is there a C++ library that handles YAML? Does Boost::Serialization have plans ...
7
votes
2answers
522 views
How to use yaml-cpp in a C++ program on Linux?
I have recently decided to use yaml as my configuration file technology, and am writing a c++ linux application on OpenSuse 11.3.
The problem is that even after successfully installing cmake, ...
7
votes
5answers
814 views
List of Language Codes in YAML or JSON?
Is there a list of language codes in YAML or JSON somewhere out there?
Another format is fine, I can convert it if necessary.
7
votes
3answers
2k views
Ruby 1.9, YAML, and string encodings: how to lead a life of sanity?
It seems to me that the YAML library that ships with ruby 1.9 is encoding-deaf.
What this means is that when generating YAML, it'll take any string of bytes, and escape any byte sequence that doesn't ...
7
votes
5answers
1k views
7
votes
3answers
1k views
What are the advantages and disadvantes of yaml vs xml for Object graph de/serialization?
The use case is long term serialization of complex object graphs in a textual format.
6
votes
2answers
471 views
In Python, how can you load YAML mappings as OrderedDicts?
I'd like to get PyYAML's loader to load mappings (and ordered mappings) into the Python 2.7+ OrderedDict type, instead of the vanilla dict and list of pairs it currently uses.
What's the best way to ...
6
votes
10answers
2k views
XML vs YAML vs JSON
Assuming I'm starting a project from scratch, which is not dependent on any other project.
I would like to use a format to store feeds, something like XML, since XML is not the only available format ...
6
votes
5answers
6k views
Best YAML editor for windows users?
I'm new to this language,is there an editor that can do indentation automatically?
6
votes
4answers
13k views
YAML validation
Is there a website that I can upload a YAML file and check for validity? I want to be sure the data coming in will parse correctly. Is trial and error the best method?
5
votes
1answer
127 views
Alternatives to pickle's `persistent_id`?
I have been using Python's pickle
module for implementing a thin file-based persistence layer. The
persistence layer (part of a larger library) relies heavily on pickle's persistent_id feature
to ...
5
votes
1answer
110 views
A minimalistic human-readable serialisation format parser for an embedded system
By "human-readable serialisation format" I mean YAML, JSON, INI or like. Please note, XML is too verbose and too inconvenient for my purposes, so let's leave it alone as the last resort.
The format ...
5
votes
1answer
608 views
Why am I getting the error “db_name must be a string or symbol”?
Quick version (for those familiar with Mongoid & Sinatra): If it's not the Psyche/Syck YAML-parsing issue, why else might I get this error when trying to connect to a MongoDB database using ...
5
votes
2answers
120 views
Round-trip parsing of data structure format (YAML or whatnot) preserving comments, for writing configuration
I have been using YAML as configuration file format in several applications, and all went well except one thing: when my program needs to write/modify a config variable in a YAML config file, it ...
5
votes
1answer
683 views
Strategies for overriding database.yml?
In my environment, the deployment servers have much of the connection information that is in the database.yml. That is, they know whether they are development, test or production servers, and they ...
5
votes
2answers
839 views
ConfigObj/ConfigParser vs. using YAML for Python settings file
Which is better for creating a settings file for Python programs, the built-in module (ConfigParser) or the independent project (ConfigObj), or using the YAML data serialization format? I have heard ...
5
votes
3answers
344 views
is there anything exist to convert xml -> yaml directly?
is there any library or way exist from which I can convert my xml records to yaml format ?
5
votes
2answers
629 views
ruby yaml ypath like xpath?
Hi i have a yaml file like so
---
data:
- date: "2004-06-11"
description: First description
- date: "2008-01-12"
description: Another descripion
How can i do a "ypath" query similar to ...
5
votes
5answers
2k views
How to include a YAML file inside a YAML file?
Is there a custom tag in YAML for ruby to include a YAML file inside a YAML file?
#E.g.:
--- !include
filename: another.yml
A similar question was asked some time ago and there was no relevant ...
5
votes
6answers
6k views
Uploading images along with Google app engine?
I'm working on a google app engine project.
My app is working and looking correct locally, but when I try to upload images in an image directory, they're not being displayed at appspot.
as a little ...
5
votes
5answers
500 views
What type of application/utilization is YAML best suited for?
Why would one choose YAML over XML or any other formats?
4
votes
3answers
60 views
Perl: command-line override of config file settings?
I'm building a script that utilizes a config file (YAML) to read in all the necessary configuration information, then prints out all the necessary steps a Linux Admin needs to step through to build a ...
4
votes
1answer
118 views
XML vs YAML vs JSON for a 2D RPG
I can't figure out whether or not to use XML, YAML, or JSON for a C++ 2D RPG.
Here are my thoughts:
I need something which is simple to save not just player data, but environment data, such as ...
4
votes
1answer
564 views
Invalid byte sequence error in normalize_yaml_input being thrown?
I'm getting the error (below) when trying to push my project to Heroku. Googling found a few people with similar issues turning up, but with a different gem as the last gem before the error, so I ...
4
votes
1answer
370 views
How to migrate my app.yaml to 2.7?
I'm migrating my gae app to python 2.7 This is my new app.yaml:
application: webfaze
version: main
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /mapreduce(/.*)?
script: ...
4
votes
3answers
325 views
Rails load YAML to hash and reference by symbol
I am loading a YAML file in Rails 3.0.9 like this:
APP_CONFIG = YAML.load(File.read(File.expand_path('../app.yml', __FILE__)))
It loads the all of the contents like hierarchical hashes, no problem. ...
4
votes
4answers
139 views
If YAML ain't markup language, what is it?
I fail to see what makes YAML any less of a markup language than XML. The purpose of a markup language is to define a structure of a document, and YAML does exactly that. (YAML stands for Yaml ain't ...