https://github.com/eggplants/shindan-cli
ShindanMaker (診断メーカー, https://shindanmaker.com) CLI + Library
https://github.com/eggplants/shindan-cli
cli fortune fun hobby joke pip pypi shindanmaker
Last synced: 18 days ago
JSON representation
ShindanMaker (診断メーカー, https://shindanmaker.com) CLI + Library
- Host: GitHub
- URL: https://github.com/eggplants/shindan-cli
- Owner: eggplants
- License: mit
- Created: 2021-12-08T04:19:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-08T12:01:24.000Z (about 1 month ago)
- Last Synced: 2025-05-01T00:54:06.251Z (18 days ago)
- Topics: cli, fortune, fun, hobby, joke, pip, pypi, shindanmaker
- Language: Python
- Homepage: http://egpl.dev/shindan-cli/
- Size: 558 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shindan-cli
[](
) [](
) [](
) [](
)[](
) [](
)ShindanMaker (診断メーカー, ) CLI + Library
## Install
```bash
pip install shindan-cli
```## Usage
Supported types of diagnosis:
- [Name-based diagnosis (名前診断)](https://shindanmaker.com/list/name)
- [Branching diagnosis (分岐診断)](https://shindanmaker.com/list/branch)
- [AI diagnosis (AI診断)](https://shindanmaker.com/list/ai)
- [Check Diagnosis (チェック診断)](https://shindanmaker.com/list/check)### CLI
```shellsession
$ shindan -h
usage: shindan [-h] [-w] [-H] [-l] [-V] ID NAMEShindanMaker (https://shindanmaker.com) CLI
positional arguments:
ID shindan page id
NAME shindan nameoptional arguments:
-h, --help show this help message and exit
-w, --wait insert random wait
-H, --hashtag add hashtag `#shindanmaker`
-l, --link add link to last of output
-V, --version show program's version number and exit$ shindan 1036646 hoge
ねこって、むしだ。𝙐𝙉𝙄𝙌𝙇𝙊
$ shindan 1036646 huga -l
ねこって、むしだ。𝙉𝙄𝙎𝙎𝙄𝙉
https://shindanmaker.com/1036646$ shindan 1036646 huga -l -H
ねこって、むしだ。𝙁𝙐𝙅𝙄𝙏𝙎𝙐
#shindanmaker
https://shindanmaker.com/1036646
```### Library
```python
from shindan_cli import shindan
# type: (int, str, optional[bool]) -> ShindanResults
shindan(1036646, 'hoge', wait=False)
```Returns:
```python
{
'results': ['ねこって、むしだ。', '', '𝙏𝙊𝙆𝙔𝙊 𝙈𝙀𝙏𝙍𝙊'],
'hashtags': ['#shindanmaker'],
'shindan_url': 'https://shindanmaker.com/1036646'
}
```## License
MIT
---
## Similar Imprementations
- C#
- [misodengaku/ShindanMaker](https://github.com/misodengaku/ShindanMaker)
- Library (Unmaintained)
- Go
- [kakakaya/goshindan](https://github.com/kakakaya/goshindan)
- Library + CLI (Archived)
-
- Java
- [shibafu528/shindan4j](https://github.com/shibafu528/shindan4j)
- Library (Unmaintained)
-
- JavaScript
- [asawo/shindan-scraper](https://github.com/asawo/shindan-scraper)
- Library (Unmaintained)
- [stawberri/shindan](https://github.com/stawberri/shindan)
- Library (Archived)
-
- Perl
- [Likk/WebService-ShindanMaker](https://github.com/Likk/WebService-ShindanMaker)
- Library (Unmaintained)
- PHP
- [moroya/php-shindanmaker](https://github.com/moroya/php-shindanmaker)
- Library (Unmaintained)
-
- Python
- [Le96/auto_shindanmaker](https://github.com/Le96/auto_shindanmaker)
- Bot Server (Unmaintained)
- [tanitanin/shindan-python](https://github.com/tanitanin/shindan-python)
- CLI (Unmaintained)
- Ruby
- [osak/shindanmaker](https://github.com/osak/shindanmaker)
- [Mikutter](https://github.com/mikutter/mikutter) Plugin (Unmaintained)
- [gouf/shindan](https://github.com/gouf/shindan)
- Library (Unmaintained)
- [ikaruga777/shindan-cli](https://github.com/ikaruga777/shindan-cli)
- CLI (Unmaintained)
- [yasuhito/shindan](https://github.com/yasuhito/shindan)
- CLI (Unmaintained)
-
- TypeScript
- [dqn/shindanmaker-js](https://github.com/dqn/shindanmaker-js)
- Library (Archived)