Metadata-Version: 2.2
Name: chibi_api
Version: 0.1.0
Summary: libreria para hacer clientes de apis rest
Home-page: https://github.com/dem4ply/chibi_api
Author: dem4ply
Author-email: dem4ply@gmail.com
License: WTFPL
Keywords: chibi_api
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: chibi_hybrid>=1.2.0
Requires-Dist: chibi_requests>=1.3.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: summary

=========
chibi_api
=========


.. image:: https://img.shields.io/pypi/v/chibi_api.svg
        :target: https://pypi.python.org/pypi/chibi_api

.. image:: https://readthedocs.org/projects/chibi-api/badge/?version=latest
        :target: https://chibi-api.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




libreria para hacer clientes de apis rest

Ejemplos
--------

.. code-block:: python

	from chibi_requests import Response
	from chibi_api.chibi_api import Chibi_inner_api


	class Response_200( Response ):
		serializer = Catalog_serializer


	class Response_post( Response_200 ):
		pass


	class Response_put( Response_200 ):
		pass


	class Response_delete( Response_200 ):
		pass


	class Api_inner( Chibi_inner_api ):
		response = {
			'get': Response_200,
			'post': Response_post,
			'delete': Response_delete,
			'put': Response_put,
		}


* Free software: WTFPL
* Documentation: https://chibi-api.readthedocs.io.


Features
--------

* TODO


=======
History
=======

0.1.0 ( 2025-02-25 )
--------------------

* nueva funcion para contruir urls usando el valor absoluto

0.0.3 ( 2025-02-25 )
--------------------

* las clases de respueta se pueden cambiar de clase individualmente

0.0.2 ( 2024-11-05 )
--------------------

* correciones con dependencias

0.0.1 (2024-10-23)
------------------

* primer prototipo es mierda
