Metadata-Version: 1.1
Name: libredte
Version: 3.1.1
Summary: SDK para conectar a LibreDTE
Home-page: https://github.com/LibreDTE/libredte-sdk-python
Author: Esteban De La Fuente Rubio, DeLaF
Author-email: esteban@sasco.cl
License: AGPL
Description: 
        SDK de LibreDTE para Python
        ===========================
        
        .. image:: https://badge.fury.io/py/libredte.svg
            :target: https://pypi.python.org/pypi/libredte
        .. image:: https://img.shields.io/pypi/status/libredte.svg
            :target: https://pypi.python.org/pypi/libredte
        .. image:: https://img.shields.io/pypi/pyversions/libredte.svg
            :target: https://pypi.python.org/pypi/libredte
        .. .. image:: https://img.shields.io/pypi/l/libredte.svg
            :target: https://raw.githubusercontent.com/LibreDTE/libredte-sdk-python/master/COPYING
        
        SDK para realizar la integración con los servicios web de LibreDTE desde Python.
        
        Este código está liberado bajo licencia `LGPL <http://www.gnu.org/licenses/lgpl-3.0.en.html>`_.
        O sea, puede ser utilizado tanto en software libre como en software privativo.
        
        Instalación
        -----------
        
        Instalar desde PIP con:
        
        .. code:: shell
        
            $ sudo pip install libredte
        
        Si estás en Microsoft Windows, debes instalar además
        `pypiwin32 <https://pypi.python.org/pypi/pypiwin32>`_.
        
        Actualización
        -------------
        
        Actualizar desde PIP con:
        
        .. code:: shell
        
            $ sudo pip install libredte --upgrade
        
        LXML en Microsoft Windows
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        En algunas versiones de Microsoft Windows (al menos 8 y 10) la instalación con
        PIP falla debido a que no es posible instalar LXML. Para solucionar esto y poder
        instalar el SDK es necesario instalar LXML de manera manual. Se puede descargar
        `una versión binaria de LXML <http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml>`_
        según la versión de Python que estemos usando.
        
        Supongamos que tenemos Python 3.5 de 32 bits (independientemente que el sistema
        operativo sea de 64 bits). Debemos descargar el siguiente archivo
        `lxml‑3.6.4‑cp35‑cp35m‑win32.whl <http://www.lfd.uci.edu/~gohlke/pythonlibs/g7ckv9dk/lxml-3.6.4-cp35-cp35m-win32.whl>`_
        y procedemos a instalar con
        
        .. code:: shell
        
            > pip.exe install lxml-3.6.4-cp35-cp35m-win32.whl
        
        Si usas otra versión de Python descarga la LXML que corresponda.
        
        Cuando tengas instalada la LXML procede a instalar el SDK de LibreDTE con PIP.
        
        Desarrolladores (ayuda mental)
        ------------------------------
        
        Modificar el SDK:
        
        .. code:: shell
        
            $ git clone https://github.com/LibreDTE/libredte-sdk-python
            $ cd libredte-sdk-python
            $ sudo pip install -e .
        
        Crear el paquete que se desea distribuir:
        
        .. code:: shell
        
            $ sudo python setup.py sdist
        
        Publicar el paquete a distribuir:
        
        .. code:: shell
        
            $ twine upload dist/*
        
        Más información en `<http://python-packaging-user-guide.readthedocs.io/en/latest/distributing>`_
        
Keywords: facturación electrónica
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
