module generic.others_types

Inheritance diagram of pysqllike.generic.others_types

Short summary

module pysqllike.generic.others_types

defines custom types

source on GitHub

Classes

class

truncated documentation

EmptyGroup

defines an empty group

GroupByContainer

to differiate between a list and a list introduced by a groupby

long

Defines the long type as int.

NA

Defines the missing type.

NoSortClass

Container which overloads the sort operator to return 0 all the times.

Methods

method

truncated documentation

__add__

__add__

__div__

__div__

__float__

__init__

__init__

__init__

any value

__init__

__int__

__lt__

operator __lt__

__mul__

__mul__

__str__

usual

__str__

__sub__

__sub__

Documentation

defines custom types

source on GitHub

class pysqllike.generic.others_types.EmptyGroup

Bases: object

defines an empty group

source on GitHub

__init__()
class pysqllike.generic.others_types.GroupByContainer(iterable=(), /)

Bases: list

to differiate between a list and a list introduced by a groupby

source on GitHub

class pysqllike.generic.others_types.NA

Bases: object

Defines the missing type.

source on GitHub

__add__(y)
__div__(y)
__init__()
__mul__(y)
__sub__(y)
class pysqllike.generic.others_types.NoSortClass(value)

Bases: object

Container which overloads the sort operator to return 0 all the times.

source on GitHub

any value

source on GitHub

__init__(value)

any value

source on GitHub

__lt__(o)

operator __lt__

source on GitHub

__str__()

usual

source on GitHub

class pysqllike.generic.others_types.long(v)

Bases: object

Defines the long type as int.

source on GitHub

__add__(y)
__div__(y)
__float__()
__init__(v)
__int__()
__mul__(y)
__str__()

Return str(self).

__sub__(y)