Science Score: 41.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.2%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: wangz35
  • License: mit
  • Language: Python
  • Default Branch: main
  • Size: 92.8 KB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created almost 4 years ago · Last pushed almost 4 years ago
Metadata Files
Readme Contributing License Code of conduct Citation

README.md

CSC-510 Homework 1 - Group 39 - Vowel Checker

Build Status Python application DOI Contributors Supports Python GitHub Release Codecov

Description

This repository contains the codework of the project VowelCheck. The aim of this project is to provide a function to determine whether a given character input is a consonant of a vowel. This code provides correct outputs whether the character is given in upper or lower case. The designated input value for this code should be a single character and the output will be printed out, and if the input is a vowel will be returned 1, While using this code, please keep in mind that this code was built for vowels in Latin alphabet (a, e, i, o, u) and does not currently handle other cases.

Installation

To install this package, use the following command on the Command Prompt or Terminal. pip install git+https://github.com/wangz35/CSC-510-HW1.git

Example Cases

To view a particular subset of inputs you can download and run the test file. python test.py A is vowel e is vowel B is not vowel n is not vowel To try the code with a specific input, please see the following examples. ``` python

import vowelcheck as v v.vowel('a') a is vowel 1 v.vowel('B') B is not vowel 0 ```

Owner

  • Name: Zhihao Wang
  • Login: wangz35
  • Kind: user

Citation (CITATION.md)

Aman Kumar, Nisan Chhetri, Priyam Shah, Yagmur Basak Bayraktar, Zhihao Wang. (2022, August 25). wangz35/CSC-510-HW1: First release (Version v1.0). Zenodo. http://doi.org/10.5281/zenodo.7023753

GitHub Events

Total
Last Year

Dependencies

requirement.txt pypi
  • asgiref ==3.5.2
  • backports.zoneinfo ==0.2.1
  • sqlparse ==0.4.2
  • tzdata ==2022.2
.github/workflows/python-app.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v3 composite