Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dreygur/subscene-api
Unofficial SebScene api using Python3
https://github.com/dreygur/subscene-api
Last synced: 3 months ago
JSON representation
Unofficial SebScene api using Python3
- Host: GitHub
- URL: https://github.com/dreygur/subscene-api
- Owner: dreygur
- License: mit
- Created: 2019-09-07T09:37:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-27T20:34:08.000Z (almost 4 years ago)
- Last Synced: 2024-07-11T15:59:34.229Z (4 months ago)
- Language: Python
- Homepage:
- Size: 28.9 MB
- Stars: 15
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Python wraper for SubScene(.)com
We are working on developing an api for Subscene(.)com. And making the code more managable.
Before using in production please be sure it works well.### Usage:
CLI:
```
Use: -n 'name' -y 'year' -l 'language' [Optional]
Usage:
-h or --help | Show this help message
-n or --name | Name of the movie/media
-y or --year | Year of release
-l or --lang | Language of desired subtitle
```Script:
```python3
from subscene2.SubScene import SubScenesub = SubScene() # Initialize the api Class
detail = {
'name': 'Hello',
'year': '2008'
}
link = sub.getDetail(detail) # Available Subtitles
print(link)
links = sub.getSubLink(link) # Link to Specific Subtitle
print(links)
down = sub.getDownLink(links[0]) # DownLoad link for Specific Language
print(down)
```Making with :heart: by [Rakibul Yeasin](https://github.com/dreygur) and [Abdullah Zayed](https://github.com/xaadu)