# core


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L270"
target="_blank" style="float:right; font-size:smaller">source</a>

### GroupedQuery

``` python

def GroupedQuery(
    data, operations
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L138"
target="_blank" style="float:right; font-size:smaller">source</a>

### Query

``` python

def Query(
    data, operations:NoneType=None
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L129"
target="_blank" style="float:right; font-size:smaller">source</a>

### read_excel

``` python

def read_excel(
    path, sheet_name:NoneType=None
):

```

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L118"
target="_blank" style="float:right; font-size:smaller">source</a>

### read_yaml

``` python

def read_yaml(
    path, key:NoneType=None
):

```

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L104"
target="_blank" style="float:right; font-size:smaller">source</a>

### read_json

``` python

def read_json(
    path, key:NoneType=None, stream:bool=False
):

```

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L97"
target="_blank" style="float:right; font-size:smaller">source</a>

### read_sqlite3

``` python

def read_sqlite3(
    db_path, query
):

```

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L93"
target="_blank" style="float:right; font-size:smaller">source</a>

### read_csv

``` python

def read_csv(
    path
):

```

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L79"
target="_blank" style="float:right; font-size:smaller">source</a>

### F

``` python

def F(
    name
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L73"
target="_blank" style="float:right; font-size:smaller">source</a>

### Condition

``` python

def Condition(
    fn
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L61"
target="_blank" style="float:right; font-size:smaller">source</a>

### Sort

``` python

def Sort(
    key:NoneType=None, reverse:bool=False
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L47"
target="_blank" style="float:right; font-size:smaller">source</a>

### Reduce

``` python

def Reduce(
    fn, initial:NoneType=None
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L37"
target="_blank" style="float:right; font-size:smaller">source</a>

### GroupBy

``` python

def GroupBy(
    key
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L33"
target="_blank" style="float:right; font-size:smaller">source</a>

### Select

``` python

def Select(
    keys
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L26"
target="_blank" style="float:right; font-size:smaller">source</a>

### Limit

``` python

def Limit(
    n
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L19"
target="_blank" style="float:right; font-size:smaller">source</a>

### Filter

``` python

def Filter(
    fn
):

```

*Initialize self. See help(type(self)) for accurate signature.*

------------------------------------------------------------------------

<a href="https://github.com/vikasAWA/lazyq/blob/main/lazyq/core.py#L15"
target="_blank" style="float:right; font-size:smaller">source</a>

### Map

``` python

def Map(
    fn
):

```

*Initialize self. See help(type(self)) for accurate signature.*
