File: PKG-INFO

package info (click to toggle)
pytoml 0.1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: python: 639; makefile: 3
file content (67 lines) | stat: -rw-r--r-- 2,444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Metadata-Version: 2.1
Name: pytoml
Version: 0.1.21
Summary: A parser for TOML-0.4.0
Home-page: https://github.com/avakar/pytoml
Author: Martin Vejnár
Author-email: vejnar.martin@gmail.com
License: MIT
Description: [![PyPI](https://img.shields.io/pypi/v/pytoml.svg)](https://pypi.python.org/pypi/pytoml)
        [![Build Status](https://travis-ci.org/avakar/pytoml.svg?branch=master)](https://travis-ci.org/avakar/pytoml)
        
        # Deprecated
        
        The pytoml project is no longer being actively maintained. Consider using the
        [toml](https://github.com/uiri/toml) package instead.
        
        # pytoml
        
        This project aims at being a specs-conforming and strict parser and writer for [TOML][1] files.
        The library currently supports [version 0.4.0][2] of the specs and runs with Python 2.7+ and 3.5+.
        
        Install:
        
            pip install pytoml
        
        The interface is the same as for the standard `json` package.
        
            >>> import pytoml as toml
            >>> toml.loads('a = 1')
            {'a': 1}
            >>> with open('file.toml', 'rb') as fin:
            ...     obj = toml.load(fin)
            >>> obj
            {'a': 1}
        
        The `loads` function accepts either a bytes object
        (that gets decoded as UTF-8 with no BOM allowed),
        or a unicode object.
        
        Use `dump` or `dumps` to serialize a dict into TOML.
        
            >>> print toml.dumps(obj)
            a = 1
        
        ## tests
        
        To run the tests update the `toml-test` submodule:
        
            git submodule update --init --recursive
        
        Then run the tests:
        
            python test/test.py
        
          [1]: https://github.com/toml-lang/toml
          [2]: https://github.com/toml-lang/toml/blob/master/versions/en/toml-v0.4.0.md
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown