Metadata-Version: 2.1
Name: Languages
Version: 1.0.0
Summary: Programming language decoder. Now You can Decode HyperTextMarkupLanguage (html) using this package.
Home-page: https://github.com/aswanthabam/Language
Author: Aswanth Vc
Author-email: no-mail@mail.com
License: UNKNOWN
Description: # Language
        
        This is a simple html decoder. you can decode html and view through the html page. More simple than Beautiful Soup .
        first import HyperTextMarkup from language pip
        
        >>from Language import HyperTextMarkup
        
        create an object and give the html to the object
        
        >>MyObj = HyperTextMarkup(html)
        
        now get a tag. This will give a list of all tags you entered.
        
        >>MyObj.get("a")
        ["<a href="https://youtube.com/c/abamtech">",<a href="https://techabam.blogspot.com">","<a href="https://techabam.000webhostapp.com">"]
        
        Now get the contents by the contents. This will give you the contents in the a order
        
        >>MyObj.contents
        ["abam youtube channel","abam blog","abam site"]
        
        more informations will come in our site, blog or youtube channel please visit..
        
        Site: https://techabam.000webhostapp.com
        Youtube Channe: https://youtube.com/c/abamtech
        Blog: https://techabam.blogspot.com
        
Keywords: html,hypertextmarkup decoder,programming language decoder,languages decoder,programming language decoder
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
