Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shinriyo/mewcalc
猫の年齢を計算する
https://github.com/shinriyo/mewcalc
Last synced: 19 days ago
JSON representation
猫の年齢を計算する
- Host: GitHub
- URL: https://github.com/shinriyo/mewcalc
- Owner: shinriyo
- Created: 2014-12-22T06:34:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-03T23:11:54.000Z (almost 9 years ago)
- Last Synced: 2024-09-17T14:20:38.346Z (about 2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/futoase/fizzbuzz.png?branch=master)](https://travis-ci.org/futoase/fizzbuzz)
Mew Calc
====Overview
## Description
猫の人間の相当年齢を計算する。
2年目は24歳で、その後4歳ずつ増える。
[京都中央動物病院猫のQ&Aの年齢計算式](http://kyotochuoah.com/qa/neko_nenrei.html)を参考。## Demo
N/A
## VS.
N/A
## Requirement
Python 2.7.x
## Usage
### インポート方法
```
from mewcalc import MewCalc
```### 猫の年齢を生まれたdateから計算する
```
from datetime import datetime, date, time
mc = MewCalc()
born = date(1998, 1, 4)
res = mc.calculate(born)
```### 猫の年齢を年から計算する
```
from datetime import datetime, date, time
mc = MewCalc()
year = 19
res = mc.calculate_by_year(year)
```
### 注意2年未満の計算は今後作ります。
## Install
```
pip install mewcalc
```## Contribution
## Licence
MIT.
## Author
[shinriyo](https://github.com/shinriyo/)