# youdl-jyan 🚀
## Installation
```
pip install youdl-jyan
```
Please note that you need to install `youdl-jyan` using pip by running `pip install --upgrade youdl-jyan` in your terminal before executing these codes.
## AI Image Generator
```
from youdl-jyan import api
generated_image= api.ai_image("boy image")
print(generated_image)
```
## Chatgpt AI 🤖
```
from youdl-jyan 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 youdl-jyan import api
# Execute Chatbot AI with the input text
print(api.chatbot("hii"))
```
## Blackbox AI 🤖
```
from youdl-jyan import api
# Execute blackbox AI with the input text
print(api.blackbox("write flask app code"))
```
## Password Generator 💡
```
from youdl-jyan 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 youdl-jyan import api
# Execute Gemini AI with the input text
print(api.gemini("write flask app code"))
```
## Datagpt AI 🤖
```
from youdl-jyan import api
# Execute datagpt AI with the input text
response = api.datagpt("what is data science")
print(response)
```
## BhagwatGita
```
from youdl-jyan import api
verse_data = api.bhagwatgita(1, 5)
print(verse_data)
```
## IMDB Search
```
from youdl-jyan import api
movie_data = api.imdb("The Godfather")
print(movie_data)
```
## Morse Decode
```
from youdl-jyan import api
decoded_result =api.morse_decode(".... . .-.. .-.. --- / .-- --- .-. .-.. -..")
print(decoded_result)
```
## Morse Encode
```
from youdl-jyan import api
encoded_result =api.morse_encode("enter text here")
print(encoded_result)
```
## Hastag Generator
```
from youdl-jyan import api
keyword = "python"
hashtags = api.hashtag(keyword)
print(hashtags)
```
## Unsplash Image Search
```
from youdl-jyan import api
response = api.unsplash("boy image")
print(response)
```
## LeetCode Information
```
from youdl-jyan import api
user_data = api.leetcode("TeamProBots")
print(user_data)
```
## Pypi Info
```
from youdl-jyan import api
user_data = api.pypi("youdl-jyan")
print(user_data)
```
## Github Profile Information
```
from youdl-jyan import api
search_results = api.github("TeamProBots")
print(search_results)
```
## Github Repo Search
```
from youdl-jyan import api
search_results = api.repo("lisa")
print(search_results)
```
## Random Meme
```
from youdl-jyan import api
search_results = api.meme()
print(search_results)
```
## Note:
<p> The above examples are for Python </p>
## Copyright (c) 2024-25
## Author : TeamProBots 👨💻
# 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
16. <b> weather(args)</b> - Fetches weather information
17. <b> truth()</b> -random truth string
18. <b>dare()</b> -random dare string
19. <b> ai_image(args)</b> - Generate image using AI
20. <b> upload_image(image_url,image_file) </b> - upload image from img url or img file.
<b>🔗 Have fun coding with youdl-jyan! </b>
<h3 align="center">
─「 sᴜᴩᴩᴏʀᴛ 」─
</h3>
<p align="center">
<a href="https://telegram.me/ProBotGc"><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/ZeoXpro"><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/TeamProBots/youdl-jyan",
"name": "youdl-jyan",
"maintainer": null,
"docs_url": null,
"requires_python": "~=3.7",
"maintainer_email": null,
"keywords": "python, youdl-jyan, flask",
"author": "Yasir | TeamProBots",
"author_email": "yasircpr@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/79/bf/59085d5cd790f8494c87c966a348b46d4e458fb3bdbd8019c7ce9d6cb0ae/youdl-jyan-0.6.5.7.tar.gz",
"platform": null,
"description": "# youdl-jyan \ud83d\ude80\r\n\r\n## Installation\r\n\r\n```\r\npip install youdl-jyan\r\n```\r\n\r\nPlease note that you need to install `youdl-jyan` using pip by running `pip install --upgrade youdl-jyan` in your terminal before executing these codes.\r\n\r\n## AI Image Generator\r\n\r\n```\r\nfrom youdl-jyan import api\r\ngenerated_image= api.ai_image(\"boy image\")\r\nprint(generated_image)\r\n```\r\n\r\n## Chatgpt AI \ud83e\udd16\r\n\r\n```\r\nfrom youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan 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 youdl-jyan import api\r\n\r\nuser_data = api.leetcode(\"TeamProBots\")\r\nprint(user_data)\r\n```\r\n\r\n## Pypi Info\r\n\r\n```\r\nfrom youdl-jyan import api\r\nuser_data = api.pypi(\"youdl-jyan\")\r\nprint(user_data)\r\n```\r\n\r\n## Github Profile Information\r\n\r\n```\r\nfrom youdl-jyan import api\r\nsearch_results = api.github(\"TeamProBots\")\r\nprint(search_results)\r\n```\r\n\r\n## Github Repo Search\r\n\r\n```\r\nfrom youdl-jyan import api\r\nsearch_results = api.repo(\"lisa\")\r\nprint(search_results)\r\n```\r\n\r\n## Random Meme\r\n\r\n```\r\nfrom youdl-jyan import api\r\nsearch_results = api.meme()\r\nprint(search_results)\r\n```\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 : TeamProBots \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\n16. <b> weather(args)</b> - Fetches weather information\r\n17. <b> truth()</b> -random truth string\r\n18. <b>dare()</b> -random dare string\r\n19. <b> ai_image(args)</b> - Generate image using AI\r\n20. <b> upload_image(image_url,image_file) </b> - upload image from img url or img file.\r\n\r\n<b>\ud83d\udd17 Have fun coding with youdl-jyan! </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/ProBotGc\"><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/ZeoXpro\"><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 | youdl-jyan",
"version": "0.6.5.7",
"project_urls": {
"Community": "https://t.me/ZeoXpro",
"Download": "https://github.com/TeamProBots/youdl-jyan/blob/main/README.md",
"Homepage": "https://github.com/TeamProBots/youdl-jyan",
"Source": "https://github.com/TeamProBots/youdl-jyan",
"Tracker": "https://github.com/TeamProBots/youdl-jyan/issues"
},
"split_keywords": [
"python",
" youdl-jyan",
" flask"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "20d517797745a4a42f12fa4093ab750428ad77931d807dc32d0a61f0983100e5",
"md5": "614e1a4bd8f79d22d9a872be9b098924",
"sha256": "e4488625f6d8e01289f6df27d89de2dd10dbca978f6528f61658ee63f66c2af8"
},
"downloads": -1,
"filename": "youdl_jyan-0.6.5.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "614e1a4bd8f79d22d9a872be9b098924",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "~=3.7",
"size": 1197608,
"upload_time": "2025-07-12T09:54:57",
"upload_time_iso_8601": "2025-07-12T09:54:57.062171Z",
"url": "https://files.pythonhosted.org/packages/20/d5/17797745a4a42f12fa4093ab750428ad77931d807dc32d0a61f0983100e5/youdl_jyan-0.6.5.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79bf59085d5cd790f8494c87c966a348b46d4e458fb3bdbd8019c7ce9d6cb0ae",
"md5": "36c1f36cd03f882c8aac4245db80a9c1",
"sha256": "916bf6c8c91183aadbf3367b8fc2564d30fef8196de2b73af620642077c42349"
},
"downloads": -1,
"filename": "youdl-jyan-0.6.5.7.tar.gz",
"has_sig": false,
"md5_digest": "36c1f36cd03f882c8aac4245db80a9c1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "~=3.7",
"size": 1185512,
"upload_time": "2025-07-12T09:55:00",
"upload_time_iso_8601": "2025-07-12T09:55:00.138612Z",
"url": "https://files.pythonhosted.org/packages/79/bf/59085d5cd790f8494c87c966a348b46d4e458fb3bdbd8019c7ce9d6cb0ae/youdl-jyan-0.6.5.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-12 09:55:00",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "TeamProBots",
"github_project": "youdl-jyan",
"github_not_found": true,
"lcname": "youdl-jyan"
}