pycue


Namepycue JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://github.com/tebeka/cue
SummaryPython wrapper for https://cuelang.org
upload_time2024-04-14 08:52:32
maintainerNone
docs_urlNone
authorMiki Tebeka
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!--
 Copyright 2018 The CUE Authors

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-->
[![Go Reference](https://pkg.go.dev/badge/cuelang.org/go.svg)](https://pkg.go.dev/cuelang.org/go)
[![Github](https://github.com/cuelang/cue/workflows/Test/badge.svg)](https://github.com/cuelang/cue/actions)
[![GolangCI](https://golangci.com/badges/github.com/cuelang/cue.svg)](https://golangci.com/r/github.com/cuelang/cue)
[![Go 1.14+](https://img.shields.io/badge/go-1.14-9cf.svg)](https://golang.org/dl/)
[![platforms](https://img.shields.io/badge/platforms-linux|windows|macos-inactive.svg)]()


# The CUE Data Constraint Language

_Configure, Unify, Execute_

CUE is an open source data constraint language which aims
to simplify tasks involving defining and using data.

It is a superset of JSON,
allowing users familiar with JSON to get started quickly.


### What is it for?

You can use CUE to

- define a detailed validation schema for your data (manually or automatically from data)
- reduce boilerplate in your data (manually or automatically from schema)
- extract a schema from code
- generate type definitions and validation code
- merge JSON in a principled way
- define and run declarative scripts


### How?

CUE merges the notion of schema and data.
The same CUE definition can simultaneously be used for validating data
and act as a template to reduce boilerplate.
Schema definition is enriched with fine-grained value definitions
and default values.
At the same time,
data can be simplified by removing values implied by such detailed definitions.
The merging of these two concepts enables
many tasks to be handled in a principled way.


Constraints provide a simple and well-defined, yet powerful, alternative
to inheritance,
a common source of complexity with configuration languages.


### CUE Scripting

The CUE scripting layer defines declarative scripting, expressed in CUE,
on top of data.
This solves three problems:
working around the closedness of CUE definitions (we say CUE is hermetic),
providing an easy way to share common scripts and workflows for using data,
and giving CUE the knowledge of how data is used to optimize validation.

There are many tools that interpret data or use a specialized language for
a specific domain (Kustomize, Ksonnet).
This solves dealing with data on one level, but the problem it solves may repeat
itself at a higher level when integrating other systems in a workflow.
CUE scripting is generic and allows users to define any workflow.


### Tooling

CUE is designed for automation.
Some aspects of this are:

- convert existing YAML and JSON
- automatically simplify configurations
- rich APIs designed for automated tooling
- formatter
- arbitrary-precision arithmetic
- generate CUE templates from source code
- generate source code from CUE definitions (TODO)


### Download and Install

#### Release builds

[Download](https://github.com/cuelang/cue/releases) the latest release from GitHub.

#### Install using Homebrew

Using [Homebrew](https://brew.sh), you can install using the CUE Homebrew tap:

`brew install cuelang/tap/cue`

#### Install from Source

<!-- Keep the following in sync with cmd/cue/cmd/testdata/script/install*.txt -->

If you already have Go installed, the short version is:

```
GO111MODULE=on go get cuelang.org/go/cmd/cue
```

Or, if you are using Go 1.16:

```
go install cuelang.org/go/cmd/cue@latest
```

This will install the `cue` command line tool.

For more details see [Installing CUE](./doc/install.md).


### Learning CUE

The fastest way to learn the basics is to follow the
[tutorial on basic language constructs](./doc/tutorial/basics/Readme.md).

A more elaborate tutorial demonstrating of how to convert and restructure
an existing set of Kubernetes configurations is available in
[written form](./doc/tutorial/kubernetes/README.md).

### References

- [Language Specification](./doc/ref/spec.md): official CUE Language specification.

- [API](https://pkg.go.dev/cuelang.org/go/cue): the API on pkg.go.dev

- [Builtin packages](https://pkg.go.dev/cuelang.org/go/pkg): builtins available from CUE programs

- [`cue` Command line reference](./doc/cmd/cue.md): the `cue` command


### Contributing

Our canonical Git repository is located at https://cue.googlesource.com.

To contribute, please read the [Contribution Guide](./doc/contribute.md).

To report issues or make a feature request, use the
[issue tracker](https://github.com/cuelang/cue/issues).

Changes can be contributed using Gerrit or Github pull requests.


### Contact

You can get in touch with the cuelang community in the following ways:

- Ask questions via [GitHub Discussions](https://github.com/cuelang/cue/discussions)
- Chat with us on our
  [Slack workspace](https://join.slack.com/t/cuelang/shared_invite/enQtNzQwODc3NzYzNTA0LTAxNWQwZGU2YWFiOWFiOWQ4MjVjNGQ2ZTNlMmIxODc4MDVjMDg5YmIyOTMyMjQ2MTkzMTU5ZjA1OGE0OGE1NmE).


---

Unless otherwise noted, the CUE source files are distributed
under the Apache 2.0 license found in the LICENSE file.

This is not an officially supported Google product.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tebeka/cue",
    "name": "pycue",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Miki Tebeka",
    "author_email": "miki@353solutions.com",
    "download_url": "https://files.pythonhosted.org/packages/7c/1e/f6bfbef70ea0042d0fd3b383771f6eb3c12819c829cdd375e59c47d0d9c3/pycue-0.1.3.tar.gz",
    "platform": null,
    "description": "<!--\n Copyright 2018 The CUE Authors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n-->\n[![Go Reference](https://pkg.go.dev/badge/cuelang.org/go.svg)](https://pkg.go.dev/cuelang.org/go)\n[![Github](https://github.com/cuelang/cue/workflows/Test/badge.svg)](https://github.com/cuelang/cue/actions)\n[![GolangCI](https://golangci.com/badges/github.com/cuelang/cue.svg)](https://golangci.com/r/github.com/cuelang/cue)\n[![Go 1.14+](https://img.shields.io/badge/go-1.14-9cf.svg)](https://golang.org/dl/)\n[![platforms](https://img.shields.io/badge/platforms-linux|windows|macos-inactive.svg)]()\n\n\n# The CUE Data Constraint Language\n\n_Configure, Unify, Execute_\n\nCUE is an open source data constraint language which aims\nto simplify tasks involving defining and using data.\n\nIt is a superset of JSON,\nallowing users familiar with JSON to get started quickly.\n\n\n### What is it for?\n\nYou can use CUE to\n\n- define a detailed validation schema for your data (manually or automatically from data)\n- reduce boilerplate in your data (manually or automatically from schema)\n- extract a schema from code\n- generate type definitions and validation code\n- merge JSON in a principled way\n- define and run declarative scripts\n\n\n### How?\n\nCUE merges the notion of schema and data.\nThe same CUE definition can simultaneously be used for validating data\nand act as a template to reduce boilerplate.\nSchema definition is enriched with fine-grained value definitions\nand default values.\nAt the same time,\ndata can be simplified by removing values implied by such detailed definitions.\nThe merging of these two concepts enables\nmany tasks to be handled in a principled way.\n\n\nConstraints provide a simple and well-defined, yet powerful, alternative\nto inheritance,\na common source of complexity with configuration languages.\n\n\n### CUE Scripting\n\nThe CUE scripting layer defines declarative scripting, expressed in CUE,\non top of data.\nThis solves three problems:\nworking around the closedness of CUE definitions (we say CUE is hermetic),\nproviding an easy way to share common scripts and workflows for using data,\nand giving CUE the knowledge of how data is used to optimize validation.\n\nThere are many tools that interpret data or use a specialized language for\na specific domain (Kustomize, Ksonnet).\nThis solves dealing with data on one level, but the problem it solves may repeat\nitself at a higher level when integrating other systems in a workflow.\nCUE scripting is generic and allows users to define any workflow.\n\n\n### Tooling\n\nCUE is designed for automation.\nSome aspects of this are:\n\n- convert existing YAML and JSON\n- automatically simplify configurations\n- rich APIs designed for automated tooling\n- formatter\n- arbitrary-precision arithmetic\n- generate CUE templates from source code\n- generate source code from CUE definitions (TODO)\n\n\n### Download and Install\n\n#### Release builds\n\n[Download](https://github.com/cuelang/cue/releases) the latest release from GitHub.\n\n#### Install using Homebrew\n\nUsing [Homebrew](https://brew.sh), you can install using the CUE Homebrew tap:\n\n`brew install cuelang/tap/cue`\n\n#### Install from Source\n\n<!-- Keep the following in sync with cmd/cue/cmd/testdata/script/install*.txt -->\n\nIf you already have Go installed, the short version is:\n\n```\nGO111MODULE=on go get cuelang.org/go/cmd/cue\n```\n\nOr, if you are using Go 1.16:\n\n```\ngo install cuelang.org/go/cmd/cue@latest\n```\n\nThis will install the `cue` command line tool.\n\nFor more details see [Installing CUE](./doc/install.md).\n\n\n### Learning CUE\n\nThe fastest way to learn the basics is to follow the\n[tutorial on basic language constructs](./doc/tutorial/basics/Readme.md).\n\nA more elaborate tutorial demonstrating of how to convert and restructure\nan existing set of Kubernetes configurations is available in\n[written form](./doc/tutorial/kubernetes/README.md).\n\n### References\n\n- [Language Specification](./doc/ref/spec.md): official CUE Language specification.\n\n- [API](https://pkg.go.dev/cuelang.org/go/cue): the API on pkg.go.dev\n\n- [Builtin packages](https://pkg.go.dev/cuelang.org/go/pkg): builtins available from CUE programs\n\n- [`cue` Command line reference](./doc/cmd/cue.md): the `cue` command\n\n\n### Contributing\n\nOur canonical Git repository is located at https://cue.googlesource.com.\n\nTo contribute, please read the [Contribution Guide](./doc/contribute.md).\n\nTo report issues or make a feature request, use the\n[issue tracker](https://github.com/cuelang/cue/issues).\n\nChanges can be contributed using Gerrit or Github pull requests.\n\n\n### Contact\n\nYou can get in touch with the cuelang community in the following ways:\n\n- Ask questions via [GitHub Discussions](https://github.com/cuelang/cue/discussions)\n- Chat with us on our\n  [Slack workspace](https://join.slack.com/t/cuelang/shared_invite/enQtNzQwODc3NzYzNTA0LTAxNWQwZGU2YWFiOWFiOWQ4MjVjNGQ2ZTNlMmIxODc4MDVjMDg5YmIyOTMyMjQ2MTkzMTU5ZjA1OGE0OGE1NmE).\n\n\n---\n\nUnless otherwise noted, the CUE source files are distributed\nunder the Apache 2.0 license found in the LICENSE file.\n\nThis is not an officially supported Google product.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python wrapper for https://cuelang.org",
    "version": "0.1.3",
    "project_urls": {
        "Homepage": "https://github.com/tebeka/cue"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c1ef6bfbef70ea0042d0fd3b383771f6eb3c12819c829cdd375e59c47d0d9c3",
                "md5": "46a9ecd2aa97c297945e223136f094e6",
                "sha256": "ba284834269df0b8037a91f21d117f176ab4c8aab451f75056e3121cab90301d"
            },
            "downloads": -1,
            "filename": "pycue-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "46a9ecd2aa97c297945e223136f094e6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11985,
            "upload_time": "2024-04-14T08:52:32",
            "upload_time_iso_8601": "2024-04-14T08:52:32.555797Z",
            "url": "https://files.pythonhosted.org/packages/7c/1e/f6bfbef70ea0042d0fd3b383771f6eb3c12819c829cdd375e59c47d0d9c3/pycue-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-14 08:52:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tebeka",
    "github_project": "cue",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pycue"
}
        
Elapsed time: 0.24217s