{"id":19724891,"url":"https://github.com/cromega08/calcylator","last_synced_at":"2026-04-18T05:33:25.855Z","repository":{"id":106333980,"uuid":"500496844","full_name":"cromega08/calcylator","owner":"cromega08","description":"A CLI calculator implemented with python. Allow to make arithmethic operations.","archived":false,"fork":false,"pushed_at":"2022-06-06T22:28:55.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T01:15:49.076Z","etag":null,"topics":["argparse","argparser","calculator","calculator-python","cli","cli-app","cli-calculator","paperc","python","python-3","python-3-10","python-3-10-4","python3","regex","setup","setup-script","setuptools","terminal"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cromega08.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-06T15:51:06.000Z","updated_at":"2022-06-06T22:33:46.000Z","dependencies_parsed_at":"2024-04-21T10:46:01.617Z","dependency_job_id":null,"html_url":"https://github.com/cromega08/calcylator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cromega08/calcylator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fcalcylator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fcalcylator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fcalcylator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fcalcylator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cromega08","download_url":"https://codeload.github.com/cromega08/calcylator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cromega08%2Fcalcylator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31957596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["argparse","argparser","calculator","calculator-python","cli","cli-app","cli-calculator","paperc","python","python-3","python-3-10","python-3-10-4","python3","regex","setup","setup-script","setuptools","terminal"],"created_at":"2024-11-11T23:27:27.969Z","updated_at":"2026-04-18T05:33:25.840Z","avatar_url":"https://github.com/cromega08.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Calcylator\n\nA CLI calculator implemented with python.\n\nAllow to make the follow operations:\n\n* Addition: **+**\n* Subtraction: **-**\n* Multiplication: **\\***\n* Divition: **/**\n* Power: **\\*\\***\n* Percent: **%**\n* Absolute output: with the specified **~a** option, allow to get absolute values\n\nHave the option to auto-copy to the paperclip with the command **~cp**.\n\n## Installation\n\nDownload the current repository in any dir of your computer and remember the path to it.\n\nInstall calcylator with pip:\n\n* To just install in path and use it as a command:\n\n    ```bash\n    pip install /path/to/calcylator/folder\n    ```\n\n* To add the option to edit the script without need to install each time:\n\n    ```bash\n    pip install -e /path/to/calcylator/folder\n    ```\n\nWhen installed, run:\n\n```bash\ncalcylator\n```\n\n## Usage/Examples\n\n* For help:\n\n    ```bash\n    calcylator ~h\n    ```\n\n* Monomials operations:\n\n    ```bash\n    calcylator 2+2\n    ```\n\n    ```bash\n    calcylator 2-2\n    ```\n\n    ```bash\n    calcylator 2/2\n    ```\n\n    ```bash\n    calcylator 2*2\n    ```\n\n    ```bash\n    calcylator 2**2\n    ```\n\n    ```bash\n    calcylator 2%\n    ```\n\n* Polinomials operations:\n\n    ```bash\n    calcylator 2+2*2-2/2**2*2%\n    ```\n\n* To get the output as an absolute value:\n\n    ```bash\n    calcylator ~a -5\n    ```\n\n* To auto-copy to paperclip:\n\n    ```bash\n    calcylator ~cp 2+2\n    ```\n\n**_Notes:_**\n\n* You need to have installed python in your computer.\n* Calcylator doesn't resolve algebraic operations.\n* The absolute option \"**~a**\" just it's aplicated for the output, doesn't mean you can write as input somethin like:\n\n    ```bash\n    calcylator |-5|\n    ```\n\n    This will remove \"**|**\" and just return **-5**.\n\n## Posible problems\n\n* **~cp** command:\n\n    If you have any problem with the **~cp** option, it's because a problem with the [**_pyperclip_**](https://pyperclip.readthedocs.io/en/latest/) librarie, try to run any of this commands (NOT ALL OF THEM):\n\n    * To install the xsel utility:\n\n        ```bash\n        sudo apt-get install xsel\n        ```\n\n    * To install the xclip utility:\n\n        ```bash\n        sudo apt-get install xclip\n        ```\n\n    * To install the gtk Python module:\n\n        ```bash\n        pip install gtk\n        ```\n\n    * To install the PyQt4 Python module:\n\n        ```bash\n        pip install PyQt4\n        ```\n\n    For more information, go to the pyperclip website documentation.\n\n## Authors\n\n* [@Cromega08](https://www.github.com/cromega08)\n\n## License\n\n* [GNU AGPL v3.0](https://choosealicense.com/licenses/agpl-3.0/)\n\n## You done your homework?\n\nIf you have any feedback, please feel free to fork this repository and update.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcromega08%2Fcalcylator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcromega08%2Fcalcylator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcromega08%2Fcalcylator/lists"}