Metadata-Version: 1.0
Name: i18nize
Version: 0.0.3
Summary: This is a simple Client that integrates with the localization service www.i18nize.com
Home-page: https://github.com/iktw/i18nize
Author: Mohammed Hammoud
Author-email: mohammed@iktw.se
License: MIT licence, see LICENCE.txt
Description: # i18nize
        This is a simple Client that integrates with the localization service www.i18nize.com
        
        ```pip install i18nize```
        
        
        ### Config parameters
        | Name        | Type | Required | What? |
        | ------------- |-------------|-------------|-------------|
        | PROJECT_ID | String | Yes | This should be the id of your project. |
        | DESTINATION_PATH | String | Yes | The path where you want your locale to get saved. |
        | LIVE | Boolean | Yes | Set to *true* if you want to download your live locales otherwise your dev locales will get downloaded. |
        
        
        ### Example usage
        ```python
        from i18nize.client import Client
        
        i18nize_config = {
            "PROJECT_ID": "86416ce4-fd52-4daf-9764-46f35b07af23",
            "LIVE": False,
            'DESTINATION_DIR': 'locales/',
        }
        
        client = Client(config=i18nize_config)
        client.get_all_locales()
        
        OUTPUT:
        >> Downloaded en to dist/locales/en.json (live: True)
        >> Downloaded sv to dist/locales/sv.json (live: True)
        ```
Platform: UNKNOWN
