Socket
Socket
Sign inDemoInstall

easyyaml

Package Overview
Dependencies
1
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    easyyaml

Easy yaml parser and editer


Maintainers
1

Readme

EasyYaml

Introduction

This is an easy library for loading, editing and saving yaml objects.

Installation

You can install this project by a simple command.

    pip install easyyaml

QuickStart

It is quite simple to manipulate the yaml object.

>>> yd = eyaml.load(eyaml.__test_yaml_file__)
>>> for _ in range(4):
        yd.list.pop()
>>> yd.name = "this_is_a_simple_example_of_eyaml"
>>> eyaml.save(eyaml.__temp_yaml_file__, yd)

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc