Name | vibeisodd JSON |
Version |
1.0.0
JSON |
| download |
home_page | https://github.com/yourusername/VibeIsOdd |
Summary | AI-powered odd number detection using GPT |
upload_time | 2025-08-10 06:43:46 |
maintainer | None |
docs_url | None |
author | Your Name |
requires_python | >=3.7 |
license | MIT License
Copyright (c) 2025 [Your Name Here]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
ai
gpt
numbers
odd
detection
parody
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# VibeIsOdd
[](https://pypi.org/project/vibeisodd/)
[](LICENSE)
> **Why use math when you can use AI?**
VibeIsOdd is the most over-engineered way to check if a number is odd. Instead of using arithmetic, it asks a large language model (like OpenAI GPT or Gemini) if your number is odd. Because, why not?
## π€ What is this?
A parody Python package that uses AI to answer the age-old question: "Is this number odd?" Itβs a real, installable package with all the trimmingsβjust for fun (and maybe a little learning).
## π Installation
```bash
pip install vibeisodd
```
Or, for the truly adventurous:
```bash
git clone https://github.com/yourusername/VibeIsOdd.git
cd VibeIsOdd
pip install .
```
## π Setup
You'll need an API key for your chosen AI provider (OpenAI or Gemini). Set it as an environment variable:
- For OpenAI: `OPENAI_API_KEY`
- For Gemini: `GEMINI_API_KEY`
Example (PowerShell):
```powershell
$env:OPENAI_API_KEY="your-openai-key"
$env:GEMINI_API_KEY="your-gemini-key"
```
## π€ Usage
```python
from vibeisodd import vibeisodd
print(vibeisodd(7)) # True (7 is odd, confirmed by AI)
print(vibeisodd(8)) # False (8 is even, AI never lies)
```
### Batch Processing
```python
from vibeisodd import vibeisodd_batch
numbers = [1, 2, 3.0, 4.5]
results = vibeisodd_batch(numbers)
print(results) # [True, False, True, True]
```
### Example Script
You can also run the included example:
```bash
python -m vibeisodd.example
```
## π Development
1. Clone the repo
2. Install dependencies: `pip install -r requirements.txt`
3. Set your API key(s)
4. Run tests/examples
## π¦ Package Info
- **Version:** 1.0.0
- **Author:** Your Name
- **License:** MIT
- **Repo:** [https://github.com/yourusername/VibeIsOdd](https://github.com/yourusername/VibeIsOdd)
## π Why does this exist?
Because sometimes, you just want to see what happens when you replace a one-line function with a large language model. For science. For fun. For the memes.
## π§βπ» Contributing
PRs welcome! Bonus points for adding even more unnecessary AI.
## π License
MIT
Raw data
{
"_id": null,
"home_page": "https://github.com/yourusername/VibeIsOdd",
"name": "vibeisodd",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "ai, gpt, numbers, odd, detection, parody",
"author": "Your Name",
"author_email": "Your Name <your.email@example.com>",
"download_url": "https://files.pythonhosted.org/packages/74/27/753e10174c5dbfd428885fe1921cc03b1ceb12b7ec9b983cfd4f61dded8e/vibeisodd-1.0.0.tar.gz",
"platform": null,
"description": "\r\n# VibeIsOdd\r\n\r\n[](https://pypi.org/project/vibeisodd/) \r\n[](LICENSE)\r\n\r\n> **Why use math when you can use AI?**\r\n\r\nVibeIsOdd is the most over-engineered way to check if a number is odd. Instead of using arithmetic, it asks a large language model (like OpenAI GPT or Gemini) if your number is odd. Because, why not?\r\n\r\n## \ud83e\udd14 What is this?\r\nA parody Python package that uses AI to answer the age-old question: \"Is this number odd?\" It\u2019s a real, installable package with all the trimmings\u2014just for fun (and maybe a little learning).\r\n\r\n## \ud83d\ude80 Installation\r\n\r\n```bash\r\npip install vibeisodd\r\n```\r\n\r\nOr, for the truly adventurous:\r\n\r\n```bash\r\ngit clone https://github.com/yourusername/VibeIsOdd.git\r\ncd VibeIsOdd\r\npip install .\r\n```\r\n\r\n## \ud83d\udd11 Setup\r\n\r\nYou'll need an API key for your chosen AI provider (OpenAI or Gemini). Set it as an environment variable:\r\n\r\n- For OpenAI: `OPENAI_API_KEY`\r\n- For Gemini: `GEMINI_API_KEY`\r\n\r\nExample (PowerShell):\r\n```powershell\r\n$env:OPENAI_API_KEY=\"your-openai-key\"\r\n$env:GEMINI_API_KEY=\"your-gemini-key\"\r\n```\r\n\r\n## \ud83e\udd16 Usage\r\n\r\n```python\r\nfrom vibeisodd import vibeisodd\r\n\r\nprint(vibeisodd(7)) # True (7 is odd, confirmed by AI)\r\nprint(vibeisodd(8)) # False (8 is even, AI never lies)\r\n```\r\n\r\n### Batch Processing\r\n\r\n```python\r\nfrom vibeisodd import vibeisodd_batch\r\n\r\nnumbers = [1, 2, 3.0, 4.5]\r\nresults = vibeisodd_batch(numbers)\r\nprint(results) # [True, False, True, True]\r\n```\r\n\r\n### Example Script\r\n\r\nYou can also run the included example:\r\n\r\n```bash\r\npython -m vibeisodd.example\r\n```\r\n\r\n## \ud83d\udee0 Development\r\n\r\n1. Clone the repo\r\n2. Install dependencies: `pip install -r requirements.txt`\r\n3. Set your API key(s)\r\n4. Run tests/examples\r\n\r\n## \ud83d\udce6 Package Info\r\n- **Version:** 1.0.0\r\n- **Author:** Your Name\r\n- **License:** MIT\r\n- **Repo:** [https://github.com/yourusername/VibeIsOdd](https://github.com/yourusername/VibeIsOdd)\r\n\r\n## \ud83d\ude02 Why does this exist?\r\nBecause sometimes, you just want to see what happens when you replace a one-line function with a large language model. For science. For fun. For the memes.\r\n\r\n## \ud83e\uddd1\u200d\ud83d\udcbb Contributing\r\nPRs welcome! Bonus points for adding even more unnecessary AI.\r\n\r\n## \ud83d\udcc4 License\r\nMIT\r\n",
"bugtrack_url": null,
"license": "MIT License\r\n \r\n Copyright (c) 2025 [Your Name Here]\r\n \r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n \r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n \r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE.\r\n ",
"summary": "AI-powered odd number detection using GPT",
"version": "1.0.0",
"project_urls": {
"Homepage": "https://github.com/yourusername/VibeIsOdd"
},
"split_keywords": [
"ai",
" gpt",
" numbers",
" odd",
" detection",
" parody"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "fdb388a65fbcb9b0d20b16d75052f4273213785a3115467b633942f8d7d114d9",
"md5": "af454f8b2134a2df2ea26ddda412460f",
"sha256": "92b1e18601b551c0591f1e79b63c1238cc56afa8c5a1afb0afea3d87a56647f5"
},
"downloads": -1,
"filename": "vibeisodd-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "af454f8b2134a2df2ea26ddda412460f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 5466,
"upload_time": "2025-08-10T06:43:45",
"upload_time_iso_8601": "2025-08-10T06:43:45.447390Z",
"url": "https://files.pythonhosted.org/packages/fd/b3/88a65fbcb9b0d20b16d75052f4273213785a3115467b633942f8d7d114d9/vibeisodd-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7427753e10174c5dbfd428885fe1921cc03b1ceb12b7ec9b983cfd4f61dded8e",
"md5": "4f0bda2dbcd59c741d4f690800bf6212",
"sha256": "91b937be7ea5a7f923ca467b70b490a43c0ef914a3c6cb6c6c7a0cd0d5b767f8"
},
"downloads": -1,
"filename": "vibeisodd-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "4f0bda2dbcd59c741d4f690800bf6212",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 4859,
"upload_time": "2025-08-10T06:43:46",
"upload_time_iso_8601": "2025-08-10T06:43:46.975761Z",
"url": "https://files.pythonhosted.org/packages/74/27/753e10174c5dbfd428885fe1921cc03b1ceb12b7ec9b983cfd4f61dded8e/vibeisodd-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-10 06:43:46",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "yourusername",
"github_project": "VibeIsOdd",
"github_not_found": true,
"lcname": "vibeisodd"
}