authzee


Nameauthzee JSON
Version 0.1.0a2 PyPI version JSON
download
home_pagehttps://github.com/btemplep/authzee
SummaryAuthorization framework that uses a querying grant and revoke system.
upload_time2023-07-24 04:17:23
maintainer
docs_urlNone
authorBrandon Temple Paul
requires_python
licenseMIT
keywords auth authz authorization framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `authzee`

Documentation(Link TBD)

Authzee aims to offer a simple, but highly expressive grant and revoke authorization framework.

Define your own authorization resource and identity models with pydantic.
Create grants by using an extended JMESPath specification to query input resources and identities. 

> **NOTE** - It was originally developed with a focus on authorizing around existing infrastructure 
like AD users, AD roles, AWS roles etc. 
It is also adaptable to a user registration style system but may not scale nearly as well as other systems 
like [authzed](https://authzed.com/).


- [Installation](#installation)
- [Tutorial](#tutorial)
    - [Identity](#identity)
    - [Resource](#resource)
    - [Resource Actions](#resource-actions)
    - [Resource Authz](#resource-authz)
    - [Grant](#grant)
    - [`authzee` App](#authzee-app)
    - [`authzee` App Grant Management](#authzee-app-grant-management)
    - [`authzee` App Authorization Methods](#authzee-app-authorization-methods)
    - [`authzee` App Helper Methods](#authzee-app-helper-methods)
- [Full Tutorial Example](#full-tutorial-example)
- [Definitions](#definitions)


## Installation

Install from pip

```text
$ pip install authzee
```

For different compute or storage backends you may need to install extra deps. 

```text
$ pip install authzee[sql]
```

Extra dependencies:

- `sql` - For `SQLStorage`. 


## Tutorial

Let's start with a simple example.  An authorization request where an entity needs to perform an action on a resource, 
and authzee should tell us if it is allowed to or not.

> **NOTE** - The tutorial here covers a good amount overall, but for more details please see the Documentation(Link TBD).

You can go straight to the [full code example](#full-tutorial-example), or follow along with the tutorial to get all of the definitions and smaller examples.


### Identity

Authzee expects the calling entity to be described by its identities. 
An entity could be a person, a service user, a role etc. 
An identity could be anything used to describe who or what an entity is.  The calling entity can have many identities. 
Common identity types could be AD user, AD groups, AWS User, AWS Role.  A single identity could have all of these and multiples of them. 


In Authzee actions can be limited based on identities.
Identity models are made with pydantic.

```python
from pydantic import BaseModel

class ADUser(BaseModel):

    cn: str

```


### Resource

Resources in Authzee represent resources that authorization is needed for. 
The resource type and fields can be used in authorization.
Resource Models are made with pydantic.

```python
from pydantic import BaseModel

class Balloon(BaseModel):

    color: str
    size: str
```


### Resource Actions

Resource actions are used to enumerate operations that can be performed on a resources.
You can define resource actions as enums that are based on `authzee.ResourceAction`.
Each resource type must have it's own set of resource actions.

```python
from enum import auto

from authzee import ResourceAction

class BalloonAction(ResourceAction):

    CreateBalloon: str = auto()
    DeleteBalloon: str = auto()
    ListBalloons: str = auto()

```

### Resource Authz

"Resource Authz" is a metadata wrapper for resources, resource actions, and their relationships. 

Create them as a child class of `authzee.ResourceAuthz`, and fill in the default values to declare the resource type, resource action type, as well as parent and child relationships.  

Authzee does not keep a a hierarchy of relationships, and defining these is purely up to the user, and how they would like to authorize their resources.  
If you create a resource authz then you can set up the parent and child relationships however you want.  What Authzee will do with the defined relationships is:

- check parent and child resource types against the authz
- normalize the parent and child resources so you can query them in authorization requests

```python
from enum import auto
from typing import Set, Type

from pydantic import BaseModel, Field

from authzee import ResourceAction, ResourceAuthz


class Balloon(BaseModel):

    color: str
    size: float


class BalloonAction(ResourceAction):

    CreateBalloon: str = auto()
    DeleteBalloon: str = auto()
    ListBalloons: str = auto()

  
class BalloonString(BaseModel):

    color: str
    length: float


class BalloonStringActions(ResourceAction):

    CreateBalloonString: str = auto()
    DeleteBalloonString: str = auto()
    ListBalloonsString: str = auto()


class BalloonAuthz(ResourceAuthz):

    resource_action_type: Type[ResourceAction] = BalloonAction
    resource_type: Type[BaseModel] = Balloon
    parent_authz_names: Set[str] = Field(default_factory=set)
    child_authz_names: Set[str] = Field(default_factory=lambda: {"BalloonStringAuthz"})


class BalloonStringAuthz(ResourceAuthz):

    resource_action_type: Type[ResourceAction] = BalloonStringActions
    resource_type: Type[BaseModel] = BalloonString
    parent_authz_names: Set[str] = Field(default_factory=lambda: {"BalloonAuthz"})
    child_authz_names: Set[str] = Field(default_factory=set)
```

### Grant 

By default everything in Authzee is unauthorized/not allowed.  
In order to allow anything, grants must be created. 

There are two types of grants denoted by their effect. 

- Allow - Grants that authorize/allow matching requests.
- Deny - Grants that deny matching requests.  Requests with matching deny grants are unauthorized. Even if there are matching allow grants.

Grants are created with the `authzee.Grant` model, then added to the authzee app. 


```python
from pydantic import BaseModel

from authzee import Grant, GrantEffect


class Balloon(BaseModel):

    color: str
    size: float


class BalloonAction(ResourceAction):

    CreateBalloon: str = auto()
    DeleteBalloon: str = auto()
    ListBalloons: str = auto()


new_grant = Grant(
    name="Human friendly name",
    description="human friendly description",
    resource_type=Balloon, # The class resource type
    resource_actions={ # the set of resource actions
        BalloonAction.CreateBalloon,
        BalloonAction.DeleteBalloon
    },
    # JMESpath is the JSON query language for verifying identities and 
    # resources, as well as their relationships
    jmespath_expression=""" 
    contains(identities.ADUser[].cn, 'authzee_user_1')
    && resource.color == 'blue'
    """,
    result_match=True # If the result of the jmespath search query matches this, then the grant is considered a match!
)

# add to an authzee app. See more in authzee app section
# new_grant = authzee_app.add_grant(
#     effect=GrantEffect.ALLOW,
#     grant=new_grant
# )
```

The grant above will match with:

- resources of the `Balloon` type
- resource actions of `CreateBalloon` or `DeleteBalloon`

But what are `jmespath_expression` and `result_match` for?

[JMESPath](https://jmespath.org/) is a JSON query language with a complete specification. Authzee uses it as the query tool for authorizations. 

If the query result matches the `result_match` value, then the grant is considered a match. 

The JSON that is queried by grants is generated by the authorization request.

```json
{
    "identities": {
        "ADUser": [
            {
                "cn": "authzee_user_1"
            }
        ],
        "ADGroup": []
    },
    "resource_type": "Balloon",
    "resource": {
        "color": "green",
        "size": 12.27
    },
    "resource_action": "BalloonAction.CreateBalloon",
    "parent_resources": {},
    "child_resources": {
        "BalloonString": [
            {
                "color": "purple",
                "length": 27
            }
        ]
    }
}
```

The data for this is normalized as follows:

- `identities` is a JSON object whose keys include all identity types, and the value of each is an array.
- Any identities passed will be serialized and added to the array of their respective identity types. 
- `resource_type` is the class name of the resource type model for the request.
- `resource` is the serialized resource model for the request
- `resource_action` is the full name of the action for the request. `<class name>.<enum member>`
- `parent_resources` and `child_resources` are JSON objects that include all of the parent and child resource types class names as keys, and the value of each is an array.
- Any child or parent resources will be serialized and added to the array of their respective parent or child resource types. 

The above json is used as the data in `jmespath.search()`, along with the jmespath expression from the grant used as the expression.


### `authzee` App

The central interface of authzee is with the creation of an authzee app. 
An Authzee app requires a storage backend and a compute backend. 

Available Storage Backends:

- `SQLStorage` - Store data in a SQL database - async enabled

Available Compute Backends:

- `MainProcessCompute` - process authorization requests synchronously in the main thread - not async
- `MultiprocessCompute` - process authorization requests asynchronously.  Distributes work to a process pool
- `ThreadedCompute` - Process authorization requests asynchronously.  Distributes work to a thread pool.  Note that because of the GIL, using multiple threads may actually be slightly slower than `MainProcessCompute`, but it allows for somewhat async behavior.

```python
from authzee import (
    Authzee,
    MultiprocessCompute,
    SQLStorage
)

compute = MultiprocessCompute()
storage = SQLStorage(
    sqlalchemy_async_engine_kwargs={
        "url": "sqlite+aiosqlite:///test.sqlite",
        "echo": True
    }
)
authzee_app = Authzee(
    compute_backend=compute,
    storage_backend=storage
)


if __name__ == "__main__":
    # It's recommended to initialize the authzee app with a __main__ block
    # or a frameworks startup function.
    # Some compute backends me actually mandate it to be done like this.
    authzee_app.initialize() 

```


### `authzee` App Grant Management

After initialization of the Authzee app you can manage grants with:

- `list_grants` - List grants with an iterator.
- `add_grant` - Add a new grant.
- `delete_grant` - Delete a grant.
- `get_grants_page` - Retrieve a single page of grants.


If the backend supports it there are also async versions of these methods, just append `_async`.
`list_grants_async`, `add_grant_async`, `delete_grant_async`, `get_grants_page_async`.


### `authzee` App Authorization Methods

Of course you can also use the authorization methods!

- `authorize` - Determine if the request is authorized.
- `authorize_many` - Determine if several of the same resource type are authorized for the request. 
- `list_matching_grants` - List matching grants with an iterator. 
- `get_matching_grants_page` - Retrieve a single page of matching grants. 

If the backend supports it there are also async versions of these methods, just append `_async`.
`authorize_async`, `authorize_many_async`, `list_matching_grants_async`, `get_matching_grants_page_async`.


### `authzee` App Helper Methods

- `grant_matches` - Check if the request matches the given grant.


## Full Tutorial Example

```python
import asyncio
from enum import auto
from typing import Set, Type

from pydantic import BaseModel, Field

from authzee import (
    Authzee,
    Grant, 
    GrantEffect,
    MultiprocessCompute,
    ResourceAction, 
    ResourceAuthz,
    SQLStorage
)

# Identity Models
# Create identity models that represent the calling entities identities 
class ADUser(BaseModel):

    cn: str


class ADGroup(BaseModel):

    cn: str


# Resource Models
# Used to authorize actions on resources
# Can use authorization specific resource models
class Balloon(BaseModel):

    color: str
    size: float

  
class BalloonString(BaseModel):

    color: str
    length: float


# Resource Actions
# One resource action per resource type to represent the actions that can be taken on the resource
class BalloonAction(ResourceAction):

    CreateBalloon: str = auto()
    DeleteBalloon: str = auto()
    ListBalloons: str = auto()


class BalloonStringActions(ResourceAction):

    CreateBalloonString: str = auto()
    DeleteBalloonString: str = auto()
    ListBalloonsString: str = auto()


# Resource Authzs
# Tie resource types, resource actions, as well as child and parent relationships together
class BalloonAuthz(ResourceAuthz):

    resource_type: Type[BaseModel] = Balloon
    resource_action_type: Type[ResourceAction] = BalloonAction
    parent_authz_names: Set[str] = Field(default_factory=set)
    child_authz_names: Set[str] = Field(default_factory=lambda: {"BalloonStringAuthz"})


class BalloonStringAuthz(ResourceAuthz):

    resource_type: Type[BaseModel] = BalloonString
    resource_action_type: Type[ResourceAction] = BalloonStringActions
    parent_authz_names: Set[str] = Field(default_factory=lambda: {"BalloonAuthz"})
    child_authz_names: Set[str] = Field(default_factory=set)



# Create a compute and storage backend
compute = MultiprocessCompute()
storage = SQLStorage(
    sqlalchemy_async_engine_kwargs={
        "url": "sqlite+aiosqlite:///test.sqlite",
        "echo": False
    }
)
# Pass those to the Authzee app
authzee_app = Authzee(
    compute_backend=compute,
    storage_backend=storage
)
# Register Identity types
authzee_app.register_identity_type(ADUser)
authzee_app.register_identity_type(ADGroup)
# Then register ResourceAuthzs
authzee_app.register_resource_authz(BalloonAuthz)
authzee_app.register_resource_authz(BalloonStringAuthz)

if __name__ == "__main__":
    # It's recommended to initialize the authzee app with a __main__ block
    # or a frameworks startup function.
    # Some compute backends me actually mandate it to be done like this.
    authzee_app.initialize()

    # Run the one time setup.  This should only be done once per configuration.
    # Creates DB tables, other storage setup, and other compute setup
    # authzee_app.setup()

    # To tear down, delete everything that did run
    #authzee_app.teardown()

    # By default no requests are authorized in authzee
    # Grants are the base unit for describing how to match an authorization request
    # Grants are added to the authzee app as either ALLOW or DENY. 
    # Authorization requests that match a DENY grant are not authorized.
    # Requests that match an ALLOW grant but not any DENY grants are authorized.
    # Create new grant objects
    new_grant = Grant(
        name="Human friendly name",
        description="human friendly description",
        resource_type=Balloon, # The class resource type
        resource_actions={ # the set of resource actions
            BalloonAction.CreateBalloon,
            BalloonAction.DeleteBalloon
        },
        # JMESpath is the JSON query language for verifying identities and 
        # resources, as well as their relationships
        jmespath_expression=""" 
        contains(identities.ADUser[].cn, 'authzee_user_1')
        && resource.color == 'blue'
        """,
        result_match=True # If the result of the jmespath search query matches this, then the grant is considered a match!
    )
    match_everything_grant = Grant(
        name="everything",
        description="",
        resource_type=Balloon,
        resource_actions={BalloonAction.CreateBalloon},
        jmespath_expression="`true`",
        result_match=True
    )
    # Add the new grant to authzee as an ALLOW Grant
    new_grant = authzee_app.add_grant( 
        effect=GrantEffect.ALLOW,
        grant=new_grant
    )
    match_everything_grant = authzee_app.add_grant( 
        effect=GrantEffect.ALLOW,
        grant=match_everything_grant
    )
    # Get an iterator for the grants
    for grant in authzee_app.list_grants(effect=GrantEffect.ALLOW):
        print(grant)
    
    # Delete a grant
    authzee_app.delete_grant(
        effect=GrantEffect.ALLOW, 
        uuid=match_everything_grant.uuid
    )

    # Get a single page of grants
    grants_page = authzee_app.get_grants_page(
        effect=GrantEffect.ALLOW
    )
    for grant in grants_page.grants:
        print(grant)

    my_balloon = Balloon(
        color="blue",
        size=27.0
    )
    identities = [
        ADUser(
            cn="authzee_user_1"
        ),
        ADGroup(
            cn="some_group"
        ),
        ADGroup(
            cn="another_group"
        )
    ]
    
    # Authorize a request
    authorized = authzee_app.authorize(
        resource=my_balloon,
        resource_action=BalloonAction.CreateBalloon,
        parent_resources=[],
        child_resources=[],
        identities=identities
    )
    print(authorized) # True

    # Authorize many resources in a request
    authorized_many = authzee_app.authorize_many(
        resources=[
            my_balloon,
            Balloon(
                color="red",
                size=100.8
            )
        ],
        resource_action=BalloonAction.CreateBalloon,
        parent_resources=[],
        child_resources=[],
        identities=identities
    )
    print(authorized_many) # [True, False]
    
    # iterator for matching grants
    matching_grants_iter = authzee_app.list_matching_grants(
        effect=GrantEffect.ALLOW,
        resource=my_balloon,
        resource_action=BalloonAction.CreateBalloon,
        parent_resources=[],
        child_resources=[],
        identities=identities
    )
    for grant in matching_grants_iter:
        print(grant)
    
    # Get a single page of matching grants
    matching_grants_page = authzee_app.get_matching_grants_page(
        effect=GrantEffect.ALLOW,
        resource=my_balloon,
        resource_action=BalloonAction.CreateBalloon,
        parent_resources=[],
        child_resources=[],
        identities=identities
    )
    for grant in matching_grants_page.grants:
        print(grant)

    
    # Last but no least there is a helper method to verify if a given grant matches a request
    # The grant does not need to exist in the authzee app. 
    matches = authzee_app.grant_matches(
        resource=my_balloon,
        resource_action=BalloonAction.CreateBalloon,
        parent_resources=[],
        child_resources=[],
        identities=identities,
        grant=Grant(
            name="Some grant to test",
            description="some description",
            resource_type=Balloon,
            resource_actions={
                BalloonAction.CreateBalloon,
                BalloonAction.ListBalloons
            },
            jmespath_expression=""" 
            contains(identities.ADUser[].cn, 'authzee_user_1')
            && resource.color == 'blue'
            """,
            result_match=True
        )
    )

    print(matches) # True

    # as long as the compute and storage backends support is there is also 
    # async versions for all of these besides grant_matches. 
    # Simply append "_async" to the method. 
    async def tutorial_async() -> None:
        new_grant = Grant(
            name="Human friendly name",
            description="human friendly description",
            resource_type=Balloon, # The class resource type
            resource_actions={ # the set of resource actions
                BalloonAction.CreateBalloon,
                BalloonAction.DeleteBalloon
            },
            # JMESpath is the JSON query language for verifying identities and 
            # resources, as well as their relationships
            jmespath_expression=""" 
            contains(identities.ADUser[].cn, 'authzee_user_1')
            && resource.color == 'blue'
            """,
            result_match=True # If the result of the jmespath search query matches this, then the grant is considered a match!
        )
        match_everything_grant = Grant(
            name="everything",
            description="",
            resource_type=Balloon,
            resource_actions={BalloonAction.CreateBalloon},
            jmespath_expression="`true`",
            result_match=True
        )
        # Add the new grant to authzee as an ALLOW Grant
        new_grant = await authzee_app.add_grant_async( 
            effect=GrantEffect.ALLOW,
            grant=new_grant
        )
        match_everything_grant = await authzee_app.add_grant_async( 
            effect=GrantEffect.ALLOW,
            grant=match_everything_grant
        )
        # Get an iterator for the grants
        async for grant in authzee_app.list_grants_async(effect=GrantEffect.ALLOW):
            print(grant)
        
        # Delete a grant
        await authzee_app.delete_grant_async(
            effect=GrantEffect.ALLOW, 
            uuid=match_everything_grant.uuid
        )

        # Get a single page of grants
        grants_page = await authzee_app.get_grants_page_async(
            effect=GrantEffect.ALLOW
        )
        for grant in grants_page.grants:
            print(grant)
        
        # Authorize a request
        authorized = await authzee_app.authorize_async(
            resource=my_balloon,
            resource_action=BalloonAction.CreateBalloon,
            parent_resources=[],
            child_resources=[],
            identities=identities
        )
        print(authorized) # True

        # Authorize many resources in a request
        authorized_many = await authzee_app.authorize_many_async(
            resources=[
                my_balloon,
                Balloon(
                    color="red",
                    size=100.8
                )
            ],
            resource_action=BalloonAction.CreateBalloon,
            parent_resources=[],
            child_resources=[],
            identities=identities
        )
        print(authorized_many) # [True, False]
        
        # iterator for matching grants
        matching_grants_iter = authzee_app.list_matching_grants_async(
            effect=GrantEffect.ALLOW,
            resource=my_balloon,
            resource_action=BalloonAction.CreateBalloon,
            parent_resources=[],
            child_resources=[],
            identities=identities
        )
        async for grant in matching_grants_iter:
            print(grant)
        
        # Get a single page of matching grants
        matching_grants_page = await authzee_app.get_matching_grants_page_async(
            effect=GrantEffect.ALLOW,
            resource=my_balloon,
            resource_action=BalloonAction.CreateBalloon,
            parent_resources=[],
            child_resources=[],
            identities=identities
        )
        for grant in matching_grants_page.grants:
            print(grant)
    
    asyncio.run(tutorial_async())
```

### Definitions

A list of definitions

- Authorization Request (Request) - A request to see if a the calling entity is authorized to perform a specific resource action on a resource. 

- Calling Entity (Entity) - In an authorization request, the calling entity is essentially "who" is being authorized. The entity could be a person, service account, role etc.   

- Identity - A way to identify an entity. An identity could be AD users, AD groups, AWS roles, AWS users etc.

- Resource - Resources in Authzee represent resources that authorization is needed for.  Example: My application deals with balloons, balloons are resources we authorize against.

- Resource Type - The type of a "Resource".  Example: My app needs to authorize around balloons. So, "Balloon" is the resource type.

- Resource Actions - Actions that can be done to resources.  Example: Balloon resource type could have actions of "InflateBalloon", "PopBalloon", "ListBalloons", "CreateBalloon".

- Grant - The unit that defines how to query and match against authorization requests.  Grants are added to authzee to allow of explicitly deny authorization requests.  Requests that match any DENY grants are not authorized.  Requests that match any ALLOW grants and does not match any DENY grants are allowed. 


# Changelog

Changelog for `authzee`.
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- 
## [Unreleased] - YYYY-MM-DD

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security 
-->

<!-- 
## [Unreleased] - YYYY-MM-DD

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security 
-->

## [Unreleased] - YYYY-MM-DD
- [0.1.0a2] - 2023-07-23
    - Initial Alpha.

- [0.1.0a1] - 2023-07-03
    - Initial stub 


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/btemplep/authzee",
    "name": "authzee",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "auth,authz,authorization,framework",
    "author": "Brandon Temple Paul",
    "author_email": "btemplepgit@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/aa/b9/b4c9478c90eefa758e062dd4e0331575b7a7f9bbe046558c2d6cd5a8f9da/authzee-0.1.0a2.tar.gz",
    "platform": null,
    "description": "# `authzee`\n\nDocumentation(Link TBD)\n\nAuthzee aims to offer a simple, but highly expressive grant and revoke authorization framework.\n\nDefine your own authorization resource and identity models with pydantic.\nCreate grants by using an extended JMESPath specification to query input resources and identities. \n\n> **NOTE** - It was originally developed with a focus on authorizing around existing infrastructure \nlike AD users, AD roles, AWS roles etc. \nIt is also adaptable to a user registration style system but may not scale nearly as well as other systems \nlike [authzed](https://authzed.com/).\n\n\n- [Installation](#installation)\n- [Tutorial](#tutorial)\n    - [Identity](#identity)\n    - [Resource](#resource)\n    - [Resource Actions](#resource-actions)\n    - [Resource Authz](#resource-authz)\n    - [Grant](#grant)\n    - [`authzee` App](#authzee-app)\n    - [`authzee` App Grant Management](#authzee-app-grant-management)\n    - [`authzee` App Authorization Methods](#authzee-app-authorization-methods)\n    - [`authzee` App Helper Methods](#authzee-app-helper-methods)\n- [Full Tutorial Example](#full-tutorial-example)\n- [Definitions](#definitions)\n\n\n## Installation\n\nInstall from pip\n\n```text\n$ pip install authzee\n```\n\nFor different compute or storage backends you may need to install extra deps. \n\n```text\n$ pip install authzee[sql]\n```\n\nExtra dependencies:\n\n- `sql` - For `SQLStorage`. \n\n\n## Tutorial\n\nLet's start with a simple example.  An authorization request where an entity needs to perform an action on a resource, \nand authzee should tell us if it is allowed to or not.\n\n> **NOTE** - The tutorial here covers a good amount overall, but for more details please see the Documentation(Link TBD).\n\nYou can go straight to the [full code example](#full-tutorial-example), or follow along with the tutorial to get all of the definitions and smaller examples.\n\n\n### Identity\n\nAuthzee expects the calling entity to be described by its identities. \nAn entity could be a person, a service user, a role etc. \nAn identity could be anything used to describe who or what an entity is.  The calling entity can have many identities. \nCommon identity types could be AD user, AD groups, AWS User, AWS Role.  A single identity could have all of these and multiples of them. \n\n\nIn Authzee actions can be limited based on identities.\nIdentity models are made with pydantic.\n\n```python\nfrom pydantic import BaseModel\n\nclass ADUser(BaseModel):\n\n    cn: str\n\n```\n\n\n### Resource\n\nResources in Authzee represent resources that authorization is needed for. \nThe resource type and fields can be used in authorization.\nResource Models are made with pydantic.\n\n```python\nfrom pydantic import BaseModel\n\nclass Balloon(BaseModel):\n\n    color: str\n    size: str\n```\n\n\n### Resource Actions\n\nResource actions are used to enumerate operations that can be performed on a resources.\nYou can define resource actions as enums that are based on `authzee.ResourceAction`.\nEach resource type must have it's own set of resource actions.\n\n```python\nfrom enum import auto\n\nfrom authzee import ResourceAction\n\nclass BalloonAction(ResourceAction):\n\n    CreateBalloon: str = auto()\n    DeleteBalloon: str = auto()\n    ListBalloons: str = auto()\n\n```\n\n### Resource Authz\n\n\"Resource Authz\" is a metadata wrapper for resources, resource actions, and their relationships. \n\nCreate them as a child class of `authzee.ResourceAuthz`, and fill in the default values to declare the resource type, resource action type, as well as parent and child relationships.  \n\nAuthzee does not keep a a hierarchy of relationships, and defining these is purely up to the user, and how they would like to authorize their resources.  \nIf you create a resource authz then you can set up the parent and child relationships however you want.  What Authzee will do with the defined relationships is:\n\n- check parent and child resource types against the authz\n- normalize the parent and child resources so you can query them in authorization requests\n\n```python\nfrom enum import auto\nfrom typing import Set, Type\n\nfrom pydantic import BaseModel, Field\n\nfrom authzee import ResourceAction, ResourceAuthz\n\n\nclass Balloon(BaseModel):\n\n    color: str\n    size: float\n\n\nclass BalloonAction(ResourceAction):\n\n    CreateBalloon: str = auto()\n    DeleteBalloon: str = auto()\n    ListBalloons: str = auto()\n\n  \nclass BalloonString(BaseModel):\n\n    color: str\n    length: float\n\n\nclass BalloonStringActions(ResourceAction):\n\n    CreateBalloonString: str = auto()\n    DeleteBalloonString: str = auto()\n    ListBalloonsString: str = auto()\n\n\nclass BalloonAuthz(ResourceAuthz):\n\n    resource_action_type: Type[ResourceAction] = BalloonAction\n    resource_type: Type[BaseModel] = Balloon\n    parent_authz_names: Set[str] = Field(default_factory=set)\n    child_authz_names: Set[str] = Field(default_factory=lambda: {\"BalloonStringAuthz\"})\n\n\nclass BalloonStringAuthz(ResourceAuthz):\n\n    resource_action_type: Type[ResourceAction] = BalloonStringActions\n    resource_type: Type[BaseModel] = BalloonString\n    parent_authz_names: Set[str] = Field(default_factory=lambda: {\"BalloonAuthz\"})\n    child_authz_names: Set[str] = Field(default_factory=set)\n```\n\n### Grant \n\nBy default everything in Authzee is unauthorized/not allowed.  \nIn order to allow anything, grants must be created. \n\nThere are two types of grants denoted by their effect. \n\n- Allow - Grants that authorize/allow matching requests.\n- Deny - Grants that deny matching requests.  Requests with matching deny grants are unauthorized. Even if there are matching allow grants.\n\nGrants are created with the `authzee.Grant` model, then added to the authzee app. \n\n\n```python\nfrom pydantic import BaseModel\n\nfrom authzee import Grant, GrantEffect\n\n\nclass Balloon(BaseModel):\n\n    color: str\n    size: float\n\n\nclass BalloonAction(ResourceAction):\n\n    CreateBalloon: str = auto()\n    DeleteBalloon: str = auto()\n    ListBalloons: str = auto()\n\n\nnew_grant = Grant(\n    name=\"Human friendly name\",\n    description=\"human friendly description\",\n    resource_type=Balloon, # The class resource type\n    resource_actions={ # the set of resource actions\n        BalloonAction.CreateBalloon,\n        BalloonAction.DeleteBalloon\n    },\n    # JMESpath is the JSON query language for verifying identities and \n    # resources, as well as their relationships\n    jmespath_expression=\"\"\" \n    contains(identities.ADUser[].cn, 'authzee_user_1')\n    && resource.color == 'blue'\n    \"\"\",\n    result_match=True # If the result of the jmespath search query matches this, then the grant is considered a match!\n)\n\n# add to an authzee app. See more in authzee app section\n# new_grant = authzee_app.add_grant(\n#     effect=GrantEffect.ALLOW,\n#     grant=new_grant\n# )\n```\n\nThe grant above will match with:\n\n- resources of the `Balloon` type\n- resource actions of `CreateBalloon` or `DeleteBalloon`\n\nBut what are `jmespath_expression` and `result_match` for?\n\n[JMESPath](https://jmespath.org/) is a JSON query language with a complete specification. Authzee uses it as the query tool for authorizations. \n\nIf the query result matches the `result_match` value, then the grant is considered a match. \n\nThe JSON that is queried by grants is generated by the authorization request.\n\n```json\n{\n    \"identities\": {\n        \"ADUser\": [\n            {\n                \"cn\": \"authzee_user_1\"\n            }\n        ],\n        \"ADGroup\": []\n    },\n    \"resource_type\": \"Balloon\",\n    \"resource\": {\n        \"color\": \"green\",\n        \"size\": 12.27\n    },\n    \"resource_action\": \"BalloonAction.CreateBalloon\",\n    \"parent_resources\": {},\n    \"child_resources\": {\n        \"BalloonString\": [\n            {\n                \"color\": \"purple\",\n                \"length\": 27\n            }\n        ]\n    }\n}\n```\n\nThe data for this is normalized as follows:\n\n- `identities` is a JSON object whose keys include all identity types, and the value of each is an array.\n- Any identities passed will be serialized and added to the array of their respective identity types. \n- `resource_type` is the class name of the resource type model for the request.\n- `resource` is the serialized resource model for the request\n- `resource_action` is the full name of the action for the request. `<class name>.<enum member>`\n- `parent_resources` and `child_resources` are JSON objects that include all of the parent and child resource types class names as keys, and the value of each is an array.\n- Any child or parent resources will be serialized and added to the array of their respective parent or child resource types. \n\nThe above json is used as the data in `jmespath.search()`, along with the jmespath expression from the grant used as the expression.\n\n\n### `authzee` App\n\nThe central interface of authzee is with the creation of an authzee app. \nAn Authzee app requires a storage backend and a compute backend. \n\nAvailable Storage Backends:\n\n- `SQLStorage` - Store data in a SQL database - async enabled\n\nAvailable Compute Backends:\n\n- `MainProcessCompute` - process authorization requests synchronously in the main thread - not async\n- `MultiprocessCompute` - process authorization requests asynchronously.  Distributes work to a process pool\n- `ThreadedCompute` - Process authorization requests asynchronously.  Distributes work to a thread pool.  Note that because of the GIL, using multiple threads may actually be slightly slower than `MainProcessCompute`, but it allows for somewhat async behavior.\n\n```python\nfrom authzee import (\n    Authzee,\n    MultiprocessCompute,\n    SQLStorage\n)\n\ncompute = MultiprocessCompute()\nstorage = SQLStorage(\n    sqlalchemy_async_engine_kwargs={\n        \"url\": \"sqlite+aiosqlite:///test.sqlite\",\n        \"echo\": True\n    }\n)\nauthzee_app = Authzee(\n    compute_backend=compute,\n    storage_backend=storage\n)\n\n\nif __name__ == \"__main__\":\n    # It's recommended to initialize the authzee app with a __main__ block\n    # or a frameworks startup function.\n    # Some compute backends me actually mandate it to be done like this.\n    authzee_app.initialize() \n\n```\n\n\n### `authzee` App Grant Management\n\nAfter initialization of the Authzee app you can manage grants with:\n\n- `list_grants` - List grants with an iterator.\n- `add_grant` - Add a new grant.\n- `delete_grant` - Delete a grant.\n- `get_grants_page` - Retrieve a single page of grants.\n\n\nIf the backend supports it there are also async versions of these methods, just append `_async`.\n`list_grants_async`, `add_grant_async`, `delete_grant_async`, `get_grants_page_async`.\n\n\n### `authzee` App Authorization Methods\n\nOf course you can also use the authorization methods!\n\n- `authorize` - Determine if the request is authorized.\n- `authorize_many` - Determine if several of the same resource type are authorized for the request. \n- `list_matching_grants` - List matching grants with an iterator. \n- `get_matching_grants_page` - Retrieve a single page of matching grants. \n\nIf the backend supports it there are also async versions of these methods, just append `_async`.\n`authorize_async`, `authorize_many_async`, `list_matching_grants_async`, `get_matching_grants_page_async`.\n\n\n### `authzee` App Helper Methods\n\n- `grant_matches` - Check if the request matches the given grant.\n\n\n## Full Tutorial Example\n\n```python\nimport asyncio\nfrom enum import auto\nfrom typing import Set, Type\n\nfrom pydantic import BaseModel, Field\n\nfrom authzee import (\n    Authzee,\n    Grant, \n    GrantEffect,\n    MultiprocessCompute,\n    ResourceAction, \n    ResourceAuthz,\n    SQLStorage\n)\n\n# Identity Models\n# Create identity models that represent the calling entities identities \nclass ADUser(BaseModel):\n\n    cn: str\n\n\nclass ADGroup(BaseModel):\n\n    cn: str\n\n\n# Resource Models\n# Used to authorize actions on resources\n# Can use authorization specific resource models\nclass Balloon(BaseModel):\n\n    color: str\n    size: float\n\n  \nclass BalloonString(BaseModel):\n\n    color: str\n    length: float\n\n\n# Resource Actions\n# One resource action per resource type to represent the actions that can be taken on the resource\nclass BalloonAction(ResourceAction):\n\n    CreateBalloon: str = auto()\n    DeleteBalloon: str = auto()\n    ListBalloons: str = auto()\n\n\nclass BalloonStringActions(ResourceAction):\n\n    CreateBalloonString: str = auto()\n    DeleteBalloonString: str = auto()\n    ListBalloonsString: str = auto()\n\n\n# Resource Authzs\n# Tie resource types, resource actions, as well as child and parent relationships together\nclass BalloonAuthz(ResourceAuthz):\n\n    resource_type: Type[BaseModel] = Balloon\n    resource_action_type: Type[ResourceAction] = BalloonAction\n    parent_authz_names: Set[str] = Field(default_factory=set)\n    child_authz_names: Set[str] = Field(default_factory=lambda: {\"BalloonStringAuthz\"})\n\n\nclass BalloonStringAuthz(ResourceAuthz):\n\n    resource_type: Type[BaseModel] = BalloonString\n    resource_action_type: Type[ResourceAction] = BalloonStringActions\n    parent_authz_names: Set[str] = Field(default_factory=lambda: {\"BalloonAuthz\"})\n    child_authz_names: Set[str] = Field(default_factory=set)\n\n\n\n# Create a compute and storage backend\ncompute = MultiprocessCompute()\nstorage = SQLStorage(\n    sqlalchemy_async_engine_kwargs={\n        \"url\": \"sqlite+aiosqlite:///test.sqlite\",\n        \"echo\": False\n    }\n)\n# Pass those to the Authzee app\nauthzee_app = Authzee(\n    compute_backend=compute,\n    storage_backend=storage\n)\n# Register Identity types\nauthzee_app.register_identity_type(ADUser)\nauthzee_app.register_identity_type(ADGroup)\n# Then register ResourceAuthzs\nauthzee_app.register_resource_authz(BalloonAuthz)\nauthzee_app.register_resource_authz(BalloonStringAuthz)\n\nif __name__ == \"__main__\":\n    # It's recommended to initialize the authzee app with a __main__ block\n    # or a frameworks startup function.\n    # Some compute backends me actually mandate it to be done like this.\n    authzee_app.initialize()\n\n    # Run the one time setup.  This should only be done once per configuration.\n    # Creates DB tables, other storage setup, and other compute setup\n    # authzee_app.setup()\n\n    # To tear down, delete everything that did run\n    #authzee_app.teardown()\n\n    # By default no requests are authorized in authzee\n    # Grants are the base unit for describing how to match an authorization request\n    # Grants are added to the authzee app as either ALLOW or DENY. \n    # Authorization requests that match a DENY grant are not authorized.\n    # Requests that match an ALLOW grant but not any DENY grants are authorized.\n    # Create new grant objects\n    new_grant = Grant(\n        name=\"Human friendly name\",\n        description=\"human friendly description\",\n        resource_type=Balloon, # The class resource type\n        resource_actions={ # the set of resource actions\n            BalloonAction.CreateBalloon,\n            BalloonAction.DeleteBalloon\n        },\n        # JMESpath is the JSON query language for verifying identities and \n        # resources, as well as their relationships\n        jmespath_expression=\"\"\" \n        contains(identities.ADUser[].cn, 'authzee_user_1')\n        && resource.color == 'blue'\n        \"\"\",\n        result_match=True # If the result of the jmespath search query matches this, then the grant is considered a match!\n    )\n    match_everything_grant = Grant(\n        name=\"everything\",\n        description=\"\",\n        resource_type=Balloon,\n        resource_actions={BalloonAction.CreateBalloon},\n        jmespath_expression=\"`true`\",\n        result_match=True\n    )\n    # Add the new grant to authzee as an ALLOW Grant\n    new_grant = authzee_app.add_grant( \n        effect=GrantEffect.ALLOW,\n        grant=new_grant\n    )\n    match_everything_grant = authzee_app.add_grant( \n        effect=GrantEffect.ALLOW,\n        grant=match_everything_grant\n    )\n    # Get an iterator for the grants\n    for grant in authzee_app.list_grants(effect=GrantEffect.ALLOW):\n        print(grant)\n    \n    # Delete a grant\n    authzee_app.delete_grant(\n        effect=GrantEffect.ALLOW, \n        uuid=match_everything_grant.uuid\n    )\n\n    # Get a single page of grants\n    grants_page = authzee_app.get_grants_page(\n        effect=GrantEffect.ALLOW\n    )\n    for grant in grants_page.grants:\n        print(grant)\n\n    my_balloon = Balloon(\n        color=\"blue\",\n        size=27.0\n    )\n    identities = [\n        ADUser(\n            cn=\"authzee_user_1\"\n        ),\n        ADGroup(\n            cn=\"some_group\"\n        ),\n        ADGroup(\n            cn=\"another_group\"\n        )\n    ]\n    \n    # Authorize a request\n    authorized = authzee_app.authorize(\n        resource=my_balloon,\n        resource_action=BalloonAction.CreateBalloon,\n        parent_resources=[],\n        child_resources=[],\n        identities=identities\n    )\n    print(authorized) # True\n\n    # Authorize many resources in a request\n    authorized_many = authzee_app.authorize_many(\n        resources=[\n            my_balloon,\n            Balloon(\n                color=\"red\",\n                size=100.8\n            )\n        ],\n        resource_action=BalloonAction.CreateBalloon,\n        parent_resources=[],\n        child_resources=[],\n        identities=identities\n    )\n    print(authorized_many) # [True, False]\n    \n    # iterator for matching grants\n    matching_grants_iter = authzee_app.list_matching_grants(\n        effect=GrantEffect.ALLOW,\n        resource=my_balloon,\n        resource_action=BalloonAction.CreateBalloon,\n        parent_resources=[],\n        child_resources=[],\n        identities=identities\n    )\n    for grant in matching_grants_iter:\n        print(grant)\n    \n    # Get a single page of matching grants\n    matching_grants_page = authzee_app.get_matching_grants_page(\n        effect=GrantEffect.ALLOW,\n        resource=my_balloon,\n        resource_action=BalloonAction.CreateBalloon,\n        parent_resources=[],\n        child_resources=[],\n        identities=identities\n    )\n    for grant in matching_grants_page.grants:\n        print(grant)\n\n    \n    # Last but no least there is a helper method to verify if a given grant matches a request\n    # The grant does not need to exist in the authzee app. \n    matches = authzee_app.grant_matches(\n        resource=my_balloon,\n        resource_action=BalloonAction.CreateBalloon,\n        parent_resources=[],\n        child_resources=[],\n        identities=identities,\n        grant=Grant(\n            name=\"Some grant to test\",\n            description=\"some description\",\n            resource_type=Balloon,\n            resource_actions={\n                BalloonAction.CreateBalloon,\n                BalloonAction.ListBalloons\n            },\n            jmespath_expression=\"\"\" \n            contains(identities.ADUser[].cn, 'authzee_user_1')\n            && resource.color == 'blue'\n            \"\"\",\n            result_match=True\n        )\n    )\n\n    print(matches) # True\n\n    # as long as the compute and storage backends support is there is also \n    # async versions for all of these besides grant_matches. \n    # Simply append \"_async\" to the method. \n    async def tutorial_async() -> None:\n        new_grant = Grant(\n            name=\"Human friendly name\",\n            description=\"human friendly description\",\n            resource_type=Balloon, # The class resource type\n            resource_actions={ # the set of resource actions\n                BalloonAction.CreateBalloon,\n                BalloonAction.DeleteBalloon\n            },\n            # JMESpath is the JSON query language for verifying identities and \n            # resources, as well as their relationships\n            jmespath_expression=\"\"\" \n            contains(identities.ADUser[].cn, 'authzee_user_1')\n            && resource.color == 'blue'\n            \"\"\",\n            result_match=True # If the result of the jmespath search query matches this, then the grant is considered a match!\n        )\n        match_everything_grant = Grant(\n            name=\"everything\",\n            description=\"\",\n            resource_type=Balloon,\n            resource_actions={BalloonAction.CreateBalloon},\n            jmespath_expression=\"`true`\",\n            result_match=True\n        )\n        # Add the new grant to authzee as an ALLOW Grant\n        new_grant = await authzee_app.add_grant_async( \n            effect=GrantEffect.ALLOW,\n            grant=new_grant\n        )\n        match_everything_grant = await authzee_app.add_grant_async( \n            effect=GrantEffect.ALLOW,\n            grant=match_everything_grant\n        )\n        # Get an iterator for the grants\n        async for grant in authzee_app.list_grants_async(effect=GrantEffect.ALLOW):\n            print(grant)\n        \n        # Delete a grant\n        await authzee_app.delete_grant_async(\n            effect=GrantEffect.ALLOW, \n            uuid=match_everything_grant.uuid\n        )\n\n        # Get a single page of grants\n        grants_page = await authzee_app.get_grants_page_async(\n            effect=GrantEffect.ALLOW\n        )\n        for grant in grants_page.grants:\n            print(grant)\n        \n        # Authorize a request\n        authorized = await authzee_app.authorize_async(\n            resource=my_balloon,\n            resource_action=BalloonAction.CreateBalloon,\n            parent_resources=[],\n            child_resources=[],\n            identities=identities\n        )\n        print(authorized) # True\n\n        # Authorize many resources in a request\n        authorized_many = await authzee_app.authorize_many_async(\n            resources=[\n                my_balloon,\n                Balloon(\n                    color=\"red\",\n                    size=100.8\n                )\n            ],\n            resource_action=BalloonAction.CreateBalloon,\n            parent_resources=[],\n            child_resources=[],\n            identities=identities\n        )\n        print(authorized_many) # [True, False]\n        \n        # iterator for matching grants\n        matching_grants_iter = authzee_app.list_matching_grants_async(\n            effect=GrantEffect.ALLOW,\n            resource=my_balloon,\n            resource_action=BalloonAction.CreateBalloon,\n            parent_resources=[],\n            child_resources=[],\n            identities=identities\n        )\n        async for grant in matching_grants_iter:\n            print(grant)\n        \n        # Get a single page of matching grants\n        matching_grants_page = await authzee_app.get_matching_grants_page_async(\n            effect=GrantEffect.ALLOW,\n            resource=my_balloon,\n            resource_action=BalloonAction.CreateBalloon,\n            parent_resources=[],\n            child_resources=[],\n            identities=identities\n        )\n        for grant in matching_grants_page.grants:\n            print(grant)\n    \n    asyncio.run(tutorial_async())\n```\n\n### Definitions\n\nA list of definitions\n\n- Authorization Request (Request) - A request to see if a the calling entity is authorized to perform a specific resource action on a resource. \n\n- Calling Entity (Entity) - In an authorization request, the calling entity is essentially \"who\" is being authorized. The entity could be a person, service account, role etc.   \n\n- Identity - A way to identify an entity. An identity could be AD users, AD groups, AWS roles, AWS users etc.\n\n- Resource - Resources in Authzee represent resources that authorization is needed for.  Example: My application deals with balloons, balloons are resources we authorize against.\n\n- Resource Type - The type of a \"Resource\".  Example: My app needs to authorize around balloons. So, \"Balloon\" is the resource type.\n\n- Resource Actions - Actions that can be done to resources.  Example: Balloon resource type could have actions of \"InflateBalloon\", \"PopBalloon\", \"ListBalloons\", \"CreateBalloon\".\n\n- Grant - The unit that defines how to query and match against authorization requests.  Grants are added to authzee to allow of explicitly deny authorization requests.  Requests that match any DENY grants are not authorized.  Requests that match any ALLOW grants and does not match any DENY grants are allowed. \n\n\n# Changelog\n\nChangelog for `authzee`.\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n\n<!-- \n## [Unreleased] - YYYY-MM-DD\n\n### Added\n\n### Changed\n\n### Deprecated\n\n### Removed\n\n### Fixed\n\n### Security \n-->\n\n<!-- \n## [Unreleased] - YYYY-MM-DD\n\n### Added\n\n### Changed\n\n### Deprecated\n\n### Removed\n\n### Fixed\n\n### Security \n-->\n\n## [Unreleased] - YYYY-MM-DD\n- [0.1.0a2] - 2023-07-23\n    - Initial Alpha.\n\n- [0.1.0a1] - 2023-07-03\n    - Initial stub \n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Authorization framework that uses a querying grant and revoke system.",
    "version": "0.1.0a2",
    "project_urls": {
        "Homepage": "https://github.com/btemplep/authzee",
        "Repository": "https://github.com/btemplep/authzee"
    },
    "split_keywords": [
        "auth",
        "authz",
        "authorization",
        "framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c27952ec941126bf5c8068626447d7129bdbe1b37ccbd3db0f54e5f022691ea8",
                "md5": "c981d0bc9e6e8d8dccbc268cfcb0b5de",
                "sha256": "12817da7a6e4251d1fd0949dda090e55db1c54fb5ec23f96fcc3e615f1d32c8d"
            },
            "downloads": -1,
            "filename": "authzee-0.1.0a2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c981d0bc9e6e8d8dccbc268cfcb0b5de",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 36388,
            "upload_time": "2023-07-24T04:17:21",
            "upload_time_iso_8601": "2023-07-24T04:17:21.646891Z",
            "url": "https://files.pythonhosted.org/packages/c2/79/52ec941126bf5c8068626447d7129bdbe1b37ccbd3db0f54e5f022691ea8/authzee-0.1.0a2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aab9b4c9478c90eefa758e062dd4e0331575b7a7f9bbe046558c2d6cd5a8f9da",
                "md5": "119e3275f35864b99b1e33c5c940fb0b",
                "sha256": "8200fe8af398709062a42379456f41ee1a3008a5616ebb0b1da53672a40eac7b"
            },
            "downloads": -1,
            "filename": "authzee-0.1.0a2.tar.gz",
            "has_sig": false,
            "md5_digest": "119e3275f35864b99b1e33c5c940fb0b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 32222,
            "upload_time": "2023-07-24T04:17:23",
            "upload_time_iso_8601": "2023-07-24T04:17:23.432380Z",
            "url": "https://files.pythonhosted.org/packages/aa/b9/b4c9478c90eefa758e062dd4e0331575b7a7f9bbe046558c2d6cd5a8f9da/authzee-0.1.0a2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-24 04:17:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "btemplep",
    "github_project": "authzee",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "authzee"
}
        
Elapsed time: 0.09486s