Skip to content

Quinn

quinn logo

Quinn contains PySpark helper methods that will make you more productive.

Quinn is also a great way to learn about PySpark best practices like how to organize and unit test your code.

Contributing

We have a solid group of maintainers, chat on contributor meetings regularly, and eagerly accept contributions from other members.

We want to help the world write beautiful PySpark and give them a wonderful developer experience.

Code Style

We are using PySpark code-style and sphinx as docstrings format. For more details about sphinx format see this tutorial. A short example of sphinx-formatted docstring is placed below:

"""[Summary]

:param [ParamName]: [ParamDescription], defaults to [DefaultParamVal]
:type [ParamName]: [ParamType](, optional)
...
:raises [ErrorType]: [ErrorDescription]
...
:return: [ReturnDescription]
:rtype: [ReturnType]
"""