Metadata-Version: 2.1
Name: TkLang
Version: 0.0.2
Summary: For reading & writing .tk files
Home-page: https://www.beyonce.com
Author: hunterg
Author-email: redissuslolol@gmail.com
License: UNKNOWN
Description: 
        # TkLang
        ##### *Allows one to parse .tk files*
        
        ### Instillation
            python -m pip install TkLang
        
        ### Usage
            import tklang as tkl
            content = tkl.load("your_tk_file.tk")
        
        ## Example(s)
        
        ### _TkLang Code_
            <src>
                <button id="LLJ" height="1" width="20">LLJ</button>
                <button id="LLJW">LLJW</button>
            </src>
        > Note that the <src\> tag is arbitrary and may be replaced with what ever name you; however, it is required.
        ### _Python Code_
            import tklang as tkl
            import tkinter as tk
            t = tkl.load("test.tk")
        
            root = t['master']
            b1 = t['LLJ']
        
            b1.grid(row=0, column=0)
        
            root.mainloop()
        
        
        
        ### Features
            load(src: file_name) -> dict
        
        #
        
        ### Changelog
        
        #### 0.0.1 ~ ~ 11/5/2020 10:01
        Initial Unstable Release
        
        #### 0.0.2 ~ ~ 11/5/2020 10:03
        Added README.md File
        
        #### 1.0.0 ~ ~ [PLANNED]
        Initial Stable Release
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
