mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Both @jlowdermilk and I have tried to use this for initial configuration work. It's cheaper just to import it for now: Name: PyYAML Version: 3.11 Summary: YAML parser and emitter for Python Home-page: http://pyyaml.org/wiki/PyYAML Author: Kirill Simonov Author-email: xi@resolvent.net License: MIT Download-URL: http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz Description: YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser and emitter for Python. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support, capable extension API, and sensible error messages. PyYAML supports standard YAML tags and provides Python-specific tags that allow to represent an arbitrary Python object. PyYAML is applicable for a broad range of tasks from complex configuration files to object serialization and persistance.
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
class Token(object):
 | 
						|
    def __init__(self, start_mark, end_mark):
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
    def __repr__(self):
 | 
						|
        attributes = [key for key in self.__dict__
 | 
						|
                if not key.endswith('_mark')]
 | 
						|
        attributes.sort()
 | 
						|
        arguments = ', '.join(['%s=%r' % (key, getattr(self, key))
 | 
						|
                for key in attributes])
 | 
						|
        return '%s(%s)' % (self.__class__.__name__, arguments)
 | 
						|
 | 
						|
#class BOMToken(Token):
 | 
						|
#    id = '<byte order mark>'
 | 
						|
 | 
						|
class DirectiveToken(Token):
 | 
						|
    id = '<directive>'
 | 
						|
    def __init__(self, name, value, start_mark, end_mark):
 | 
						|
        self.name = name
 | 
						|
        self.value = value
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
 | 
						|
class DocumentStartToken(Token):
 | 
						|
    id = '<document start>'
 | 
						|
 | 
						|
class DocumentEndToken(Token):
 | 
						|
    id = '<document end>'
 | 
						|
 | 
						|
class StreamStartToken(Token):
 | 
						|
    id = '<stream start>'
 | 
						|
    def __init__(self, start_mark=None, end_mark=None,
 | 
						|
            encoding=None):
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
        self.encoding = encoding
 | 
						|
 | 
						|
class StreamEndToken(Token):
 | 
						|
    id = '<stream end>'
 | 
						|
 | 
						|
class BlockSequenceStartToken(Token):
 | 
						|
    id = '<block sequence start>'
 | 
						|
 | 
						|
class BlockMappingStartToken(Token):
 | 
						|
    id = '<block mapping start>'
 | 
						|
 | 
						|
class BlockEndToken(Token):
 | 
						|
    id = '<block end>'
 | 
						|
 | 
						|
class FlowSequenceStartToken(Token):
 | 
						|
    id = '['
 | 
						|
 | 
						|
class FlowMappingStartToken(Token):
 | 
						|
    id = '{'
 | 
						|
 | 
						|
class FlowSequenceEndToken(Token):
 | 
						|
    id = ']'
 | 
						|
 | 
						|
class FlowMappingEndToken(Token):
 | 
						|
    id = '}'
 | 
						|
 | 
						|
class KeyToken(Token):
 | 
						|
    id = '?'
 | 
						|
 | 
						|
class ValueToken(Token):
 | 
						|
    id = ':'
 | 
						|
 | 
						|
class BlockEntryToken(Token):
 | 
						|
    id = '-'
 | 
						|
 | 
						|
class FlowEntryToken(Token):
 | 
						|
    id = ','
 | 
						|
 | 
						|
class AliasToken(Token):
 | 
						|
    id = '<alias>'
 | 
						|
    def __init__(self, value, start_mark, end_mark):
 | 
						|
        self.value = value
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
 | 
						|
class AnchorToken(Token):
 | 
						|
    id = '<anchor>'
 | 
						|
    def __init__(self, value, start_mark, end_mark):
 | 
						|
        self.value = value
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
 | 
						|
class TagToken(Token):
 | 
						|
    id = '<tag>'
 | 
						|
    def __init__(self, value, start_mark, end_mark):
 | 
						|
        self.value = value
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
 | 
						|
class ScalarToken(Token):
 | 
						|
    id = '<scalar>'
 | 
						|
    def __init__(self, value, plain, start_mark, end_mark, style=None):
 | 
						|
        self.value = value
 | 
						|
        self.plain = plain
 | 
						|
        self.start_mark = start_mark
 | 
						|
        self.end_mark = end_mark
 | 
						|
        self.style = style
 | 
						|
 |