Metadata-Version: 2.1
Name: shuaifu
Version: 1.4.0
Summary: Shuaifu Language
Home-page: https://github.com/Yestagram/shuaifu
Author: IvanLuLyf
Author-email: me@ivanlu.cn
License: MIT
Platform: any
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# Shuaifu
Yet another language

## Install

```shell
pip install shuaifu
```

## Usage

```python
import shuaifu

shuaifu.believe() # print believe words 
print(shuaifu.get_version()) # print version
print(shuaifu.translate('woxbyhukfu!')) # translate into pinyin
```

or

```python
import shuaifu

shuaifu.xbyh() # uuiuxbyhwfbf
print(shuaifu.bjbf()) # uuiubjbf
print(shuaifu.fjyi('woxbyhukfu!')) # fjyidcpbyb
```

### Get Holidays

```python
import shuaifu

if __name__ == '__main__':
    startYear = 2000
    count = 10
    for i in shuaifu.holidays(startYear,count):
        print(i)
```

or

```python
import shuaifu

if __name__ == '__main__':
    kdui = 2000
    uull = 10
    for i in shuaifu.jxqi(kdui,uull):
        print(i)
```

the out put will be

```text
2002-12-14
2003-12-14
2008-12-14
```

### Advanced Usage

```python
import shuaifu

@shuaifu.believe
def hello(name):
    print('Hello '+ name)
    
if __name__ == '__main__':
    hello('World')
```

the output will be

```text
函数hello受到了感化,函数hello开始信仰帅副了!
函数hello沐浴教旨,努力工作,终于有了结果
Hello World
```

