Metadata-Version: 2.1
Name: pyyaml-future
Version: 0.0.6
Summary: Use YAML 1.3 Features in PyYAML (YAML 1.1)
Home-page: https://github.com/yaml/pyyaml-future
Author: Ingy döt Net
Author-email: ingy@ingy.net
License: MIT
Description: ## Synopsis
        ```
        import yaml
        from yamlfuture import Loader
        
        # Define your own anchors:
        Loader.anchors = {'name': 'YAML'}
        # !import relative to this:
        Loader.filepath = __file__
        
        yamlstream = """\
        ---
        greeting: !+ |
          Hello {*name}.
          Welcome to the future!
        
        copyright: !import [../data.yaml, /copyright/year]
        """
        
        print(yaml.dump(yaml.load(yamlstream, Loader))
        ```
        
        ## Status
        
        This module is *very* **ALPHA**.
        
        YAML 1.3 is still being defined.
        As the various features of the YAML 1.3 evolve, `yamlfuture` will evolve.
        
        Use with caution for now.
        
        ## Description
        
        YAML 1.3 is bringing exciting new features to YAML (while keeping the YAML you
        know and love (or hate) the same).
        
        This package lets you use the new features (or close approximations) in PyYAML
        now.
        
        This is a very early release.
        More features and documentation coming soon.
        
Keywords: yaml,future
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
