bosanski-kalkulator


Namebosanski-kalkulator JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/Bosanski-Kalkulator
Summarynajbolji kalkulator
upload_time2023-02-08 06:16:46
maintainer
docs_urlNone
authorona li toki e jan Epiphany tawa mi
requires_python
licenseMIT
keywords bosanski kalkulator calculator kalkulator bosnian bosnia bosna bosanski
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Screen shot of Bosanski Kalkulator](screenshot.png)

# Bosanski Kalkulator

A perfectly normal GUI stack-based calculator.

To enter a number, press the corresponding digits from left to right and finish by pressing the hashtag, which places it on the stack. You can optionally use `(+/-)` to toggle between entering positive and negative numbers.

The arithmetic operators use the 2 top values and returns the result onto the stack.

- `del` clears the typing area.
- `clr` clears the stack.
- `pop` removes the topmost value from the stack.
- `dup` duplicates the value on top of the stack.
- `swp` swaps the first two values on the stack.
- `rll` takes the value from the top of the stack and places it onto the bottom.

## How to build

Run the following commands in the project directory:

```console
python3 -m build
```

The built packages will appear in [dist/.](dist "Distributables folder.")

## Installation

Bosanski Kalkulator is avalible on [PyPi,](https://pypi.org/project/bosanski-kalkulator "Bosanski Kalkulator on PyPi") and can be installed by running the following command(s):

```console
pip install bosanski-kalkulator
```

Alternatively, you can download the latest package from [Releases,](https://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/Bosanski-Kalkulator/releases "Bosanski Kalkulator releases.") or build from source, and install it using the following command(s):

```console
pip install <package name goes here>
```

## How to run

[Python 3](https://www.python.org "Python homepage") is required.

If Bosanski Kalkulator was installed via package, simply run the following command(s):

```console
kalkulator
```

Alternatively, you can run it using the source code in the project folder.

The following dependencies are required:

- PySimpleGUI - \<https://pypi.org/project/PySimpleGUI>
- playsound - \<https://pypi.org/project/playsound>

Which can be installed using the following command(s):
```console
pip install PySimpleGUI playsound
```

Then the [main script](src/bosanski_kalkulator/main.py "main.py") can then be run using either of the following commands in the project directory:
```console
python3 src/bosanski_kalkulator/main.py
./src/bosanski_kalkulator/main.py
```

## Support

If you like Bosanski Kalkulator and wish to support me, consider at one of the following link(s):

https://github.com/sponsors/ona-li-toki-e-jan-Epiphany-tawa-mi
# Changelog

- Fixed issue with dependencies not being automatically installed when installing.

# 0.1.0

- Initial release.


MIT License

Copyright (c) 2023 ona-li-toki-e-jan-Epiphany-tawa-mi

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.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/Bosanski-Kalkulator",
    "name": "bosanski-kalkulator",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Bosanski Kalkulator,calculator,kalkulator,bosnian,bosnia,bosna,bosanski",
    "author": "ona li toki e jan Epiphany tawa mi",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/a5/a6/d66856afcdacc3173fee18ab84b44d0a2526b06521b889a97830674cc15e/bosanski_kalkulator-0.1.1.tar.gz",
    "platform": "Windows",
    "description": "![Screen shot of Bosanski Kalkulator](screenshot.png)\n\n# Bosanski Kalkulator\n\nA perfectly normal GUI stack-based calculator.\n\nTo enter a number, press the corresponding digits from left to right and finish by pressing the hashtag, which places it on the stack. You can optionally use `(+/-)` to toggle between entering positive and negative numbers.\n\nThe arithmetic operators use the 2 top values and returns the result onto the stack.\n\n- `del` clears the typing area.\n- `clr` clears the stack.\n- `pop` removes the topmost value from the stack.\n- `dup` duplicates the value on top of the stack.\n- `swp` swaps the first two values on the stack.\n- `rll` takes the value from the top of the stack and places it onto the bottom.\n\n## How to build\n\nRun the following commands in the project directory:\n\n```console\npython3 -m build\n```\n\nThe built packages will appear in [dist/.](dist \"Distributables folder.\")\n\n## Installation\n\nBosanski Kalkulator is avalible on [PyPi,](https://pypi.org/project/bosanski-kalkulator \"Bosanski Kalkulator on PyPi\") and can be installed by running the following command(s):\n\n```console\npip install bosanski-kalkulator\n```\n\nAlternatively, you can download the latest package from [Releases,](https://github.com/ona-li-toki-e-jan-Epiphany-tawa-mi/Bosanski-Kalkulator/releases \"Bosanski Kalkulator releases.\") or build from source, and install it using the following command(s):\n\n```console\npip install <package name goes here>\n```\n\n## How to run\n\n[Python 3](https://www.python.org \"Python homepage\") is required.\n\nIf Bosanski Kalkulator was installed via package, simply run the following command(s):\n\n```console\nkalkulator\n```\n\nAlternatively, you can run it using the source code in the project folder.\n\nThe following dependencies are required:\n\n- PySimpleGUI - \\<https://pypi.org/project/PySimpleGUI>\n- playsound - \\<https://pypi.org/project/playsound>\n\nWhich can be installed using the following command(s):\n```console\npip install PySimpleGUI playsound\n```\n\nThen the [main script](src/bosanski_kalkulator/main.py \"main.py\") can then be run using either of the following commands in the project directory:\n```console\npython3 src/bosanski_kalkulator/main.py\n./src/bosanski_kalkulator/main.py\n```\n\n## Support\n\nIf you like Bosanski Kalkulator and wish to support me, consider at one of the following link(s):\n\nhttps://github.com/sponsors/ona-li-toki-e-jan-Epiphany-tawa-mi\n# Changelog\n\n- Fixed issue with dependencies not being automatically installed when installing.\n\n# 0.1.0\n\n- Initial release.\n\n\nMIT License\n\nCopyright (c) 2023 ona-li-toki-e-jan-Epiphany-tawa-mi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "najbolji kalkulator",
    "version": "0.1.1",
    "split_keywords": [
        "bosanski kalkulator",
        "calculator",
        "kalkulator",
        "bosnian",
        "bosnia",
        "bosna",
        "bosanski"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deff561a25409b93c1ac8f0aaa07ad0ddd609ef35cefcc930daac196af140537",
                "md5": "976047bc83c2fe5f4e5e7f4374438d43",
                "sha256": "f122e54b06d50f7342ab61a0109f4ab3d2e6cb1156b8c7f238ad707d1ed722b0"
            },
            "downloads": -1,
            "filename": "bosanski_kalkulator-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "976047bc83c2fe5f4e5e7f4374438d43",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 7112516,
            "upload_time": "2023-02-08T06:16:42",
            "upload_time_iso_8601": "2023-02-08T06:16:42.469341Z",
            "url": "https://files.pythonhosted.org/packages/de/ff/561a25409b93c1ac8f0aaa07ad0ddd609ef35cefcc930daac196af140537/bosanski_kalkulator-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5a6d66856afcdacc3173fee18ab84b44d0a2526b06521b889a97830674cc15e",
                "md5": "d549b47761b03fbae9d1a0d7ed88eb41",
                "sha256": "e1338ee8141a97084a5fd177e793cb57c6b9a09ef8e69c014bbd194be6f42d4b"
            },
            "downloads": -1,
            "filename": "bosanski_kalkulator-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d549b47761b03fbae9d1a0d7ed88eb41",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7114408,
            "upload_time": "2023-02-08T06:16:46",
            "upload_time_iso_8601": "2023-02-08T06:16:46.548816Z",
            "url": "https://files.pythonhosted.org/packages/a5/a6/d66856afcdacc3173fee18ab84b44d0a2526b06521b889a97830674cc15e/bosanski_kalkulator-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-08 06:16:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ona-li-toki-e-jan-Epiphany-tawa-mi",
    "github_project": "Bosanski-Kalkulator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "bosanski-kalkulator"
}
        
Elapsed time: 0.03873s