PragyanAPI


NamePragyanAPI JSON
Version 0.6.5.6 PyPI version JSON
download
home_pagehttps://github.com/pragyancoder/PragyanAPI
Summarypython api hub | PragyanAPI
upload_time2024-05-13 06:33:40
maintainerNone
docs_urlNone
authorCoderPragyan | CoderPragyan
requires_python~=3.7
licenseMIT
keywords python pragyanapi flask
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PragyanAPI 🚀

## Chatgpt AI 🤖

```
from PragyanAPI 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 PragyanAPI import api

# Execute Chatbot AI with the input text

print(api.chatbot("hii"))
```

## Blackbox AI 🤖

```
from PragyanAPI import api

# Execute blackbox AI with the input text

print(api.blackbox("write flask app code"))
```

## Password Generator 💡

```
from PragyanAPI 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 PragyanAPI import api

# Execute Gemini AI with the input text

print(api.gemini("write flask app code"))
```

## Datagpt AI 🤖

```
from PragyanAPI import api

# Execute datagpt AI with the input text
response = api.datagpt("what is data science")
print(response)
```

## BhagwatGita

```
from PragyanAPI import api
verse_data = api.bhagwatgita(1, 5)
print(verse_data)
```

## IMDB Search

```
from PragyanAPI import api


movie_data = api.imdb("The Godfather")

print(movie_data)
```

## Morse Decode

```
from PragyanAPI import api

decoded_result =api.morse_decode(".... . .-.. .-.. --- / .-- --- .-. .-.. -..")

print(decoded_result)
```

## Morse Encode

```
from PragyanAPI import api
encoded_result =api.morse_encode("enter text here")
print(encoded_result)
```

## Hastag Generator

```
from PragyanAPI import api
keyword = "python"
hashtags = api.hashtag(keyword)
print(hashtags)
```

## Unsplash Image Search

```
from PragyanAPI import api
response = api.unsplash("boy image")
print(response)

```

## LeetCode Information

```
from PragyanAPI import api

user_data = api.leetcode("PragyanCoder")
print(user_data)
```

## Pypi Info

```
from PragyanAPI import api
user_data = api.pypi("PragyanAPI")
print(user_data)
```

## Github Profile Information

```
from PragyanAPI import api
search_results = api.github("PragyanCoder")
print(search_results)
```

## Github Repo Search

```
from PragyanAPI import api
search_results = api.repo("AnnayanXMusic")
print(search_results)
```

## Random Meme

```
from PragyanAPI import api
search_results = api.meme()
print(search_results)
```

Please note that you need to install `PragyanAPI` using pip by running `pip install --upgrade PragyanAPI` in your terminal before executing these codes.

## Note:

<p> The above examples are for Python </p>

## Copyright (c) 2024-25

## Author : Noob-Pragyan 👨‍💻

# 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 PragyanAPI </b>

<h3 align="center">
    ─「 sᴜᴩᴩᴏʀᴛ 」─
</h3>

