Metadata-Version: 1.1
Name: ahura
Version: 0.1.8
Summary: A God Like Serializer For God Like Developers.
Home-page: https://github.com/sorkhemiri/ahura
Author: Mahdi Sorkhemiri
Author-email: sorkhemiri@gmail.com
License: MIT
Download-URL: https://github.com/sorkhemiri/ahura/archive/0.1.tar.gz
Description: Ahura
        =======
        
        **a God like Serializer for God like Developers.**
         | Ahura is an Automatic easy to use Django serializer.it coms With diverse features designed to fit in all different occasions. Feel free to contribute in case of detecting issues or if any new idea came to your mind.
        
        
        Prerequisites
        -------------
        
        Ahura is a Django Model Seriliazer for now so you must have django installed and use Django ORM. 
        
        Installing
        ----------
        
        For using Ahura you just need to install it using pip.
        
        .. code-block:: console
            
            $pip install ahura
        
        or clone the project.then import the Seriliazer and use it like the example 
        below.
        
        
        .. code-block:: python
        
            >>> from ahura import Seriliazer
            >>> from myapp.models import MyModel
            >>> my_objects = MyModel.objects.all()
            >>> s = Seriliazer(exclude=["password"], date_format="%Y-%m-%d")
            >>> data = s.serialize(my_objects)
        
        
        Getting Started
        ---------------
        using ahura is easy as you can see above while it gives you many different options
        to modify your model's json with. we are going to go through some of these options below.
        
        
        
        Contributing
        ------------
        
        Please read `CONTRIBUTING.md`_ for details on our code of conduct, and the process for submitting pull requests to us.
        
        Authors
        -------
        * **Mahdi Sorkhemiri**  - *Initial work* - `Sorkhemiri`_
        * **Mohammad Rabetian**  - *Initial work* - `Rabetian`_
        
        See also the list of `contributors`_ who participated in this project.
        
        License
        -------
        
        This project is licensed under the MIT License - see the `LICENSE.md`_ file for details
        
        
        .. _CONTRIBUTING.md: https://github.com/sorkhemiri/ahura/blob/master/CONTRIBUTING.md
        .. _Sorkhemiri: https://github.com/sorkhemiri
        .. _Rabetian: https://github.com/mohammadrabetian
        .. _contributors: https://github.com/sorkhemiri/ahura/graphs/contributors
        .. _LICENSE.md: https://github.com/sorkhemiri/ahura/blob/master/LICENSE.md
        
Keywords: python,django,serializer,json,model,orm
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
