Metadata-Version: 2.1
Name: fireo
Version: 1.3.2
Summary: FireO ORM is specifically designed for the Google's Firestore
Home-page: https://github.com/octabytes/FireO
Author: OctaByte
Author-email: Dev@octabyte.io
License: Apache 2.0
Description: <p align="right">
        <a href="https://badge.fury.io/py/fireo"><a href="https://opencollective.com/FireO" alt="Financial Contributors on Open Collective"><img src="https://opencollective.com/FireO/all/badge.svg?label=financial+contributors" /></a> <img src="https://badge.fury.io/py/fireo.svg" alt="PyPI version"></a>
        <a href="https://travis-ci.org/octabytes/FireO"><img src="https://travis-ci.org/octabytes/FireO.svg?branch=master" alt="Build Status"></a>
        </p>
        <p>
            <h1 align="center"><img src="fireo_logo.png" height="100" alt="FireO Logo"></h1>
            <p align="center">
                A modern and simplest convenient ORM package in Python.
                FireO is specifically designed for the Google's Firestore, it's more than just ORM.
                It implements validation, type checking, relational model logic and much more facilities.
            </p>
            <p align="center">
                <strong>
                    <a href="https://octabyte.io/FireO/">Get Started!</a>
                </strong>
            </p>
            <br><br><br>
        </p>
        
        ## Installation
        
        ```python
        pip install fireo
        ```
        
        ## Example Usage
        ```python
        from fireo.models import Model
        from fireo.fields import TextField
        
        class User(Model):
            name = TextField()
        
        
        u = User()
        u.name = "Azeem Haider"
        u.save()
        
        # Get user
        user = User.collection.get(u.key)
        print(user.name)
        ```
        
        ## Documentation
        
        Full documentation is available in the [FireO Doc](https://octabyte.io/FireO/).
        
        ## Contributing
        
        Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming 
        space for collaboration, and contributors are expected to adhere to the 
        [Contributor Covenant](https://github.com/octabytes/FireO/blob/master/CODE_OF_CONDUCT.md) code of conduct.
        
        1. Check FireO [Project TODO list](https://github.com/octabytes/FireO/projects) or [newcomers contribute](https://github.com/octabytes/FireO/contribute)
        2. Checkout [Feature](https://github.com/octabytes/FireO/tree/feature) branch (latest working branch)
        3. Write tests for your functionality
        4. Mention in [Documentation](https://github.com/octabytes/FireO/tree/gh-pages), what you has done and how other can use it  
        
        ## Contributors
        
        ### Code Contributors
        
        This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
        <a href="https://github.com/octabytes/FireO/graphs/contributors"><img src="https://opencollective.com/FireO/contributors.svg?width=890&button=false" /></a>
        
        ### Financial Contributors
        
        Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/FireO/contribute)]
        
        #### Individuals
        
        <a href="https://opencollective.com/FireO"><img src="https://opencollective.com/FireO/individuals.svg?width=890"></a>
        
        #### Organizations
        
        Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/FireO/contribute)]
        
        <a href="https://opencollective.com/FireO/organization/0/website"><img src="https://opencollective.com/FireO/organization/0/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/1/website"><img src="https://opencollective.com/FireO/organization/1/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/2/website"><img src="https://opencollective.com/FireO/organization/2/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/3/website"><img src="https://opencollective.com/FireO/organization/3/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/4/website"><img src="https://opencollective.com/FireO/organization/4/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/5/website"><img src="https://opencollective.com/FireO/organization/5/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/6/website"><img src="https://opencollective.com/FireO/organization/6/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/7/website"><img src="https://opencollective.com/FireO/organization/7/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/8/website"><img src="https://opencollective.com/FireO/organization/8/avatar.svg"></a>
        <a href="https://opencollective.com/FireO/organization/9/website"><img src="https://opencollective.com/FireO/organization/9/avatar.svg"></a>
        
        ## License
        
        This is official [FireO](https://github.com/octabytes/FireO) Repository. Powered by [OctaByte](https://octabyte.io)
        Licensed under [Apache License 2.0](https://github.com/octabytes/FireO/blob/master/LICENSE)
        
Keywords: Python Firestore Models ORM Google Cloud Firebase
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
