https://github.com/budtmo/triangle
Small app to check the type of triangle
https://github.com/budtmo/triangle
Last synced: over 1 year ago
JSON representation
Small app to check the type of triangle
- Host: GitHub
- URL: https://github.com/budtmo/triangle
- Owner: budtmo
- Created: 2016-11-23T18:36:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-07-05T13:40:51.000Z (about 7 years ago)
- Last Synced: 2025-02-07T12:31:41.918Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Triangle Checker
================
[](https://travis-ci.org/budtmo/triangle)
[](https://codecov.io/gh/budtmo/triangle)
[](https://dev.azure.com/budtmoos/budtmoos/_build/latest?definitionId=1&branchName=master)
Small app to check the type of triangle
Requirement
-----------
Python 3
Installation
------------
```bash
pip3 install -e git+https://github.com/budtmo/adefa /triangle.git#egg=triangle
```
Help
----
```bash
triangle -h
```
Usage
-----
triangle check ***first_length*** ***second_length*** ***third_length***
Example:
```bash
triangle check 3 4 5
```
The output will be:
```bash
Scalene
```
Unit tests
----------
Run the unit tests with this command:
```bash
nosetests -v
```