Metadata-Version: 2.1
Name: subscene2
Version: 1.0.1
Summary: A Python wrapper for SubScene
Home-page: https://github.com/dreygur/subscene-api
Author: Rakibul Yeasin
Author-email: ryeasin03@gmail.com
License: UNKNOWN
Description: # This is development brach of Subtitle-Finder
        
        We are working on developing an api for Subscene(dot)com. And making the code more managable.
        Don't use this branch for production use. It will always break.
        
        Usage:
        ```python3
        from subscene.SubScene import SubScene
        
        sub = 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)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
