Metadata-Version: 2.1
Name: mmo_tools
Version: 0.1.0
Summary: Thư Viện Hỗ Trợ Viết Tool Facebook Nhanh
Home-page: UNKNOWN
Author: Lam Dinh
Author-email: ldl.contact.booking@gmail.com
License: UNKNOWN
Description: # mmo_tools
        ©dinhlam
        Đây là một thư viện Python chứa các hàm tiện ích để chuyển đổi dữ liệu và cấu hình proxy .
        
        ## func
        
        ### `convert_data(file)`
        - Chuyển đổi dữ liệu từ tệp đầu vào thành danh sách các đối tượng từ điển.
        - **input**: path file input (str).
        - **result**: dict (`[{},{}`]).
        
        #### example
        ```python
        import os , sys
        from lam_tools import convert_data
        
        sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
        # Giả sử file_path là đường dẫn tới tệp dữ liệu
        file_path = 'data/mmo_tools.txt'
        
        # Chuyển đổi dữ liệu từ tệp
        data = convert_data(file_path)
        
        print(data)  # [{'key': 'value'}, {'key2': 'value2'}]
        
        ```
        ## install
        ```bash
        pip install mmo_tools
        
        ```
        # contact
        -  Youtube : [ilam](https://www.youtube.com/@iam_dlam)
        - Facebbok : [Le Dinh Lam](https://www.facebook.com/IT.Admin.InF/)
        - Telegram : [Lam](https://t.me/im_dlam)
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
