https://github.com/gakkiyomi/missav-api
A third-party RESTful API for the "MissAV" website, designed to scrape and structure website data.
https://github.com/gakkiyomi/missav-api
api fastapi missav missav-api python spider
Last synced: 2 months ago
JSON representation
A third-party RESTful API for the "MissAV" website, designed to scrape and structure website data.
- Host: GitHub
- URL: https://github.com/gakkiyomi/missav-api
- Owner: gakkiyomi
- License: mit
- Created: 2025-02-18T12:34:59.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-18T13:16:21.000Z (over 1 year ago)
- Last Synced: 2025-02-18T13:41:17.796Z (over 1 year ago)
- Topics: api, fastapi, missav, missav-api, python, spider
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⭐️ misscore
A third-party RESTful API for the "MissAV" website, designed to scrape and structure website data.
## ⚙️ Quick Start
To install misscore from the Python Package Index (PyPI) run:
```
pip install -r requirements.txt
```
```
uvicorn api.main:misscore --reload
```
## 📖 API docs
```
http://localhost:8000/docs
```
## 📖 Localization
Localized responses can be achieved by switching the `Accept-Language` in the request header.
```curl
curl -X 'GET' \
'http://localhost:8000/api/v1/movie/uncensored/fc2?page=1' \
-H 'Accept-Language: zh-CN' \
-H 'accept: application/json' \
-H 'auth-key: key from login'
```