├── .binstar.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── conda.recipe ├── bld.bat ├── build.sh └── meta.yaml ├── datashape ├── __init__.py ├── _version.py ├── coretypes.py ├── discovery.py ├── dispatch.py ├── error.py ├── internal_utils.py ├── lexer.py ├── parser.py ├── predicates.py ├── promote.py ├── py2help.py ├── tests │ ├── __init__.py │ ├── test_coretypes.py │ ├── test_creation.py │ ├── test_discovery.py │ ├── test_lexer.py │ ├── test_operations.py │ ├── test_parser.py │ ├── test_predicates.py │ ├── test_promote.py │ ├── test_str.py │ ├── test_typeset.py │ ├── test_user.py │ ├── test_util.py │ └── test_version.py ├── type_symbol_table.py ├── typesets.py ├── user.py ├── util │ ├── __init__.py │ ├── testing.py │ └── tests │ │ └── test_testing.py └── validation.py ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── grammar.rst │ ├── index.rst │ ├── overview.rst │ ├── pattern_matching.rst │ ├── releases.rst │ ├── svg │ └── type_expand.png │ ├── types.rst │ └── whatsnew │ ├── 0.4.7.txt │ ├── 0.5.0.txt │ ├── 0.5.1.txt │ ├── 0.5.2.txt │ ├── 0.5.3.txt │ └── 0.5.4.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── versioneer.py /.binstar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/.binstar.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | datashape/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/README.rst -------------------------------------------------------------------------------- /conda.recipe/bld.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | %PYTHON% setup.py install 4 | -------------------------------------------------------------------------------- /conda.recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | $PYTHON setup.py install 4 | 5 | -------------------------------------------------------------------------------- /conda.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/conda.recipe/meta.yaml -------------------------------------------------------------------------------- /datashape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/__init__.py -------------------------------------------------------------------------------- /datashape/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/_version.py -------------------------------------------------------------------------------- /datashape/coretypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/coretypes.py -------------------------------------------------------------------------------- /datashape/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/discovery.py -------------------------------------------------------------------------------- /datashape/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/dispatch.py -------------------------------------------------------------------------------- /datashape/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/error.py -------------------------------------------------------------------------------- /datashape/internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/internal_utils.py -------------------------------------------------------------------------------- /datashape/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/lexer.py -------------------------------------------------------------------------------- /datashape/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/parser.py -------------------------------------------------------------------------------- /datashape/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/predicates.py -------------------------------------------------------------------------------- /datashape/promote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/promote.py -------------------------------------------------------------------------------- /datashape/py2help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/py2help.py -------------------------------------------------------------------------------- /datashape/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datashape/tests/test_coretypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_coretypes.py -------------------------------------------------------------------------------- /datashape/tests/test_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_creation.py -------------------------------------------------------------------------------- /datashape/tests/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_discovery.py -------------------------------------------------------------------------------- /datashape/tests/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_lexer.py -------------------------------------------------------------------------------- /datashape/tests/test_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_operations.py -------------------------------------------------------------------------------- /datashape/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_parser.py -------------------------------------------------------------------------------- /datashape/tests/test_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_predicates.py -------------------------------------------------------------------------------- /datashape/tests/test_promote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_promote.py -------------------------------------------------------------------------------- /datashape/tests/test_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_str.py -------------------------------------------------------------------------------- /datashape/tests/test_typeset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_typeset.py -------------------------------------------------------------------------------- /datashape/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_user.py -------------------------------------------------------------------------------- /datashape/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_util.py -------------------------------------------------------------------------------- /datashape/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/tests/test_version.py -------------------------------------------------------------------------------- /datashape/type_symbol_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/type_symbol_table.py -------------------------------------------------------------------------------- /datashape/typesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/typesets.py -------------------------------------------------------------------------------- /datashape/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/user.py -------------------------------------------------------------------------------- /datashape/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/util/__init__.py -------------------------------------------------------------------------------- /datashape/util/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/util/testing.py -------------------------------------------------------------------------------- /datashape/util/tests/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/util/tests/test_testing.py -------------------------------------------------------------------------------- /datashape/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/datashape/validation.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/grammar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/grammar.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/pattern_matching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/pattern_matching.rst -------------------------------------------------------------------------------- /docs/source/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/releases.rst -------------------------------------------------------------------------------- /docs/source/svg/type_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/svg/type_expand.png -------------------------------------------------------------------------------- /docs/source/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/types.rst -------------------------------------------------------------------------------- /docs/source/whatsnew/0.4.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/whatsnew/0.4.7.txt -------------------------------------------------------------------------------- /docs/source/whatsnew/0.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/whatsnew/0.5.0.txt -------------------------------------------------------------------------------- /docs/source/whatsnew/0.5.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/whatsnew/0.5.1.txt -------------------------------------------------------------------------------- /docs/source/whatsnew/0.5.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/whatsnew/0.5.2.txt -------------------------------------------------------------------------------- /docs/source/whatsnew/0.5.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/whatsnew/0.5.3.txt -------------------------------------------------------------------------------- /docs/source/whatsnew/0.5.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/docs/source/whatsnew/0.5.4.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blaze/datashape/HEAD/versioneer.py --------------------------------------------------------------------------------