Metadata-Version: 2.1
Name: mmo_tools
Version: 0.1.4
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
        Đâ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 .
        
        ## service
        - **convert_data**
        - **headers**
        - **checklive**
        ## funciton
        
        ### `convert_data`
        - 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 (`[{},{}`]).
        ### `headers`
        - return dict facebook headers 
        
        ### `checklive`
        - return status account facebook uid
        - **input** : user-id facebook account
        - **result** : + status live : 1 
                       + status die  : 0
        
        ## example
        ```python
        import os , sys
        from mmo_tools import *
        # Giả sử file_path là đường dẫn tới tệp dữ liệu
        file_path = 'data/mmo_tools.txt'
        def func1():
            # Chuyển đổi dữ liệu từ tệp
            data = convert_data(file_path)
        
            print(data)  # [{'key': 'value'}, {'key2': 'value2'}]
        
        def func2():
            headers = headers()
            print(headers) # {'user-agent':'my user-agent','accept':'*/*'...}
        
        def funcc():
            status = checlive(506356883)
            print(status) # result : 0 
        
        ```
        ## install
        ```bash
        pip install mmo_tools
        
        ```
        ## update new version
        ``` update
        pip install --upgrade 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
