Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 446B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
  4. #
  5. # This module is part of python-sqlparse and is released under
  6. # the BSD License: https://opensource.org/licenses/BSD-3-Clause
  7. from sqlparse.engine import grouping
  8. from sqlparse.engine.filter_stack import FilterStack
  9. from sqlparse.engine.statement_splitter import StatementSplitter
  10. __all__ = [
  11. 'grouping',
  12. 'FilterStack',
  13. 'StatementSplitter',
  14. ]