pyyaml icon indicating copy to clipboard operation
pyyaml copied to clipboard

Canonical source repository for PyYAML

Results 184 pyyaml issues
Sort by recently updated
recently updated
newest added

Related to #43 . A platform-independent pure-python wheel on pypi would be very useful for dependency resolution in linux projects. `PyYAML-?.??-py35-none-any.whl` Ultimately a manylinux wheel using libyaml would be ideal,...

The documentation of the PyYAML API at [https://pyyaml.org/wiki/PyYAMLDocumentation](https://pyyaml.org/wiki/PyYAMLDocumentation) (besides being [out of date](https://github.com/yaml/pyyaml/issues/465)) is woefully incomplete. Most of the functions and classes listed there have no description at all, and...

Would it be possible to add the Python `range()` to FullConstructor? So that the output of `yaml.dump(range(1, 15, 3))`: `'!!python/object/apply:builtins.range\n- 1\n- 15\n- 3\n'` can be parsed correctly? Or is this...

I haven't been able to find any [existing peps](https://www.python.org/dev/peps/) about this, or issues in this repo, so I thought I'd ask: _Would it be reasonable to move pyyaml into the...

Hello, I have the following yaml file: ```yaml A: &a p1: pp1: coucou pp2: 3 p2: 0 B: pb1:

Here is my code: import yaml yaml.load('foo') This code leads to the following warning with PyYAML (5.1). $ pip install pyyaml $ python3 foo.py foo.py:2: YAMLLoadWarning: calling yaml.load() without Loader=......

question

I am using PyYAML 5.4.1 and I wonder how the optional paramter `default_style` in the function `yaml.dump` works. From other issues and part of the [documentation](https://pyyaml.org/wiki/PyYAMLDocumentation), I guessed this parameter...

Hi, I am facing an issue with strings which include newline characters getting formatted poorly. Here is an example that hopefully illustrates what I am looking for: ```python test =...

Fixes #247 According to https://yaml.org/type/bool.html, `y`, `Y`, `n`, and `N` are Boolean scalars.