jaclang


Namejaclang JSON
Version 0.7.27 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_time2024-11-27 17:00:04
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/f1/c5/62b82cd65d388d2ca2bab7bb4c4ee95ffc783259e7997f27e7a54857c678/jaclang-0.7.27.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.27",
    "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": "fb89f4f2ab1ee3b6b61b075566d6be87715e7d94f60a52ac8565968d1970746a",
                "md5": "c1584d049ac5aeb6375760424558ec1d",
                "sha256": "ce0a754a0fcfb20789e531bd17d1d49a54f8c241162ad5cccaa2aac1d850f6bd"
            },
            "downloads": -1,
            "filename": "jaclang-0.7.27-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c1584d049ac5aeb6375760424558ec1d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0.0,>=3.11.0",
            "size": 3459478,
            "upload_time": "2024-11-27T17:00:02",
            "upload_time_iso_8601": "2024-11-27T17:00:02.361085Z",
            "url": "https://files.pythonhosted.org/packages/fb/89/f4f2ab1ee3b6b61b075566d6be87715e7d94f60a52ac8565968d1970746a/jaclang-0.7.27-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1c562b82cd65d388d2ca2bab7bb4c4ee95ffc783259e7997f27e7a54857c678",
                "md5": "0597b8d834eb53766175cb0b39b624eb",
                "sha256": "c7183c0d6d47c43910b2ef8103fab6b67317e15739606bed84f4118193c1fdaa"
            },
            "downloads": -1,
            "filename": "jaclang-0.7.27.tar.gz",
            "has_sig": false,
            "md5_digest": "0597b8d834eb53766175cb0b39b624eb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0.0,>=3.11.0",
            "size": 2835116,
            "upload_time": "2024-11-27T17:00:04",
            "upload_time_iso_8601": "2024-11-27T17:00:04.505358Z",
            "url": "https://files.pythonhosted.org/packages/f1/c5/62b82cd65d388d2ca2bab7bb4c4ee95ffc783259e7997f27e7a54857c678/jaclang-0.7.27.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-27 17:00:04",
    "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: 0.49454s