https://github.com/realcyguy/magic8ball
A package for 8 ball responses.
https://github.com/realcyguy/magic8ball
8ball magic magic8ball python python-module python3
Last synced: 10 months ago
JSON representation
A package for 8 ball responses.
- Host: GitHub
- URL: https://github.com/realcyguy/magic8ball
- Owner: RealCyGuy
- License: mit
- Created: 2020-01-10T01:43:37.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-20T02:07:56.000Z (almost 6 years ago)
- Last Synced: 2025-01-31T06:46:29.577Z (11 months ago)
- Topics: 8ball, magic, magic8ball, python, python-module, python3
- Language: Python
- Homepage: https://pypi.org/project/magic8ball/
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# magic8ball package
Gets a list of magic 8 ball responses.
### Usage
```
import magic8ball
import random
ball = magic8ball.list
print(random.choice(ball))
```