Name | missAV-api JSON |
Version |
1.4.4
JSON |
| download |
home_page | None |
Summary | A Python API for the Porn Site missav.ws |
upload_time | 2025-08-06 01:31:50 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.6 |
license | LGPLv3 |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<h1 align="center">missAV API</h1>
<div align="center">
<a href="https://pepy.tech/project/missAV_api"><img src="https://static.pepy.tech/badge/missAV_api" alt="Downloads"></a>
<a href="https://pepy.tech/project/missAV_api-async"><img src="https://static.pepy.tech/badge/missAV_api-async" alt="Downloads"></a> <span style="font-size: 20px;">(Async)</span>
<a href="https://github.com/EchterAlsFake/missAV_api/workflows/CodeQL/badge.svg" alt="CodeQL Analysis"></a>
<a href="https://github.com/EchterAlsFake/missAV_api/actions/workflows/sync-tests.yml/badge.svg"><img src="https://github.com/EchterAlsFake/missAV_api/actions/workflows/sync-tests.yml/badge.svg" alt="Sync API Tests"/></a>
<a href="https://github.com/EchterAlsFake/missAV_api/actions/workflows/async-tests.yml/badge.svg"><img src="https://github.com/EchterAlsFake/missAV_api/actions/workflows/async-tests.yml/badge.svg" alt="Async API Tests"></a>
</div>
# Description
missAV API is an API for missav.com. It allows you to download videos using HLS streaming
> [!CAUTION]
> The missav.com website has been taken down by "legal procedures." The content uploaded on similar sites such as missav.ws is probably copyright protected.
> This API is intended to allow offline usage of the content. You could also just extract the m3u8 by yourself, but it's just more time-consuming.
### I EXPLICITLY FORBID YOU TO REDISTRIBUTE CONTENT DOWNLOADED THROUGH THIS API
See: `https://avdaisukicp.com/kaizoku/index_en.html`
# Disclaimer
> [!IMPORTANT]
> missAV API is in violation to the ToS of missav.com!
> If you are the website owner of missav.com, contact me at my E-Mail, and I'll take this repository immediately offline.
> EchterAlsFake@proton.me
> [!NOTE]
> This project was developed for my **[Porn Fetch](https://github.com/EchterAlsFake/Porn_Fetch)** project to support video downloading
> from missav. Therefore, this API only has very basic and limited functionality. If you want more features, I can extend this
> API, so don't hesitate to open an issue about it :)
# Quickstart
### Have a look at the [Documentation](https://github.com/EchterAlsFake/API_Docs/blob/master/Porn_APIs/missAV.md) for more details
- Install the library with `pip install missAV_api`
```python
from missav_api import Client
# Initialize a Client object
client = Client()
# Fetch a video
video_object = client.get_video("<insert_url_here>")
# Information from Video objects
print(video_object.title)
# Download the video
video_object.download(downloader="threaded", quality="best", path="your_output_path + filename")
# SEE DOCUMENTATION FOR MORE
```
# Changelog
See [Changelog](https://github.com/EchterAlsFake/missAV_api/blob/master/README/Changelog.md) for more details.
# Contribution
Do you see any issues or having some feature requests? Simply open an Issue or talk
in the discussions.
Pull requests are also welcome.
# License
Licensed under the [LGPLv3](https://www.gnu.org/licenses/lgpl-3.0.en.html) License
<br>Copyright (C) 2024-2025 Johannes Habel
Raw data
{
"_id": null,
"home_page": null,
"name": "missAV-api",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Johannes Habel <EchterAlsFake@proton.me>",
"download_url": "https://files.pythonhosted.org/packages/ca/27/0d38c78db3d6b9e73abb42f5dc4edea74d1cab73b0e0f083b585fe1e696a/missav_api-1.4.4.tar.gz",
"platform": null,
"description": "<h1 align=\"center\">missAV API</h1> \n\n<div align=\"center\">\n <a href=\"https://pepy.tech/project/missAV_api\"><img src=\"https://static.pepy.tech/badge/missAV_api\" alt=\"Downloads\"></a>\n <a href=\"https://pepy.tech/project/missAV_api-async\"><img src=\"https://static.pepy.tech/badge/missAV_api-async\" alt=\"Downloads\"></a> <span style=\"font-size: 20px;\">(Async)</span>\n <a href=\"https://github.com/EchterAlsFake/missAV_api/workflows/CodeQL/badge.svg\" alt=\"CodeQL Analysis\"></a>\n <a href=\"https://github.com/EchterAlsFake/missAV_api/actions/workflows/sync-tests.yml/badge.svg\"><img src=\"https://github.com/EchterAlsFake/missAV_api/actions/workflows/sync-tests.yml/badge.svg\" alt=\"Sync API Tests\"/></a>\n <a href=\"https://github.com/EchterAlsFake/missAV_api/actions/workflows/async-tests.yml/badge.svg\"><img src=\"https://github.com/EchterAlsFake/missAV_api/actions/workflows/async-tests.yml/badge.svg\" alt=\"Async API Tests\"></a>\n</div>\n\n# Description\nmissAV API is an API for missav.com. It allows you to download videos using HLS streaming\n\n> [!CAUTION]\n> The missav.com website has been taken down by \"legal procedures.\" The content uploaded on similar sites such as missav.ws is probably copyright protected.\n> This API is intended to allow offline usage of the content. You could also just extract the m3u8 by yourself, but it's just more time-consuming.\n\n### I EXPLICITLY FORBID YOU TO REDISTRIBUTE CONTENT DOWNLOADED THROUGH THIS API\nSee: `https://avdaisukicp.com/kaizoku/index_en.html`\n\n# Disclaimer\n> [!IMPORTANT] \n> missAV API is in violation to the ToS of missav.com!\n> If you are the website owner of missav.com, contact me at my E-Mail, and I'll take this repository immediately offline.\n> EchterAlsFake@proton.me\n\n> [!NOTE]\n> This project was developed for my **[Porn Fetch](https://github.com/EchterAlsFake/Porn_Fetch)** project to support video downloading\n> from missav. Therefore, this API only has very basic and limited functionality. If you want more features, I can extend this\n> API, so don't hesitate to open an issue about it :)\n# Quickstart\n\n### Have a look at the [Documentation](https://github.com/EchterAlsFake/API_Docs/blob/master/Porn_APIs/missAV.md) for more details\n\n- Install the library with `pip install missAV_api`\n\n\n```python\nfrom missav_api import Client\n# Initialize a Client object\nclient = Client()\n\n# Fetch a video\nvideo_object = client.get_video(\"<insert_url_here>\")\n\n# Information from Video objects\nprint(video_object.title)\n# Download the video\n\nvideo_object.download(downloader=\"threaded\", quality=\"best\", path=\"your_output_path + filename\")\n\n# SEE DOCUMENTATION FOR MORE\n```\n\n# Changelog\nSee [Changelog](https://github.com/EchterAlsFake/missAV_api/blob/master/README/Changelog.md) for more details.\n\n# Contribution\nDo you see any issues or having some feature requests? Simply open an Issue or talk\nin the discussions.\n\nPull requests are also welcome.\n\n# License\nLicensed under the [LGPLv3](https://www.gnu.org/licenses/lgpl-3.0.en.html) License\n<br>Copyright (C) 2024-2025 Johannes Habel\n",
"bugtrack_url": null,
"license": "LGPLv3",
"summary": "A Python API for the Porn Site missav.ws",
"version": "1.4.4",
"project_urls": {
"Homepage": "https://github.com/EchterAlsFake/missAV_api"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "4699c06406466e21a9dc39567be216827898d4f04c23272cdd2d71f01ce82a97",
"md5": "c103ed392fc48ee30e496fce24b2ebd4",
"sha256": "56e3bb13c2ed9b91cf80913f0e70804167cb02cb9bc23c76a7a5c43411da3940"
},
"downloads": -1,
"filename": "missav_api-1.4.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c103ed392fc48ee30e496fce24b2ebd4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 8101,
"upload_time": "2025-08-06T01:31:49",
"upload_time_iso_8601": "2025-08-06T01:31:49.210773Z",
"url": "https://files.pythonhosted.org/packages/46/99/c06406466e21a9dc39567be216827898d4f04c23272cdd2d71f01ce82a97/missav_api-1.4.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca270d38c78db3d6b9e73abb42f5dc4edea74d1cab73b0e0f083b585fe1e696a",
"md5": "84fceb9037ce807e6ff65a1fed4bbcf7",
"sha256": "bdd054035b56bebd0c1e2cde2ea17db2396d9e42764cedd7799a232ef2dd70d0"
},
"downloads": -1,
"filename": "missav_api-1.4.4.tar.gz",
"has_sig": false,
"md5_digest": "84fceb9037ce807e6ff65a1fed4bbcf7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 7298,
"upload_time": "2025-08-06T01:31:50",
"upload_time_iso_8601": "2025-08-06T01:31:50.137293Z",
"url": "https://files.pythonhosted.org/packages/ca/27/0d38c78db3d6b9e73abb42f5dc4edea74d1cab73b0e0f083b585fe1e696a/missav_api-1.4.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-06 01:31:50",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "EchterAlsFake",
"github_project": "missAV_api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "missav-api"
}