Metadata-Version: 2.1
Name: mc-downloader
Version: 0.0.2
Summary: A downloader tool for Minecraft servers from Mojang services.
Home-page: https://github.com/Couapy/mc-downloader
Author: Couapy
Author-email: contact@marchand.cloud
License: MIT
Description: # mc-downloader
        
        This is a python package design to download Minecraft servers files from Mojang servers.
        
        The downloader verify integrity from mojang servers after download.
        
        If the files have already been downloaded, they are rechecked, and if necessary they are re-downloaded.
        
        ## Installation
        
        You need to install the package from pypi repository.
        
        ```bash
        pip install mc-downloader
        ```
        
        ## Utilisation example
        
        ```python
        import os
        import mcdwld
        
        def main():
            """Download all servers."""
            downloads_directory = os.getcwd() + '/downloads/'
            versions = mcdwld.get_versions(mcdwld.MOJANG_MANIFEST_URL)
            mcdwld.download_versions(versions, downloads_directory)
        
        if __name__ == '__main__':
            main()
        ```
        
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
