jaclang


Namejaclang JSON
Version 0.7.31 PyPI version JSON
download
home_pagehttps://jaseci.org
SummaryJac is a unique and powerful programming language that runs on top of Python, offering an unprecedented level of intelligence and intuitive understanding.
upload_time2025-02-18 20:53:18
maintainerJason Mars
docs_urlNone
authorJason Mars
requires_python<4.0.0,>=3.11.0
licenseMIT
keywords jac jaclang jaseci python programming-language machine-learning artificial-intelligence
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="https://www.jac-lang.org//assets/logo.png">
    <source media="(prefers-color-scheme: light)" srcset="https://www.jac-lang.org//assets/logo.png">
    <img alt="Jaclang Programming Language: Unique and Powerful programming language that runs on top of Python"
         src="https://www.jac-lang.org//assets/logo.png"
         width="20%">
  </picture>

[Jac Website] | [Getting started] | [Learn] | [Documentation] | [Contributing]

  [![PyPI version](https://img.shields.io/pypi/v/jaclang.svg)](https://pypi.org/project/jaclang/) [![Tests](https://github.com/Jaseci-Labs/jaclang/actions/workflows/run_pytest.yml/badge.svg)](https://github.com/Jaseci-Labs/jaclang/actions/workflows/run_pytest.yml) [![codecov](https://codecov.io/github/chandralegend/jaclang/graph/badge.svg?token=OAX26B0FE4)](https://codecov.io/github/chandralegend/jaclang)
</div>

This is the main source code repository for the [Jac] programming language. It contains the compiler, language server, and documentation.

[Jac]: https://www.jac-lang.org/
[Jac Website]: https://www.jac-lang.org/
[Getting Started]: https://www.jac-lang.org//start/
[Learn]: https://www.jac-lang.org//learn
[Documentation]: https://www.jac-lang.org//learn/guide/
[Contributing]: .github/CONTRIBUTING.md

## What and Why is Jac?

- **Native Superset of Python** - Jac is a native superset of python, meaning the entire python ecosystem is directly interoperable with Jac without any trickery (no interop interface needed). Like Typescript is to Javascript, or C++ is to C, Jac is to Python. (every Jac program can be ejected to pure python, and every python program can be transpiled to a Jac program)

- **AI as a Programming Language Constructs** - Jac includes a novel (neurosymbolic) language construct that allows replacing code with generative AI models themselves. Jac's philosophy abstracts away prompt engineering. (Imagine taking a function body and swapping it out with a model.)

- **New Modern Abstractions** - Jac introduces a paradigm that reasons about persistence and the notion of users as a language level construct. This enables writing simple programs for which no code changes are needed whether they run in a simple command terminal, or distributed across a large cloud. Jac's philosophy abstracts away dev ops and container/cloud configuration.

- **Jac Improves on Python** - Jac makes multiple thoughtful quality-of-life improvements/additions to Python. These include new modern operators, new types of comprehensions, new ways of organizing modules (i.e., separating implementations from declarations), etc.


## Quick Start

To install Jac, run:

```bash
pip install jaclang
```
Run `jac` in the terminal to see whether it is installed correctly.

Read ["Getting Started"] from [Docs] for more information.

["Getting Started"]:https://www.jac-lang.org//start/
[Docs]: https://www.jac-lang.org//learn/guide/

## Installing from Source

If you really want to install from source (though this is not recommended), see
[INSTALL.md](support/INSTALL.md).

## Getting Help

Submit and issue! Community links coming soon.

## Contributing

See [CONTRIBUTING.md](.github/CONTRIBUTING.md).

## License

Jaclang is distributed under the terms of both the MIT license with a few other open source projects vendored
within with various other licenses that are very permissive.

See [LICENSE-MIT](.guthub/LICENSE), and
[COPYRIGHT](COPYRIGHT) for details.

## Trademark

[Jaseci][jaseci] owns and protects the Jaclang trademarks and logos (the "Jaclang Trademarks").

If you want to use these names or brands, please read the [media guide][media-guide].

Third-party logos may be subject to third-party copyrights and trademarks. See [Licenses][policies-licenses] for details.

[jaseci]: https://jaseci.org/
[media-guide]: https://jaseci.org/policies/logo-policy-and-media-guide/
[policies-licenses]: https://www.jaseci.org/policies/licenses

            

Raw data

            {
    "_id": null,
    "home_page": "https://jaseci.org",
    "name": "jaclang",
    "maintainer": "Jason Mars",
    "docs_url": null,
    "requires_python": "<4.0.0,>=3.11.0",
    "maintainer_email": "jason@jaseci.org",
    "keywords": "jac, jaclang, jaseci, python, programming-language, machine-learning, artificial-intelligence",
    "author": "Jason Mars",
    "author_email": "jason@jaseci.org",
    "download_url": "https://files.pythonhosted.org/packages/28/0e/4b18bf7000ff333584fe5db36e484d262e22496a0b5f6a2c7923cfc1e1d5/jaclang-0.7.31.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://www.jac-lang.org//assets/logo.png\">\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://www.jac-lang.org//assets/logo.png\">\n    <img alt=\"Jaclang Programming Language: Unique and Powerful programming language that runs on top of Python\"\n         src=\"https://www.jac-lang.org//assets/logo.png\"\n         width=\"20%\">\n  </picture>\n\n[Jac Website] | [Getting started] | [Learn] | [Documentation] | [Contributing]\n\n  [![PyPI version](https://img.shields.io/pypi/v/jaclang.svg)](https://pypi.org/project/jaclang/) [![Tests](https://github.com/Jaseci-Labs/jaclang/actions/workflows/run_pytest.yml/badge.svg)](https://github.com/Jaseci-Labs/jaclang/actions/workflows/run_pytest.yml) [![codecov](https://codecov.io/github/chandralegend/jaclang/graph/badge.svg?token=OAX26B0FE4)](https://codecov.io/github/chandralegend/jaclang)\n</div>\n\nThis is the main source code repository for the [Jac] programming language. It contains the compiler, language server, and documentation.\n\n[Jac]: https://www.jac-lang.org/\n[Jac Website]: https://www.jac-lang.org/\n[Getting Started]: https://www.jac-lang.org//start/\n[Learn]: https://www.jac-lang.org//learn\n[Documentation]: https://www.jac-lang.org//learn/guide/\n[Contributing]: .github/CONTRIBUTING.md\n\n## What and Why is Jac?\n\n- **Native Superset of Python** - Jac is a native superset of python, meaning the entire python ecosystem is directly interoperable with Jac without any trickery (no interop interface needed). Like Typescript is to Javascript, or C++ is to C, Jac is to Python. (every Jac program can be ejected to pure python, and every python program can be transpiled to a Jac program)\n\n- **AI as a Programming Language Constructs** - Jac includes a novel (neurosymbolic) language construct that allows replacing code with generative AI models themselves. Jac's philosophy abstracts away prompt engineering. (Imagine taking a function body and swapping it out with a model.)\n\n- **New Modern Abstractions** - Jac introduces a paradigm that reasons about persistence and the notion of users as a language level construct. This enables writing simple programs for which no code changes are needed whether they run in a simple command terminal, or distributed across a large cloud. Jac's philosophy abstracts away dev ops and container/cloud configuration.\n\n- **Jac Improves on Python** - Jac makes multiple thoughtful quality-of-life improvements/additions to Python. These include new modern operators, new types of comprehensions, new ways of organizing modules (i.e., separating implementations from declarations), etc.\n\n\n## Quick Start\n\nTo install Jac, run:\n\n```bash\npip install jaclang\n```\nRun `jac` in the terminal to see whether it is installed correctly.\n\nRead [\"Getting Started\"] from [Docs] for more information.\n\n[\"Getting Started\"]:https://www.jac-lang.org//start/\n[Docs]: https://www.jac-lang.org//learn/guide/\n\n## Installing from Source\n\nIf you really want to install from source (though this is not recommended), see\n[INSTALL.md](support/INSTALL.md).\n\n## Getting Help\n\nSubmit and issue! Community links coming soon.\n\n## Contributing\n\nSee [CONTRIBUTING.md](.github/CONTRIBUTING.md).\n\n## License\n\nJaclang is distributed under the terms of both the MIT license with a few other open source projects vendored\nwithin with various other licenses that are very permissive.\n\nSee [LICENSE-MIT](.guthub/LICENSE), and\n[COPYRIGHT](COPYRIGHT) for details.\n\n## Trademark\n\n[Jaseci][jaseci] owns and protects the Jaclang trademarks and logos (the \"Jaclang Trademarks\").\n\nIf you want to use these names or brands, please read the [media guide][media-guide].\n\nThird-party logos may be subject to third-party copyrights and trademarks. See [Licenses][policies-licenses] for details.\n\n[jaseci]: https://jaseci.org/\n[media-guide]: https://jaseci.org/policies/logo-policy-and-media-guide/\n[policies-licenses]: https://www.jaseci.org/policies/licenses\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Jac is a unique and powerful programming language that runs on top of Python, offering an unprecedented level of intelligence and intuitive understanding.",
    "version": "0.7.31",
    "project_urls": {
        "Documentation": "https://jac-lang.org",
        "Homepage": "https://jaseci.org",
        "Repository": "https://github.com/Jaseci-Labs/jaclang"
    },
    "split_keywords": [
        "jac",
        " jaclang",
        " jaseci",
        " python",
        " programming-language",
        " machine-learning",
        " artificial-intelligence"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "580c542a17b65105ef202fd2729631f5f7d59e9f9c7e1cee56a0b3b501192465",
                "md5": "534c890497c405d8603145e7a9002dfc",
                "sha256": "2d6c6205efb369a59a81396275079708ca8ffe1e623e16832123fd171c037c4f"
            },
            "downloads": -1,
            "filename": "jaclang-0.7.31-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "534c890497c405d8603145e7a9002dfc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0.0,>=3.11.0",
            "size": 3475279,
            "upload_time": "2025-02-18T20:53:15",
            "upload_time_iso_8601": "2025-02-18T20:53:15.662068Z",
            "url": "https://files.pythonhosted.org/packages/58/0c/542a17b65105ef202fd2729631f5f7d59e9f9c7e1cee56a0b3b501192465/jaclang-0.7.31-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "280e4b18bf7000ff333584fe5db36e484d262e22496a0b5f6a2c7923cfc1e1d5",
                "md5": "4c6366cb4112453c569276e5c708e567",
                "sha256": "d167622f0bc32b103e8ef2ddfe04bc475877c746f3d47a7a6de73ca63605ebac"
            },
            "downloads": -1,
            "filename": "jaclang-0.7.31.tar.gz",
            "has_sig": false,
            "md5_digest": "4c6366cb4112453c569276e5c708e567",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0.0,>=3.11.0",
            "size": 2800833,
            "upload_time": "2025-02-18T20:53:18",
            "upload_time_iso_8601": "2025-02-18T20:53:18.240871Z",
            "url": "https://files.pythonhosted.org/packages/28/0e/4b18bf7000ff333584fe5db36e484d262e22496a0b5f6a2c7923cfc1e1d5/jaclang-0.7.31.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-18 20:53:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Jaseci-Labs",
    "github_project": "jaclang",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jaclang"
}
        
Elapsed time: 4.62467s