# MukeshAPI 🚀
## Chatgpt AI 🤖
```
from MukeshAPI import api
# Execute Chatgpt AI with the input text
response = api.chatgpt("Write simple basic html website")
print(response)
# Execute Chatgpt AI with the input text with modes features
# available modes are "girlfriend","anime","animev2","flirt","santa","elonmusk"
response = api.chatgpt("hi babe","girlfriend")
print(response)
```
## Chatbot AI 🤖
```
from MukeshAPI import api
# Execute Chatbot AI with the input text
print(api.chatbot("hii"))
```
## Blackbox AI 🤖
```
from MukeshAPI import api
# Execute blackbox AI with the input text
print(api.blackbox("write flask app code"))
```
## Password Generator 💡
```
from MukeshAPI import api
# Generate a default length password
print(api.password())
# Generate a password of specific length (e.g., 10)
print(api.password(10))
```
## Gemini AI 🤖
```
from MukeshAPI import api
# Execute Gemini AI with the input text
print(api.gemini("write flask app code"))
```
## Datagpt AI 🤖
```
from MukeshAPI import api
# Execute datagpt AI with the input text
response = api.datagpt("what is data science")
print(response)
```
## BhagwatGita
```
from MukeshAPI import api
verse_data = api.bhagwatgita(1, 5)
print(verse_data)
```
## IMDB Search
```
from MukeshAPI import api
movie_data = api.imdb("The Godfather")
print(movie_data)
```
## Morse Decode
```
from MukeshAPI import api
decoded_result =api.morse_decode(".... . .-.. .-.. --- / .-- --- .-. .-.. -..")
print(decoded_result)
```
## Morse Encode
```
from MukeshAPI import api
encoded_result =api.morse_encode("enter text here")
print(encoded_result)
```
## Hastag Generator
```
from MukeshAPI import api
keyword = "python"
hashtags = api.hashtag(keyword)
print(hashtags)
```
## Unsplash Image Search
```
from MukeshAPI import api
response = api.unsplash("boy image")
print(response)
```
## LeetCode Information
```
from MukeshAPI import api
user_data = api.leetcode("noob-mukesh")
print(user_data)
```
## Pypi Info
```
from MukeshAPI import api
user_data = api.pypi("mukeshapi")
print(user_data)
```
## Github Profile Information
```
from MukeshAPI import api
search_results = api.github("noob-mukesh")
print(search_results)
```
## Github Repo Search
```
from MukeshAPI import api
search_results = api.repo("mukeshrobot")
print(search_results)
```
## Random Meme
```
from MukeshAPI import api
search_results = api.meme()
print(search_results)
```
Please note that you need to install `MukeshAPI` using pip by running `pip install --upgrade MukeshAPI` in your terminal before executing these codes.
## Note:
<p> The above examples are for Python </p>
## Copyright (c) 2024-25
## Author : Noob-Mukesh 👨💻
# Functions in the api module are as follows:
1. <b>chatgpt(args) </b>- Executes chatgpt AI functionality
2. <b>gemini(args) </b>- Executes Gemini AI functionality
3. <b>blackbox(args) </b>- Executes blackbox AI functionality 🔮
4. <b>hastag(args) </b>- Generates hashtags based on input
5. <b>imdb(args) </b>- Fetches information from IMDB
6. <b>morse_encode(args) </b>- Encodes text into Morse code
7. <b>morse_decode(args) </b>- Decodes Morse code into text
8. <b>leetcode(args) </b>- Extract leetcode information by username
9. <b>password(args) </b>- Generates a random password
10. <b>pypi(args) </b>- Search PyPI for packages
11. <b>datagpt(args) </b>- Generates data using Datasets from datagpt ai
12. <b>unsplash(args) </b>- search hd image from unsplash website
13. <b>github(args) </b> - Extract github information by username
14. <b>repo(args) </b> - Extract github repo by name
15. <b> Meme</b> - Generate memes
<b>🔗 Have fun coding with MukeshAPI! </b>
<h3 align="center">
─「 sᴜᴩᴩᴏʀᴛ 」─
</h3>
<p align="center">
<a href="https://telegram.me/the_support_chat"><img src="https://img.shields.io/badge/-Support%20Group-blue.svg?style=for-the-badge&logo=Telegram"></a>
</p>
<p align="center">
<a href="https://telegram.me/mr_sukkun"><img src="https://img.shields.io/badge/-Support%20Channel-blue.svg?style=for-the-badge&logo=telegram"></a>
</p>
Raw data
{
"_id": null,
"home_page": "https://github.com/noob-mukesh/MukeshAPI",
"name": "MukeshAPI",
"maintainer": null,
"docs_url": null,
"requires_python": "~=3.7",
"maintainer_email": null,
"keywords": "python, MukeshAPI, flask",
"author": "Mukesh | noob-mukesh",
"author_email": "itzcodermukesh@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/1e/fd/b0ec6c38486cd36a2a97dce59c058b9dbd21eefcba8d7e0e6c769e44b8a7/MukeshAPI-0.6.5.6.tar.gz",
"platform": null,
"description": "# MukeshAPI \ud83d\ude80\r\n\r\n## Chatgpt AI \ud83e\udd16\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n# Execute Chatgpt AI with the input text\r\n\r\nresponse = api.chatgpt(\"Write simple basic html website\")\r\n\r\nprint(response)\r\n\r\n# Execute Chatgpt AI with the input text with modes features\r\n\r\n# available modes are \"girlfriend\",\"anime\",\"animev2\",\"flirt\",\"santa\",\"elonmusk\"\r\n\r\nresponse = api.chatgpt(\"hi babe\",\"girlfriend\")\r\n\r\nprint(response)\r\n\r\n```\r\n\r\n## Chatbot AI \ud83e\udd16\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n# Execute Chatbot AI with the input text\r\n\r\nprint(api.chatbot(\"hii\"))\r\n```\r\n\r\n## Blackbox AI \ud83e\udd16\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n# Execute blackbox AI with the input text\r\n\r\nprint(api.blackbox(\"write flask app code\"))\r\n```\r\n\r\n## Password Generator \ud83d\udca1\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n# Generate a default length password\r\nprint(api.password())\r\n\r\n# Generate a password of specific length (e.g., 10)\r\nprint(api.password(10))\r\n```\r\n\r\n## Gemini AI \ud83e\udd16\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n# Execute Gemini AI with the input text\r\n\r\nprint(api.gemini(\"write flask app code\"))\r\n```\r\n\r\n## Datagpt AI \ud83e\udd16\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n# Execute datagpt AI with the input text\r\nresponse = api.datagpt(\"what is data science\")\r\nprint(response)\r\n```\r\n\r\n## BhagwatGita\r\n\r\n```\r\nfrom MukeshAPI import api\r\nverse_data = api.bhagwatgita(1, 5)\r\nprint(verse_data)\r\n```\r\n\r\n## IMDB Search\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\n\r\nmovie_data = api.imdb(\"The Godfather\")\r\n\r\nprint(movie_data)\r\n```\r\n\r\n## Morse Decode\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\ndecoded_result =api.morse_decode(\".... . .-.. .-.. --- / .-- --- .-. .-.. -..\")\r\n\r\nprint(decoded_result)\r\n```\r\n\r\n## Morse Encode\r\n\r\n```\r\nfrom MukeshAPI import api\r\nencoded_result =api.morse_encode(\"enter text here\")\r\nprint(encoded_result)\r\n```\r\n\r\n## Hastag Generator\r\n\r\n```\r\nfrom MukeshAPI import api\r\nkeyword = \"python\"\r\nhashtags = api.hashtag(keyword)\r\nprint(hashtags)\r\n```\r\n\r\n## Unsplash Image Search\r\n\r\n```\r\nfrom MukeshAPI import api\r\nresponse = api.unsplash(\"boy image\")\r\nprint(response)\r\n\r\n```\r\n\r\n## LeetCode Information\r\n\r\n```\r\nfrom MukeshAPI import api\r\n\r\nuser_data = api.leetcode(\"noob-mukesh\")\r\nprint(user_data)\r\n```\r\n\r\n## Pypi Info\r\n\r\n```\r\nfrom MukeshAPI import api\r\nuser_data = api.pypi(\"mukeshapi\")\r\nprint(user_data)\r\n```\r\n\r\n## Github Profile Information\r\n\r\n```\r\nfrom MukeshAPI import api\r\nsearch_results = api.github(\"noob-mukesh\")\r\nprint(search_results)\r\n```\r\n\r\n## Github Repo Search\r\n\r\n```\r\nfrom MukeshAPI import api\r\nsearch_results = api.repo(\"mukeshrobot\")\r\nprint(search_results)\r\n```\r\n\r\n## Random Meme\r\n\r\n```\r\nfrom MukeshAPI import api\r\nsearch_results = api.meme()\r\nprint(search_results)\r\n```\r\n\r\nPlease note that you need to install `MukeshAPI` using pip by running `pip install --upgrade MukeshAPI` in your terminal before executing these codes.\r\n\r\n## Note:\r\n\r\n<p> The above examples are for Python </p>\r\n\r\n## Copyright (c) 2024-25\r\n\r\n## Author : Noob-Mukesh \ud83d\udc68\u200d\ud83d\udcbb\r\n\r\n# Functions in the api module are as follows:\r\n\r\n1. <b>chatgpt(args) </b>- Executes chatgpt AI functionality\r\n2. <b>gemini(args) </b>- Executes Gemini AI functionality\r\n3. <b>blackbox(args) </b>- Executes blackbox AI functionality \ud83d\udd2e\r\n4. <b>hastag(args) </b>- Generates hashtags based on input\r\n5. <b>imdb(args) </b>- Fetches information from IMDB\r\n6. <b>morse_encode(args) </b>- Encodes text into Morse code\r\n7. <b>morse_decode(args) </b>- Decodes Morse code into text\r\n8. <b>leetcode(args) </b>- Extract leetcode information by username\r\n9. <b>password(args) </b>- Generates a random password\r\n10. <b>pypi(args) </b>- Search PyPI for packages\r\n11. <b>datagpt(args) </b>- Generates data using Datasets from datagpt ai\r\n12. <b>unsplash(args) </b>- search hd image from unsplash website\r\n13. <b>github(args) </b> - Extract github information by username\r\n14. <b>repo(args) </b> - Extract github repo by name\r\n15. <b> Meme</b> - Generate memes\r\n\r\n<b>\ud83d\udd17 Have fun coding with MukeshAPI! </b>\r\n\r\n<h3 align=\"center\">\r\n \u2500\u300c s\u1d1c\u1d29\u1d29\u1d0f\u0280\u1d1b \u300d\u2500\r\n</h3>\r\n\r\n<p align=\"center\">\r\n<a href=\"https://telegram.me/the_support_chat\"><img src=\"https://img.shields.io/badge/-Support%20Group-blue.svg?style=for-the-badge&logo=Telegram\"></a>\r\n</p>\r\n<p align=\"center\">\r\n<a href=\"https://telegram.me/mr_sukkun\"><img src=\"https://img.shields.io/badge/-Support%20Channel-blue.svg?style=for-the-badge&logo=telegram\"></a>\r\n</p>\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "python api hub | MukeshAPI",
"version": "0.6.5.6",
"project_urls": {
"Community": "https://t.me/mr_sukkun",
"Download": "https://github.com/Noob-mukesh/MukeshAPI/blob/main/README.md",
"Homepage": "https://github.com/noob-mukesh/MukeshAPI",
"Source": "https://github.com/noob-mukesh/MukeshAPI",
"Tracker": "https://github.com/noob-mukesh/MukeshAPI/issues"
},
"split_keywords": [
"python",
" mukeshapi",
" flask"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "1efdb0ec6c38486cd36a2a97dce59c058b9dbd21eefcba8d7e0e6c769e44b8a7",
"md5": "4dfa0950e8b5c84891b4539f0c6dc3ee",
"sha256": "989e24d7dd7e462a42e0f5255350e3da226ba103698ee2de55dd753dff8350b7"
},
"downloads": -1,
"filename": "MukeshAPI-0.6.5.6.tar.gz",
"has_sig": false,
"md5_digest": "4dfa0950e8b5c84891b4539f0c6dc3ee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "~=3.7",
"size": 1183529,
"upload_time": "2024-04-12T15:07:37",
"upload_time_iso_8601": "2024-04-12T15:07:37.221633Z",
"url": "https://files.pythonhosted.org/packages/1e/fd/b0ec6c38486cd36a2a97dce59c058b9dbd21eefcba8d7e0e6c769e44b8a7/MukeshAPI-0.6.5.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-12 15:07:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "noob-mukesh",
"github_project": "MukeshAPI",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "mukeshapi"
}