Skip to main content

Yet another style preserving TOML library

Project description

PyPI Version Python Versions License Github Actions codecov

ATOML - Yet another style-preserving TOML library for Python

ATOML is a 1.0.0rc1-compliant TOML library.

It includes a parser that preserves all comments, indentations, whitespace and internal element ordering, and makes them accessible and editable via an intuitive API.

You can also create new TOML documents from scratch using the provided helpers.

The name comes from the famous Japanese cartoon character 鉄腕アトム(Atom).

Implementation Change: Start from 1.0, ATOML is a fork of tomlkit v0.7.0 with less bugs and inconsistency.

Usage

Parsing

ATOML comes with a fast and style-preserving parser to help you access the content of TOML files and strings.

>>> from atoml import dumps
>>> from atoml import parse  # you can also use loads

>>> content = """[table]
... foo = "bar"  # String
... """
>>> doc = parse(content)

# doc is a TOMLDocument instance that holds all the information
# about the TOML string.
# It behaves like a standard dictionary.

>>> assert doc["table"]["foo"] == "bar"

# The string generated from the document is exactly the same
# as the original string
>>> assert dumps(doc) == content

Modifying

ATOML provides an intuitive API to modify TOML documents.

>>> from atoml import dumps
>>> from atoml import parse
>>> from atoml import table

>>> doc = parse("""[table]
... foo = "bar"  # String
... """)

>>> doc["table"]["baz"] = 13

>>> dumps(doc)
"""[table]
foo = "bar"  # String
baz = 13
"""

# Add a new table
>>> tab = table()
>>> tab.add("array", [1, 2, 3])

>>> doc["table2"] = tab

>>> dumps(doc)
"""[table]
foo = "bar"  # String
baz = 13

[table2]
array = [1, 2, 3]
"""

# Remove the newly added table
>>> doc.remove("table2")
# del doc["table2] is also possible

Writing

You can also write a new TOML document from scratch.

Let's say we want to create this following document:

# This is a TOML document.

title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
organization = "GitHub"
bio = "GitHub Cofounder & CEO\nLikes tater tots and beer."
dob = 1979-05-27T07:32:00Z # First class dates? Why not?

[database]
server = "192.168.1.1"
ports = [ 8001, 8001, 8002 ]
connection_max = 5000
enabled = true

It can be created with the following code:

>>> from atoml import comment
>>> from atoml import document
>>> from atoml import nl
>>> from atoml import table

>>> doc = document()
>>> doc.add(comment("This is a TOML document."))
>>> doc.add(nl())
>>> doc.add("title", "TOML Example")
# Using doc["title"] = "TOML Example" is also possible

>>> owner = table()
>>> owner.add("name", "Tom Preston-Werner")
>>> owner.add("organization", "GitHub")
>>> owner.add("bio", "GitHub Cofounder & CEO\nLikes tater tots and beer.")
>>> owner.add("dob", datetime(1979, 5, 27, 7, 32, tzinfo=utc))
>>> owner["dob"].comment("First class dates? Why not?")

# Adding the table to the document
>>> doc.add("owner", owner)

>>> database = table()
>>> database["server"] = "192.168.1.1"
>>> database["ports"] = [8001, 8001, 8002]
>>> database["connection_max"] = 5000
>>> database["enabled"] = True

>>> doc["database"] = database

Installation

If you are using PDM, add atoml to your pyproject.toml file by using:

pdm add atoml

If not, you can use pip:

pip install atoml

Migrate from TOMLKit

ATOML comes with full compatible API with TOMLKit, you can easily do a Replace All of tomlkit to atoml or:

import atoml as tomlkit

ATOML differs from TOMLkit in the following ways:

  • Python 3.6+ support only
  • Tables and arrays are subclasses of MutableMapping and MutableSequence respectively, to reduce some inconsistency between the container behaviors
  • load and dump methods added
  • Less bugs

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atoml-1.1.0.tar.gz (137.3 kB view details)

Uploaded Source

Built Distribution

atoml-1.1.0-py3-none-any.whl (31.5 kB view details)

Uploaded Python 3

File details

Details for the file atoml-1.1.0.tar.gz.

File metadata

  • Download URL: atoml-1.1.0.tar.gz
  • Upload date:
  • Size: 137.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for atoml-1.1.0.tar.gz
Algorithm Hash digest
SHA256 061ae4cade56de5100f67678097167a3d4285a448f9e0be53e86513730eb72bb
MD5 53fba0a1bd5e7221c196e6b4b3aa6950
BLAKE2b-256 9daa8d4cf5524bc78caf154f2649bebbf1826caa493a680acab9a84bfc38030a

See more details on using hashes here.

Provenance

File details

Details for the file atoml-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: atoml-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 31.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for atoml-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 10db7928af5abebcd0677a3e8ce23b143dbbbf1206e8202ae6a957741e2ad851
MD5 8fd199fa3a821442ae9cc83acb507dea
BLAKE2b-256 9b33ba55f562a8d0c1c4798685db30540428f46e50555af96f332a09aed44b9b

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page