OpenHosta


NameOpenHosta JSON
Version 2.0.1 PyPI version JSON
download
home_pageNone
SummaryOpen-Source programming project IA integretion in developement environnement
upload_time2024-11-15 14:26:50
maintainerNone
docs_urlNone
authorLéandre Ramos, Merlin Devillard, William Jolivet, Emmanuel Batt
requires_python<3.13,>=3.10
licenseMIT License Copyright (c) 2024 hand-e Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords ai gpt natural language autommatic easy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # OpenHosta 
v2.0.1 - Opensource Project

**- The future of development is human -**

Welcome to the OpenHosta documentation, a powerful tool that facilitates the integration LLM in the development environnement. OpenHosta is used to emulate functions using AI, while respecting Python's native paradygma and syntax.

For this project, we have adopted a [Code of Conduct](CODE_OF_CONDUCT.md) to ensure a respectful and inclusive environment for all contributors. Please take a moment to read it.

## Table of Content

- [OpenHosta](#openhosta)
  - [Table of Content](#table-of-content)
  - [How to install OpenHosta ?](#how-to-install-openhosta-)
  - [Example](#example)
  - [Further information](#further-information)
    - [Contributing](#contributing)
    - [License](#license)
    - [Authors \& Contact](#authors--contact)

---

## How to install OpenHosta ?

You can install OpenHosta either via pip or via GitHub.

```sh
pip install OpenHosta[all]
```

or

```sh
git clone git@github.com:hand-e-fr/OpenHosta.git
```

**See the full installation guide [here](docs/installation.md)**

## Example

```python
from OpenHosta import emulate, config

config.set_default_apiKey("put-your-api-key-here")

def translate(text:str, language:str)->str:
    """
    This function translates the text in the “text” parameter into the language specified in the “language” parameter.
    """
    return emulate()

result = translate("Hello World!", "French")
print(result)
```
You check OpenHosta's [documentation](docs/doc.md) for more detailled informations or exemple

## Further information

### Contributing

We warmly welcome contributions from the community. Whether you are an experienced developer or a beginner, your contributions are welcome.

If you wish to contribute to this project, please refer to our [Contribution Guide](CONTRIBUTING.md) and our [Code of Conduct](CODE_OF_CONDUCT.md).

Browse the existing [issues](https://github.com/hand-e-fr/OpenHosta/issues) to see if someone is already working on what you have in mind or to find contribution ideas.

### License

This project is licensed under the MIT License. This means you are free to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software, subject to the following conditions:

  - The text of the license below must be included in all copies or substantial portions of the software.

See the [LICENSE](LICENSE) file for more details.

### Authors & Contact

For further questions or assistance, please refer to partner hand-e or contact us directly via github.

**Authors**:
   - Emmanuel Batt: Manager and Coordinator, Founder of Hand-e
   - William Jolivet: DevOps, SysAdmin
   - Léandre Ramos: MLOps, IA developer
   - Merlin Devillard: UX designer, Product Owner

GitHub: https://github.com/hand-e-fr/OpenHosta

---

Thank you for your interest in our project and your potential contributions!

**The OpenHosta Team**

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "OpenHosta",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.10",
    "maintainer_email": null,
    "keywords": "AI, GPT, Natural language, Autommatic, Easy",
    "author": "L\u00e9andre Ramos, Merlin Devillard, William Jolivet, Emmanuel Batt",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/56/8e/126f391b7c73cdba11aa23773aa3a9ed24ab76d1bb797b8b95932ec14e9e/openhosta-2.0.1.tar.gz",
    "platform": null,
    "description": "# OpenHosta \r\nv2.0.1 - Opensource Project\r\n\r\n**- The future of development is human -**\r\n\r\nWelcome to the OpenHosta documentation, a powerful tool that facilitates the integration LLM in the development environnement. OpenHosta is used to emulate functions using AI, while respecting Python's native paradygma and syntax.\r\n\r\nFor this project, we have adopted a [Code of Conduct](CODE_OF_CONDUCT.md) to ensure a respectful and inclusive environment for all contributors. Please take a moment to read it.\r\n\r\n## Table of Content\r\n\r\n- [OpenHosta](#openhosta)\r\n  - [Table of Content](#table-of-content)\r\n  - [How to install OpenHosta ?](#how-to-install-openhosta-)\r\n  - [Example](#example)\r\n  - [Further information](#further-information)\r\n    - [Contributing](#contributing)\r\n    - [License](#license)\r\n    - [Authors \\& Contact](#authors--contact)\r\n\r\n---\r\n\r\n## How to install OpenHosta ?\r\n\r\nYou can install OpenHosta either via pip or via GitHub.\r\n\r\n```sh\r\npip install OpenHosta[all]\r\n```\r\n\r\nor\r\n\r\n```sh\r\ngit clone git@github.com:hand-e-fr/OpenHosta.git\r\n```\r\n\r\n**See the full installation guide [here](docs/installation.md)**\r\n\r\n## Example\r\n\r\n```python\r\nfrom OpenHosta import emulate, config\r\n\r\nconfig.set_default_apiKey(\"put-your-api-key-here\")\r\n\r\ndef translate(text:str, language:str)->str:\r\n    \"\"\"\r\n    This function translates the text in the \u201ctext\u201d parameter into the language specified in the \u201clanguage\u201d parameter.\r\n    \"\"\"\r\n    return emulate()\r\n\r\nresult = translate(\"Hello World!\", \"French\")\r\nprint(result)\r\n```\r\nYou check OpenHosta's [documentation](docs/doc.md) for more detailled informations or exemple\r\n\r\n## Further information\r\n\r\n### Contributing\r\n\r\nWe warmly welcome contributions from the community. Whether you are an experienced developer or a beginner, your contributions are welcome.\r\n\r\nIf you wish to contribute to this project, please refer to our [Contribution Guide](CONTRIBUTING.md) and our [Code of Conduct](CODE_OF_CONDUCT.md).\r\n\r\nBrowse the existing [issues](https://github.com/hand-e-fr/OpenHosta/issues) to see if someone is already working on what you have in mind or to find contribution ideas.\r\n\r\n### License\r\n\r\nThis project is licensed under the MIT License. This means you are free to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software, subject to the following conditions:\r\n\r\n  - The text of the license below must be included in all copies or substantial portions of the software.\r\n\r\nSee the [LICENSE](LICENSE) file for more details.\r\n\r\n### Authors & Contact\r\n\r\nFor further questions or assistance, please refer to partner hand-e or contact us directly via github.\r\n\r\n**Authors**:\r\n   - Emmanuel Batt: Manager and Coordinator, Founder of Hand-e\r\n   - William Jolivet: DevOps, SysAdmin\r\n   - L\u00e9andre Ramos: MLOps, IA developer\r\n   - Merlin Devillard: UX designer, Product Owner\r\n\r\nGitHub: https://github.com/hand-e-fr/OpenHosta\r\n\r\n---\r\n\r\nThank you for your interest in our project and your potential contributions!\r\n\r\n**The OpenHosta Team**\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 hand-e  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Open-Source programming project IA integretion in developement environnement",
    "version": "2.0.1",
    "project_urls": {
        "Homepage": "https://github.com/hand-e-fr/OpenHosta",
        "Issues": "https://github.com/hand-e-fr/OpenHosta/issues"
    },
    "split_keywords": [
        "ai",
        " gpt",
        " natural language",
        " autommatic",
        " easy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e54bdf0c4ed7d5a6e54e24c4a3f8b586c1588a1d7d10b10e5f2b02386d561d3c",
                "md5": "689d2cd4dd4cec6431cf92641f63f421",
                "sha256": "21641e8f3675b036adaa13d372f72e163e6287dd26a0b3e7e4c7b6b1a337927c"
            },
            "downloads": -1,
            "filename": "OpenHosta-2.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "689d2cd4dd4cec6431cf92641f63f421",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.10",
            "size": 53324,
            "upload_time": "2024-11-15T14:26:48",
            "upload_time_iso_8601": "2024-11-15T14:26:48.902239Z",
            "url": "https://files.pythonhosted.org/packages/e5/4b/df0c4ed7d5a6e54e24c4a3f8b586c1588a1d7d10b10e5f2b02386d561d3c/OpenHosta-2.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "568e126f391b7c73cdba11aa23773aa3a9ed24ab76d1bb797b8b95932ec14e9e",
                "md5": "ef650a8df33a4f839c45cba83f421a2f",
                "sha256": "3d80abbeefd6a1a88a4bc935d93950bfae8b330da530e7d364c6ec40541689f7"
            },
            "downloads": -1,
            "filename": "openhosta-2.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ef650a8df33a4f839c45cba83f421a2f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.10",
            "size": 41989,
            "upload_time": "2024-11-15T14:26:50",
            "upload_time_iso_8601": "2024-11-15T14:26:50.163136Z",
            "url": "https://files.pythonhosted.org/packages/56/8e/126f391b7c73cdba11aa23773aa3a9ed24ab76d1bb797b8b95932ec14e9e/openhosta-2.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-15 14:26:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hand-e-fr",
    "github_project": "OpenHosta",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "openhosta"
}
        
Elapsed time: 0.69542s