Metadata-Version: 1.1
Name: poeditor
Version: 1.0.0
Summary: Client Interface for POEditor API (https://poeditor.com).
Home-page: https://github.com/sporteasy/python-poeditor
Author: Charles Vallantin Dulac
Author-email: charles.vdulac@gmail.com
License: MIT
Description: python-poeditor
        ===============
        
        
        Overview
        --------
        
        API Client Interface for [POEditor API](https://poeditor.com/api_reference/).
        
        [POEditor](https://poeditor.com/) is a quick and sleek web-based software
        localization platform, designed for happy translators and project managers.
        
        Usage
        -----
        
            >>> from poeditor import POEditorAPI
            >>> client = POEditorAPI(api_token='my_token')
            >>> projects = client.list_projects()
        
        Testing
        -------
        
        To run tests, you need a POEditor account. You can create a free trial account.
        
        All requests to the API must contain the parameter api_token. You can get this
        key from your POEditor account. You'll find it in
        [My Account > API Access.](https://poeditor.com/account/api)
        
            $ export POEDITOR_TOKEN=my_token
            $ nosetests
        
        **Note**: there is no API method to delete a project. So, you must delete test
        project by hand.
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Localization