<p align="center">
<a href="https://telegram.me/PragyanCoderchat"><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/pragyancoder"><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/pragyancoder/PragyanAPI",
    "name": "PragyanAPI",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": null,
    "keywords": "python, PragyanAPI, flask",
    "author": "CoderPragyan | CoderPragyan",
    "author_email": "coderpragyan@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/7a/72/a09222657eef06c439dd4941d8a0aee8f438a1a7893a8791372d88741f19/pragyanapi-0.6.5.6.tar.gz",
    "platform": null,
    "description": "# PragyanAPI \ud83d\ude80\n\n## Chatgpt AI \ud83e\udd16\n\n```\nfrom PragyanAPI import api\n\n# Execute Chatgpt AI with the input text\n\nresponse = api.chatgpt(\"Write simple basic html website\")\n\nprint(response)\n\n# Execute Chatgpt AI with the input text with modes features\n\n# available modes are \"girlfriend\",\"anime\",\"animev2\",\"flirt\",\"santa\",\"elonmusk\"\n\nresponse = api.chatgpt(\"hi babe\",\"girlfriend\")\n\nprint(response)\n\n```\n\n## Chatbot AI \ud83e\udd16\n\n```\nfrom PragyanAPI import api\n\n# Execute Chatbot AI with the input text\n\nprint(api.chatbot(\"hii\"))\n```\n\n## Blackbox AI \ud83e\udd16\n\n```\nfrom PragyanAPI import api\n\n# Execute blackbox AI with the input text\n\nprint(api.blackbox(\"write flask app code\"))\n```\n\n## Password Generator \ud83d\udca1\n\n```\nfrom PragyanAPI import api\n\n# Generate a default length password\nprint(api.password())\n\n# Generate a password of specific length (e.g., 10)\nprint(api.password(10))\n```\n\n## Gemini AI \ud83e\udd16\n\n```\nfrom PragyanAPI import api\n\n# Execute Gemini AI with the input text\n\nprint(api.gemini(\"write flask app code\"))\n```\n\n## Datagpt AI \ud83e\udd16\n\n```\nfrom PragyanAPI import api\n\n# Execute datagpt AI with the input text\nresponse = api.datagpt(\"what is data science\")\nprint(response)\n```\n\n## BhagwatGita\n\n```\nfrom PragyanAPI import api\nverse_data = api.bhagwatgita(1, 5)\nprint(verse_data)\n```\n\n## IMDB Search\n\n```\nfrom PragyanAPI import api\n\n\nmovie_data = api.imdb(\"The Godfather\")\n\nprint(movie_data)\n```\n\n## Morse Decode\n\n```\nfrom PragyanAPI import api\n\ndecoded_result =api.morse_decode(\".... . .-.. .-.. --- / .-- --- .-. .-.. -..\")\n\nprint(decoded_result)\n```\n\n## Morse Encode\n\n```\nfrom PragyanAPI import api\nencoded_result =api.morse_encode(\"enter text here\")\nprint(encoded_result)\n```\n\n## Hastag Generator\n\n```\nfrom PragyanAPI import api\nkeyword = \"python\"\nhashtags = api.hashtag(keyword)\nprint(hashtags)\n```\n\n## Unsplash Image Search\n\n```\nfrom PragyanAPI import api\nresponse = api.unsplash(\"boy image\")\nprint(response)\n\n```\n\n## LeetCode Information\n\n```\nfrom PragyanAPI import api\n\nuser_data = api.leetcode(\"PragyanCoder\")\nprint(user_data)\n```\n\n## Pypi Info\n\n```\nfrom PragyanAPI import api\nuser_data = api.pypi(\"PragyanAPI\")\nprint(user_data)\n```\n\n## Github Profile Information\n\n```\nfrom PragyanAPI import api\nsearch_results = api.github(\"PragyanCoder\")\nprint(search_results)\n```\n\n## Github Repo Search\n\n```\nfrom PragyanAPI import api\nsearch_results = api.repo(\"AnnayanXMusic\")\nprint(search_results)\n```\n\n## Random Meme\n\n```\nfrom PragyanAPI import api\nsearch_results = api.meme()\nprint(search_results)\n```\n\nPlease note that you need to install `PragyanAPI` using pip by running `pip install --upgrade PragyanAPI` in your terminal before executing these codes.\n\n## Note:\n\n<p> The above examples are for Python </p>\n\n## Copyright (c) 2024-25\n\n## Author : Noob-Pragyan \ud83d\udc68\u200d\ud83d\udcbb\n\n# Functions in the api module are as follows:\n\n1. <b>chatgpt(args) </b>- Executes chatgpt AI functionality\n2. <b>gemini(args) </b>- Executes Gemini AI functionality\n3. <b>blackbox(args) </b>- Executes blackbox AI functionality \ud83d\udd2e\n4. <b>hastag(args) </b>- Generates hashtags based on input\n5. <b>imdb(args) </b>- Fetches information from IMDB\n6. <b>morse_encode(args) </b>- Encodes text into Morse code\n7. <b>morse_decode(args) </b>- Decodes Morse code into text\n8. <b>leetcode(args) </b>- Extract leetcode information by username\n9. <b>password(args) </b>- Generates a random password\n10. <b>pypi(args) </b>- Search PyPI for packages\n11. <b>datagpt(args) </b>- Generates data using Datasets from datagpt ai\n12. <b>unsplash(args) </b>- search hd image from unsplash website\n13. <b>github(args) </b> - Extract github information by username\n14. <b>repo(args) </b> - Extract github repo by name\n15. <b> Meme</b> - Generate memes\n\n<b>\ud83d\udd17 Have fun coding with PragyanAPI </b>\n\n<h3 align=\"center\">\n    \u2500\u300c s\u1d1c\u1d29\u1d29\u1d0f\u0280\u1d1b \u300d\u2500\n</h3>\n\n<p align=\"center\">\n<a href=\"https://telegram.me/PragyanCoderchat\"><img src=\"https://img.shields.io/badge/-Support%20Group-blue.svg?style=for-the-badge&logo=Telegram\"></a>\n</p>\n<p align=\"center\">\n<a href=\"https://telegram.me/pragyancoder\"><img src=\"https://img.shields.io/badge/-Support%20Channel-blue.svg?style=for-the-badge&logo=telegram\"></a>\n</p>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "python api hub | PragyanAPI",
    "version": "0.6.5.6",
    "project_urls": {
        "Community": "https://t.me/pragyancoder",
        "Download": "https://github.com/pragyancoder/PragyanAPI/blob/main/README.md",
        "Homepage": "https://github.com/pragyancoder/PragyanAPI",
        "Source": "https://github.com/pragyancoder/PragyanAPI",
        "Tracker": "https://github.com/PRAGYANCODER/PragyanAPI/issues"
    },
    "split_keywords": [
        "python",
        " pragyanapi",
        " flask"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a72a09222657eef06c439dd4941d8a0aee8f438a1a7893a8791372d88741f19",
                "md5": "46dbb022dd9fad13bac35495e7b647b4",
                "sha256": "f8669c954ffe0f8baa78f4288bd44ff9f20976f2dc2671ae47f9c10c8fd578cc"
            },
            "downloads": -1,
            "filename": "pragyanapi-0.6.5.6.tar.gz",
            "has_sig": false,
            "md5_digest": "46dbb022dd9fad13bac35495e7b647b4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.7",
            "size": 1181850,
            "upload_time": "2024-05-13T06:33:40",
            "upload_time_iso_8601": "2024-05-13T06:33:40.928265Z",
            "url": "https://files.pythonhosted.org/packages/7a/72/a09222657eef06c439dd4941d8a0aee8f438a1a7893a8791372d88741f19/pragyanapi-0.6.5.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-13 06:33:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pragyancoder",
    "github_project": "PragyanAPI",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pragyanapi"
}
        
Elapsed time: 0.26992s