1

condaレシピのセットを読み取り、いくつかの情報でそれらを更新したいpythonスクリプトがあります.yaml ) :

私はこれを使用しています:

from ruamel.yaml import YAML

from yaml.constructor import ConstructorError
from yaml.scanner import ScannerError

yaml = YAML(typ='jinja2')
yaml.allow_duplicate_keys = True
with open(file_name) as fp:
     yalm_file = yaml.load(fp)

次を使用して元のファイルを印刷する場合yaml_file

with open(path_file, 'w') as fp:
    yaml.dump(yaml_file, fp, allow_unicode=True, explicit_start=True) 

出力には、次のようなデータのタイプに関連する多くのタグとコメントが含まれています。

 --- !!python/object/apply:ruamel.yaml.comments.CommentedMap
 dictitems:
 about: !!python/object/apply:ruamel.yaml.comments.CommentedMap
 dictitems: {home: 'https://github.com/soedinglab/xxmotif', license: 
 GPLv3, license_file: LICENSE,
 summary: 'eXhaustive, weight matriX-based motif discovery in nucleotide sequences'}
state:
  _yaml_format: !!python/object/new:ruamel.yaml.comments.Format
    state: !!python/tuple
    - null
    - {_flow_style: false}

どうすればこれを解決できますか?

4

1 に答える 1

1

インスタンスのdump()メソッドはYAML、指定したパラメーターを受け取りません ( allow_unicode=True, explicit_start=True)。import ruamel.yaml as yamlあなたは完全に機能するプログラムを提供していないので、あなたが(また) (または)を行うと推測することしかできませんimport yaml

標準の jinja2 テンプレート構文 (通常は YAML パーサーで解析する前に処理される) を処理する jinja2 プラグインによって行われる変換は、ロード中およびダンプ中に行う必要があります。YAML(typ='jinja2')そのため、同じインスタンスを使用する必要があります。

import sys
file_name = 'meta.yaml'

from ruamel.yaml import YAML

from yaml.constructor import ConstructorError
from yaml.scanner import ScannerError

yaml = YAML(typ='jinja2')
yaml.allow_duplicate_keys = True
yaml.indent(sequence=4, offset=2)
yaml.preserve_quotes = True
# yaml.explicit_start = True
with open(file_name) as fp:
     data = yaml.load(fp)

yaml.dump(data, sys.stdout)

往復で入力を正確に提供します:

{% set name = "pyexcel-ezodf" %}
{% set version = "0.3.3" %}
{% set sha256 = "26ddddc61c6bbe2641a15964ba57eaf92a171478e7ed9efb9ae4db1567d0998
c" %}

package:
  name: {{ name|lower }}
  version: {{ version }}

source:
  fn: {{ name }}-{{ version }}.tar.gz
  # The github url is been used because the tar.gz from pypi is missing the CONT
RIBUTORS.rst file
  url: https://github.com/pyexcel/{{ name }}/archive/v{{ version }}.tar.gz
  sha256: {{ sha256 }}

build:
  noarch: python
  number: 0
  script: python setup.py install --single-version-externally-managed --record r
ecord.txt

requirements:
  build:
    - python
    - setuptools

  run:
    - python
    - lxml

test:
  imports:
    - ezodf


about:
  home: https://github.com/pyexcel/pyexcel-ezodf
  license: MIT
  license_family: MIT
  license_file: '{{ environ["RECIPE_DIR"] }}/LICENSE'
  summary: 'A Python package to create/manipulate OpenDocumentFormat files'
  description: |
    'ezodf is a Python package to create new or open existing' +
    'OpenDocument (ODF) files to extract, add, modify or delete document data' +
    'forked from dead project https://bitbucket.org/mozman/ezodf' +
    'format and to/from databases' +
    ''
  dev_url: https://github.com/pyexcel/pyexcel-ezodf

extra:
  recipe-maintainers:
    - williamjamir

を設定する必要はありません。allow_unicodeこれが のデフォルトですYAML.dump()

于 2017-10-11T06:18:02.653 に答える