├── .dockerignore ├── .github └── workflows │ ├── docker-build-and-push.yml │ └── tox.yml ├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTING.rst ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.rst ├── concrete ├── __init__.py ├── access │ ├── FetchCommunicationService-remote │ ├── FetchCommunicationService.py │ ├── StoreCommunicationService-remote │ ├── StoreCommunicationService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── annotate │ ├── AnnotateCommunicationBatchService-remote │ ├── AnnotateCommunicationBatchService.py │ ├── AnnotateCommunicationService-remote │ ├── AnnotateCommunicationService.py │ ├── AnnotateWithContextService-remote │ ├── AnnotateWithContextService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── audio │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── clustering │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── communication │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── context │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── convert │ ├── ConvertCommunicationService-remote │ ├── ConvertCommunicationService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── email │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── entities │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── exceptions │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── inspect.py ├── language │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── learn │ ├── ActiveLearnerClientService-remote │ ├── ActiveLearnerClientService.py │ ├── ActiveLearnerServerService-remote │ ├── ActiveLearnerServerService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── linking │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── metadata │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── nitf │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── property │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── search │ ├── FeedbackService-remote │ ├── FeedbackService.py │ ├── SearchProxyService-remote │ ├── SearchProxyService.py │ ├── SearchService-remote │ ├── SearchService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── services │ ├── Service-remote │ ├── Service.py │ ├── __init__.py │ ├── constants.py │ ├── results │ │ ├── ResultsServerService-remote │ │ ├── ResultsServerService.py │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py │ └── ttypes.py ├── situations │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── spans │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── structure │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── summarization │ ├── SummarizationService-remote │ ├── SummarizationService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── twitter │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── util │ ├── __init__.py │ ├── access.py │ ├── access_wrapper.py │ ├── annotate_wrapper.py │ ├── comm_container.py │ ├── concrete_uuid.py │ ├── file_io.py │ ├── json_fu.py │ ├── learn_wrapper.py │ ├── locale.py │ ├── mem_io.py │ ├── metadata.py │ ├── net.py │ ├── redis_io.py │ ├── references.py │ ├── results_wrapper.py │ ├── search_wrapper.py │ ├── service_wrapper.py │ ├── simple_comm.py │ ├── summarization_wrapper.py │ ├── thrift_factory.py │ ├── tokenization.py │ ├── twitter.py │ └── unnone.py ├── uuid │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── validate.py └── version.py ├── docs ├── .gitignore ├── CONTRIBUTING.rst ├── Makefile ├── README.rst ├── advanced_usage.rst ├── concrete.access.FetchCommunicationService.rst ├── concrete.access.StoreCommunicationService.rst ├── concrete.access.rst ├── concrete.annotate.AnnotateCommunicationService.rst ├── concrete.annotate.AnnotateWithContextService.rst ├── concrete.annotate.rst ├── concrete.audio.rst ├── concrete.clustering.rst ├── concrete.communication.rst ├── concrete.context.rst ├── concrete.convert.ConvertCommunicationService.rst ├── concrete.convert.rst ├── concrete.email.rst ├── concrete.entities.rst ├── concrete.exceptions.rst ├── concrete.inspect.rst ├── concrete.language.rst ├── concrete.learn.ActiveLearnerClientService.rst ├── concrete.learn.ActiveLearnerServerService.rst ├── concrete.learn.rst ├── concrete.linking.rst ├── concrete.metadata.rst ├── concrete.nitf.rst ├── concrete.property.rst ├── concrete.rst ├── concrete.search.FeedbackService.rst ├── concrete.search.SearchProxyService.rst ├── concrete.search.SearchService.rst ├── concrete.search.rst ├── concrete.services.Service.rst ├── concrete.services.results.ResultsServerService.rst ├── concrete.services.rst ├── concrete.situations.rst ├── concrete.spans.rst ├── concrete.structure.rst ├── concrete.summarization.SummarizationService.rst ├── concrete.summarization.rst ├── concrete.twitter.rst ├── concrete.util.access.rst ├── concrete.util.access_wrapper.rst ├── concrete.util.annotate_wrapper.rst ├── concrete.util.comm_container.rst ├── concrete.util.concrete_uuid.rst ├── concrete.util.file_io.rst ├── concrete.util.json_fu.rst ├── concrete.util.learn_wrapper.rst ├── concrete.util.locale.rst ├── concrete.util.mem_io.rst ├── concrete.util.metadata.rst ├── concrete.util.net.rst ├── concrete.util.redis_io.rst ├── concrete.util.references.rst ├── concrete.util.results_wrapper.rst ├── concrete.util.rst ├── concrete.util.search_wrapper.rst ├── concrete.util.service_wrapper.rst ├── concrete.util.simple_comm.rst ├── concrete.util.summarization_wrapper.rst ├── concrete.util.thrift_factory.rst ├── concrete.util.tokenization.rst ├── concrete.util.twitter.rst ├── concrete.util.unnone.rst ├── concrete.uuid.rst ├── concrete.validate.rst ├── concrete.version.rst ├── conf.py └── index.rst ├── examples ├── annotate-communication-service.py └── create-tokentagging-example.py ├── generate.bash ├── install-mojave-homebrew-accelerated-thrift.sh ├── integration-tests ├── test_annotate.py ├── test_annotate_batch.py ├── test_compress_uuids.py ├── test_concrete2json.py ├── test_concrete_inspect.py ├── test_create_comm.py ├── test_create_comm_tarball.py ├── test_fetch.py ├── test_file_io.py ├── test_imports.py ├── test_search.py ├── test_streams.py └── test_tweets2concrete.py ├── patches └── structure_ttypes.patch ├── scripts ├── access-http-server.py ├── annotate-communication-batch-client.py ├── annotate-communication-client.py ├── comms2csv.py ├── compress-uuids.py ├── concrete-diff.py ├── concrete-inspect.py ├── concrete2json.py ├── concrete_diff.py ├── concrete_inspect.py ├── convert-protocols.py ├── create-comm-tarball.py ├── create-comm.py ├── csv2comms.py ├── fetch-client.py ├── fetch-server.py ├── inspect-dependency-parses.py ├── inspect_dependency_parses.py ├── s3-fetch-concrete-server.py ├── s3-fetch-concrete.py ├── s3-list-concrete.py ├── s3-store-concrete-server.py ├── s3-store-concrete.py ├── search-client.py ├── thrift-is-accelerated.py ├── tweets2concrete-redis.py ├── tweets2concrete.py ├── validate-communication.py ├── validate_communication.py └── wait-concrete-service.py ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── test_access.py ├── test_active_learner_client_wrapper.py ├── test_active_learner_server_wrapper.py ├── test_annotate_wrapper.py ├── test_comm_container.py ├── test_feedback_wrapper.py ├── test_fetch_wrapper.py ├── test_helper.py ├── test_inspect.py ├── test_mem_io.py ├── test_metadata.py ├── test_redis_io.py ├── test_repr.py ├── test_results_server_wrapper.py ├── test_search_proxy_wrapper.py ├── test_search_wrapper.py ├── test_simple_comm.py ├── test_store_wrapper.py ├── test_summarization_wrapper.py ├── test_thrift_factory.py ├── test_tokenization.py ├── test_twitter.py ├── test_unnone.py ├── test_uuid.py ├── test_validate_communication.py └── testdata │ ├── a │ ├── b │ │ └── simple_1.concrete │ └── c │ │ ├── simple_2.concrete │ │ └── simple_3.concrete │ ├── create_simple_communications.py │ ├── les-deux-chandeliers-perline.tar.gz │ ├── les-deux-chandeliers.concrete │ ├── les-deux-chandeliers.concrete.tar.gz │ ├── les-deux-chandeliers.tar.gz │ ├── les-deux-chandeliers.txt │ ├── serif_dog-bites-man.concrete │ ├── serif_les-deux.tar.gz │ ├── serif_les-deux_concatenated.concrete │ ├── simple.tar │ ├── simple.tar.bz2 │ ├── simple.tar.gz │ ├── simple.zip │ ├── simple_1.concrete │ ├── simple_1.concrete.bz2 │ ├── simple_1.concrete.gz │ ├── simple_1_and_truncated.tar.gz │ ├── simple_2.concrete │ ├── simple_3.concrete │ ├── simple_concatenated │ ├── simple_concatenated.bz2 │ ├── simple_concatenated.gz │ ├── simple_nested.tar │ ├── simple_nested.zip │ ├── truncated.comm │ ├── truncated.comm.gz │ ├── tweets.bad-line-unicode.json │ ├── tweets.bad-line.json │ ├── tweets.deleted.json │ ├── tweets.invalid.json │ ├── tweets.json │ ├── tweets.json.gz │ ├── tweets.json.incomplete.gz │ └── tweets.unicode.json └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/.github/workflows/docker-build-and-push.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/README.rst -------------------------------------------------------------------------------- /concrete/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/__init__.py -------------------------------------------------------------------------------- /concrete/access/FetchCommunicationService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/FetchCommunicationService-remote -------------------------------------------------------------------------------- /concrete/access/FetchCommunicationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/FetchCommunicationService.py -------------------------------------------------------------------------------- /concrete/access/StoreCommunicationService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/StoreCommunicationService-remote -------------------------------------------------------------------------------- /concrete/access/StoreCommunicationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/StoreCommunicationService.py -------------------------------------------------------------------------------- /concrete/access/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/__init__.py -------------------------------------------------------------------------------- /concrete/access/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/constants.py -------------------------------------------------------------------------------- /concrete/access/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/access/ttypes.py -------------------------------------------------------------------------------- /concrete/annotate/AnnotateCommunicationBatchService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/AnnotateCommunicationBatchService-remote -------------------------------------------------------------------------------- /concrete/annotate/AnnotateCommunicationBatchService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/AnnotateCommunicationBatchService.py -------------------------------------------------------------------------------- /concrete/annotate/AnnotateCommunicationService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/AnnotateCommunicationService-remote -------------------------------------------------------------------------------- /concrete/annotate/AnnotateCommunicationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/AnnotateCommunicationService.py -------------------------------------------------------------------------------- /concrete/annotate/AnnotateWithContextService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/AnnotateWithContextService-remote -------------------------------------------------------------------------------- /concrete/annotate/AnnotateWithContextService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/AnnotateWithContextService.py -------------------------------------------------------------------------------- /concrete/annotate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/__init__.py -------------------------------------------------------------------------------- /concrete/annotate/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/constants.py -------------------------------------------------------------------------------- /concrete/annotate/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/annotate/ttypes.py -------------------------------------------------------------------------------- /concrete/audio/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/audio/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/audio/constants.py -------------------------------------------------------------------------------- /concrete/audio/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/audio/ttypes.py -------------------------------------------------------------------------------- /concrete/clustering/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/clustering/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/clustering/constants.py -------------------------------------------------------------------------------- /concrete/clustering/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/clustering/ttypes.py -------------------------------------------------------------------------------- /concrete/communication/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/communication/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/communication/constants.py -------------------------------------------------------------------------------- /concrete/communication/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/communication/ttypes.py -------------------------------------------------------------------------------- /concrete/context/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/context/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/context/constants.py -------------------------------------------------------------------------------- /concrete/context/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/context/ttypes.py -------------------------------------------------------------------------------- /concrete/convert/ConvertCommunicationService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/convert/ConvertCommunicationService-remote -------------------------------------------------------------------------------- /concrete/convert/ConvertCommunicationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/convert/ConvertCommunicationService.py -------------------------------------------------------------------------------- /concrete/convert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/convert/__init__.py -------------------------------------------------------------------------------- /concrete/convert/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/convert/constants.py -------------------------------------------------------------------------------- /concrete/convert/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/convert/ttypes.py -------------------------------------------------------------------------------- /concrete/email/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/email/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/email/constants.py -------------------------------------------------------------------------------- /concrete/email/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/email/ttypes.py -------------------------------------------------------------------------------- /concrete/entities/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/entities/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/entities/constants.py -------------------------------------------------------------------------------- /concrete/entities/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/entities/ttypes.py -------------------------------------------------------------------------------- /concrete/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/exceptions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/exceptions/constants.py -------------------------------------------------------------------------------- /concrete/exceptions/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/exceptions/ttypes.py -------------------------------------------------------------------------------- /concrete/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/inspect.py -------------------------------------------------------------------------------- /concrete/language/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/language/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/language/constants.py -------------------------------------------------------------------------------- /concrete/language/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/language/ttypes.py -------------------------------------------------------------------------------- /concrete/learn/ActiveLearnerClientService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/ActiveLearnerClientService-remote -------------------------------------------------------------------------------- /concrete/learn/ActiveLearnerClientService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/ActiveLearnerClientService.py -------------------------------------------------------------------------------- /concrete/learn/ActiveLearnerServerService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/ActiveLearnerServerService-remote -------------------------------------------------------------------------------- /concrete/learn/ActiveLearnerServerService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/ActiveLearnerServerService.py -------------------------------------------------------------------------------- /concrete/learn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/__init__.py -------------------------------------------------------------------------------- /concrete/learn/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/constants.py -------------------------------------------------------------------------------- /concrete/learn/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/learn/ttypes.py -------------------------------------------------------------------------------- /concrete/linking/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/linking/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/linking/constants.py -------------------------------------------------------------------------------- /concrete/linking/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/linking/ttypes.py -------------------------------------------------------------------------------- /concrete/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/metadata/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/metadata/constants.py -------------------------------------------------------------------------------- /concrete/metadata/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/metadata/ttypes.py -------------------------------------------------------------------------------- /concrete/nitf/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/nitf/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/nitf/constants.py -------------------------------------------------------------------------------- /concrete/nitf/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/nitf/ttypes.py -------------------------------------------------------------------------------- /concrete/property/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/property/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/property/constants.py -------------------------------------------------------------------------------- /concrete/property/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/property/ttypes.py -------------------------------------------------------------------------------- /concrete/search/FeedbackService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/FeedbackService-remote -------------------------------------------------------------------------------- /concrete/search/FeedbackService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/FeedbackService.py -------------------------------------------------------------------------------- /concrete/search/SearchProxyService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/SearchProxyService-remote -------------------------------------------------------------------------------- /concrete/search/SearchProxyService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/SearchProxyService.py -------------------------------------------------------------------------------- /concrete/search/SearchService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/SearchService-remote -------------------------------------------------------------------------------- /concrete/search/SearchService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/SearchService.py -------------------------------------------------------------------------------- /concrete/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/__init__.py -------------------------------------------------------------------------------- /concrete/search/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/constants.py -------------------------------------------------------------------------------- /concrete/search/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/search/ttypes.py -------------------------------------------------------------------------------- /concrete/services/Service-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/Service-remote -------------------------------------------------------------------------------- /concrete/services/Service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/Service.py -------------------------------------------------------------------------------- /concrete/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/__init__.py -------------------------------------------------------------------------------- /concrete/services/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/constants.py -------------------------------------------------------------------------------- /concrete/services/results/ResultsServerService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/results/ResultsServerService-remote -------------------------------------------------------------------------------- /concrete/services/results/ResultsServerService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/results/ResultsServerService.py -------------------------------------------------------------------------------- /concrete/services/results/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/results/__init__.py -------------------------------------------------------------------------------- /concrete/services/results/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/results/constants.py -------------------------------------------------------------------------------- /concrete/services/results/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/results/ttypes.py -------------------------------------------------------------------------------- /concrete/services/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/services/ttypes.py -------------------------------------------------------------------------------- /concrete/situations/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/situations/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/situations/constants.py -------------------------------------------------------------------------------- /concrete/situations/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/situations/ttypes.py -------------------------------------------------------------------------------- /concrete/spans/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/spans/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/spans/constants.py -------------------------------------------------------------------------------- /concrete/spans/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/spans/ttypes.py -------------------------------------------------------------------------------- /concrete/structure/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/structure/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/structure/constants.py -------------------------------------------------------------------------------- /concrete/structure/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/structure/ttypes.py -------------------------------------------------------------------------------- /concrete/summarization/SummarizationService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/summarization/SummarizationService-remote -------------------------------------------------------------------------------- /concrete/summarization/SummarizationService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/summarization/SummarizationService.py -------------------------------------------------------------------------------- /concrete/summarization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/summarization/__init__.py -------------------------------------------------------------------------------- /concrete/summarization/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/summarization/constants.py -------------------------------------------------------------------------------- /concrete/summarization/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/summarization/ttypes.py -------------------------------------------------------------------------------- /concrete/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/twitter/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/twitter/constants.py -------------------------------------------------------------------------------- /concrete/twitter/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/twitter/ttypes.py -------------------------------------------------------------------------------- /concrete/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/__init__.py -------------------------------------------------------------------------------- /concrete/util/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/access.py -------------------------------------------------------------------------------- /concrete/util/access_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/access_wrapper.py -------------------------------------------------------------------------------- /concrete/util/annotate_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/annotate_wrapper.py -------------------------------------------------------------------------------- /concrete/util/comm_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/comm_container.py -------------------------------------------------------------------------------- /concrete/util/concrete_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/concrete_uuid.py -------------------------------------------------------------------------------- /concrete/util/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/file_io.py -------------------------------------------------------------------------------- /concrete/util/json_fu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/json_fu.py -------------------------------------------------------------------------------- /concrete/util/learn_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/learn_wrapper.py -------------------------------------------------------------------------------- /concrete/util/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/locale.py -------------------------------------------------------------------------------- /concrete/util/mem_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/mem_io.py -------------------------------------------------------------------------------- /concrete/util/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/metadata.py -------------------------------------------------------------------------------- /concrete/util/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/net.py -------------------------------------------------------------------------------- /concrete/util/redis_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/redis_io.py -------------------------------------------------------------------------------- /concrete/util/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/references.py -------------------------------------------------------------------------------- /concrete/util/results_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/results_wrapper.py -------------------------------------------------------------------------------- /concrete/util/search_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/search_wrapper.py -------------------------------------------------------------------------------- /concrete/util/service_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/service_wrapper.py -------------------------------------------------------------------------------- /concrete/util/simple_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/simple_comm.py -------------------------------------------------------------------------------- /concrete/util/summarization_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/summarization_wrapper.py -------------------------------------------------------------------------------- /concrete/util/thrift_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/thrift_factory.py -------------------------------------------------------------------------------- /concrete/util/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/tokenization.py -------------------------------------------------------------------------------- /concrete/util/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/twitter.py -------------------------------------------------------------------------------- /concrete/util/unnone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/util/unnone.py -------------------------------------------------------------------------------- /concrete/uuid/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /concrete/uuid/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/uuid/constants.py -------------------------------------------------------------------------------- /concrete/uuid/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/uuid/ttypes.py -------------------------------------------------------------------------------- /concrete/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/validate.py -------------------------------------------------------------------------------- /concrete/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/concrete/version.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | -------------------------------------------------------------------------------- /docs/CONTRIBUTING.rst: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /docs/advanced_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/advanced_usage.rst -------------------------------------------------------------------------------- /docs/concrete.access.FetchCommunicationService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.access.FetchCommunicationService.rst -------------------------------------------------------------------------------- /docs/concrete.access.StoreCommunicationService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.access.StoreCommunicationService.rst -------------------------------------------------------------------------------- /docs/concrete.access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.access.rst -------------------------------------------------------------------------------- /docs/concrete.annotate.AnnotateCommunicationService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.annotate.AnnotateCommunicationService.rst -------------------------------------------------------------------------------- /docs/concrete.annotate.AnnotateWithContextService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.annotate.AnnotateWithContextService.rst -------------------------------------------------------------------------------- /docs/concrete.annotate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.annotate.rst -------------------------------------------------------------------------------- /docs/concrete.audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.audio.rst -------------------------------------------------------------------------------- /docs/concrete.clustering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.clustering.rst -------------------------------------------------------------------------------- /docs/concrete.communication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.communication.rst -------------------------------------------------------------------------------- /docs/concrete.context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.context.rst -------------------------------------------------------------------------------- /docs/concrete.convert.ConvertCommunicationService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.convert.ConvertCommunicationService.rst -------------------------------------------------------------------------------- /docs/concrete.convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.convert.rst -------------------------------------------------------------------------------- /docs/concrete.email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.email.rst -------------------------------------------------------------------------------- /docs/concrete.entities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.entities.rst -------------------------------------------------------------------------------- /docs/concrete.exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.exceptions.rst -------------------------------------------------------------------------------- /docs/concrete.inspect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.inspect.rst -------------------------------------------------------------------------------- /docs/concrete.language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.language.rst -------------------------------------------------------------------------------- /docs/concrete.learn.ActiveLearnerClientService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.learn.ActiveLearnerClientService.rst -------------------------------------------------------------------------------- /docs/concrete.learn.ActiveLearnerServerService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.learn.ActiveLearnerServerService.rst -------------------------------------------------------------------------------- /docs/concrete.learn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.learn.rst -------------------------------------------------------------------------------- /docs/concrete.linking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.linking.rst -------------------------------------------------------------------------------- /docs/concrete.metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.metadata.rst -------------------------------------------------------------------------------- /docs/concrete.nitf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.nitf.rst -------------------------------------------------------------------------------- /docs/concrete.property.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.property.rst -------------------------------------------------------------------------------- /docs/concrete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.rst -------------------------------------------------------------------------------- /docs/concrete.search.FeedbackService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.search.FeedbackService.rst -------------------------------------------------------------------------------- /docs/concrete.search.SearchProxyService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.search.SearchProxyService.rst -------------------------------------------------------------------------------- /docs/concrete.search.SearchService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.search.SearchService.rst -------------------------------------------------------------------------------- /docs/concrete.search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.search.rst -------------------------------------------------------------------------------- /docs/concrete.services.Service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.services.Service.rst -------------------------------------------------------------------------------- /docs/concrete.services.results.ResultsServerService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.services.results.ResultsServerService.rst -------------------------------------------------------------------------------- /docs/concrete.services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.services.rst -------------------------------------------------------------------------------- /docs/concrete.situations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.situations.rst -------------------------------------------------------------------------------- /docs/concrete.spans.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.spans.rst -------------------------------------------------------------------------------- /docs/concrete.structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.structure.rst -------------------------------------------------------------------------------- /docs/concrete.summarization.SummarizationService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.summarization.SummarizationService.rst -------------------------------------------------------------------------------- /docs/concrete.summarization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.summarization.rst -------------------------------------------------------------------------------- /docs/concrete.twitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.twitter.rst -------------------------------------------------------------------------------- /docs/concrete.util.access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.access.rst -------------------------------------------------------------------------------- /docs/concrete.util.access_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.access_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.annotate_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.annotate_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.comm_container.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.comm_container.rst -------------------------------------------------------------------------------- /docs/concrete.util.concrete_uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.concrete_uuid.rst -------------------------------------------------------------------------------- /docs/concrete.util.file_io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.file_io.rst -------------------------------------------------------------------------------- /docs/concrete.util.json_fu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.json_fu.rst -------------------------------------------------------------------------------- /docs/concrete.util.learn_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.learn_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.locale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.locale.rst -------------------------------------------------------------------------------- /docs/concrete.util.mem_io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.mem_io.rst -------------------------------------------------------------------------------- /docs/concrete.util.metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.metadata.rst -------------------------------------------------------------------------------- /docs/concrete.util.net.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.net.rst -------------------------------------------------------------------------------- /docs/concrete.util.redis_io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.redis_io.rst -------------------------------------------------------------------------------- /docs/concrete.util.references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.references.rst -------------------------------------------------------------------------------- /docs/concrete.util.results_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.results_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.rst -------------------------------------------------------------------------------- /docs/concrete.util.search_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.search_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.service_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.service_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.simple_comm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.simple_comm.rst -------------------------------------------------------------------------------- /docs/concrete.util.summarization_wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.summarization_wrapper.rst -------------------------------------------------------------------------------- /docs/concrete.util.thrift_factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.thrift_factory.rst -------------------------------------------------------------------------------- /docs/concrete.util.tokenization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.tokenization.rst -------------------------------------------------------------------------------- /docs/concrete.util.twitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.twitter.rst -------------------------------------------------------------------------------- /docs/concrete.util.unnone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.util.unnone.rst -------------------------------------------------------------------------------- /docs/concrete.uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.uuid.rst -------------------------------------------------------------------------------- /docs/concrete.validate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.validate.rst -------------------------------------------------------------------------------- /docs/concrete.version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/concrete.version.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /examples/annotate-communication-service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/examples/annotate-communication-service.py -------------------------------------------------------------------------------- /examples/create-tokentagging-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/examples/create-tokentagging-example.py -------------------------------------------------------------------------------- /generate.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/generate.bash -------------------------------------------------------------------------------- /install-mojave-homebrew-accelerated-thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/install-mojave-homebrew-accelerated-thrift.sh -------------------------------------------------------------------------------- /integration-tests/test_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_annotate.py -------------------------------------------------------------------------------- /integration-tests/test_annotate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_annotate_batch.py -------------------------------------------------------------------------------- /integration-tests/test_compress_uuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_compress_uuids.py -------------------------------------------------------------------------------- /integration-tests/test_concrete2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_concrete2json.py -------------------------------------------------------------------------------- /integration-tests/test_concrete_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_concrete_inspect.py -------------------------------------------------------------------------------- /integration-tests/test_create_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_create_comm.py -------------------------------------------------------------------------------- /integration-tests/test_create_comm_tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_create_comm_tarball.py -------------------------------------------------------------------------------- /integration-tests/test_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_fetch.py -------------------------------------------------------------------------------- /integration-tests/test_file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_file_io.py -------------------------------------------------------------------------------- /integration-tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_imports.py -------------------------------------------------------------------------------- /integration-tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_search.py -------------------------------------------------------------------------------- /integration-tests/test_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_streams.py -------------------------------------------------------------------------------- /integration-tests/test_tweets2concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/integration-tests/test_tweets2concrete.py -------------------------------------------------------------------------------- /patches/structure_ttypes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/patches/structure_ttypes.patch -------------------------------------------------------------------------------- /scripts/access-http-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/access-http-server.py -------------------------------------------------------------------------------- /scripts/annotate-communication-batch-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/annotate-communication-batch-client.py -------------------------------------------------------------------------------- /scripts/annotate-communication-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/annotate-communication-client.py -------------------------------------------------------------------------------- /scripts/comms2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/comms2csv.py -------------------------------------------------------------------------------- /scripts/compress-uuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/compress-uuids.py -------------------------------------------------------------------------------- /scripts/concrete-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/concrete-diff.py -------------------------------------------------------------------------------- /scripts/concrete-inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/concrete-inspect.py -------------------------------------------------------------------------------- /scripts/concrete2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/concrete2json.py -------------------------------------------------------------------------------- /scripts/concrete_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/concrete_diff.py -------------------------------------------------------------------------------- /scripts/concrete_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/concrete_inspect.py -------------------------------------------------------------------------------- /scripts/convert-protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/convert-protocols.py -------------------------------------------------------------------------------- /scripts/create-comm-tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/create-comm-tarball.py -------------------------------------------------------------------------------- /scripts/create-comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/create-comm.py -------------------------------------------------------------------------------- /scripts/csv2comms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/csv2comms.py -------------------------------------------------------------------------------- /scripts/fetch-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/fetch-client.py -------------------------------------------------------------------------------- /scripts/fetch-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/fetch-server.py -------------------------------------------------------------------------------- /scripts/inspect-dependency-parses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/inspect-dependency-parses.py -------------------------------------------------------------------------------- /scripts/inspect_dependency_parses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/inspect_dependency_parses.py -------------------------------------------------------------------------------- /scripts/s3-fetch-concrete-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/s3-fetch-concrete-server.py -------------------------------------------------------------------------------- /scripts/s3-fetch-concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/s3-fetch-concrete.py -------------------------------------------------------------------------------- /scripts/s3-list-concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/s3-list-concrete.py -------------------------------------------------------------------------------- /scripts/s3-store-concrete-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/s3-store-concrete-server.py -------------------------------------------------------------------------------- /scripts/s3-store-concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/s3-store-concrete.py -------------------------------------------------------------------------------- /scripts/search-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/search-client.py -------------------------------------------------------------------------------- /scripts/thrift-is-accelerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/thrift-is-accelerated.py -------------------------------------------------------------------------------- /scripts/tweets2concrete-redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/tweets2concrete-redis.py -------------------------------------------------------------------------------- /scripts/tweets2concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/tweets2concrete.py -------------------------------------------------------------------------------- /scripts/validate-communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/validate-communication.py -------------------------------------------------------------------------------- /scripts/validate_communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/validate_communication.py -------------------------------------------------------------------------------- /scripts/wait-concrete-service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/scripts/wait-concrete-service.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/test_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_access.py -------------------------------------------------------------------------------- /tests/test_active_learner_client_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_active_learner_client_wrapper.py -------------------------------------------------------------------------------- /tests/test_active_learner_server_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_active_learner_server_wrapper.py -------------------------------------------------------------------------------- /tests/test_annotate_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_annotate_wrapper.py -------------------------------------------------------------------------------- /tests/test_comm_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_comm_container.py -------------------------------------------------------------------------------- /tests/test_feedback_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_feedback_wrapper.py -------------------------------------------------------------------------------- /tests/test_fetch_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_fetch_wrapper.py -------------------------------------------------------------------------------- /tests/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_helper.py -------------------------------------------------------------------------------- /tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_inspect.py -------------------------------------------------------------------------------- /tests/test_mem_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_mem_io.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_redis_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_redis_io.py -------------------------------------------------------------------------------- /tests/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_repr.py -------------------------------------------------------------------------------- /tests/test_results_server_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_results_server_wrapper.py -------------------------------------------------------------------------------- /tests/test_search_proxy_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_search_proxy_wrapper.py -------------------------------------------------------------------------------- /tests/test_search_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_search_wrapper.py -------------------------------------------------------------------------------- /tests/test_simple_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_simple_comm.py -------------------------------------------------------------------------------- /tests/test_store_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_store_wrapper.py -------------------------------------------------------------------------------- /tests/test_summarization_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_summarization_wrapper.py -------------------------------------------------------------------------------- /tests/test_thrift_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_thrift_factory.py -------------------------------------------------------------------------------- /tests/test_tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_tokenization.py -------------------------------------------------------------------------------- /tests/test_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_twitter.py -------------------------------------------------------------------------------- /tests/test_unnone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_unnone.py -------------------------------------------------------------------------------- /tests/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_uuid.py -------------------------------------------------------------------------------- /tests/test_validate_communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/test_validate_communication.py -------------------------------------------------------------------------------- /tests/testdata/a/b/simple_1.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/a/b/simple_1.concrete -------------------------------------------------------------------------------- /tests/testdata/a/c/simple_2.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/a/c/simple_2.concrete -------------------------------------------------------------------------------- /tests/testdata/a/c/simple_3.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/a/c/simple_3.concrete -------------------------------------------------------------------------------- /tests/testdata/create_simple_communications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/create_simple_communications.py -------------------------------------------------------------------------------- /tests/testdata/les-deux-chandeliers-perline.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/les-deux-chandeliers-perline.tar.gz -------------------------------------------------------------------------------- /tests/testdata/les-deux-chandeliers.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/les-deux-chandeliers.concrete -------------------------------------------------------------------------------- /tests/testdata/les-deux-chandeliers.concrete.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/les-deux-chandeliers.concrete.tar.gz -------------------------------------------------------------------------------- /tests/testdata/les-deux-chandeliers.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/les-deux-chandeliers.tar.gz -------------------------------------------------------------------------------- /tests/testdata/les-deux-chandeliers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/les-deux-chandeliers.txt -------------------------------------------------------------------------------- /tests/testdata/serif_dog-bites-man.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/serif_dog-bites-man.concrete -------------------------------------------------------------------------------- /tests/testdata/serif_les-deux.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/serif_les-deux.tar.gz -------------------------------------------------------------------------------- /tests/testdata/serif_les-deux_concatenated.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/serif_les-deux_concatenated.concrete -------------------------------------------------------------------------------- /tests/testdata/simple.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple.tar -------------------------------------------------------------------------------- /tests/testdata/simple.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple.tar.bz2 -------------------------------------------------------------------------------- /tests/testdata/simple.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple.tar.gz -------------------------------------------------------------------------------- /tests/testdata/simple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple.zip -------------------------------------------------------------------------------- /tests/testdata/simple_1.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_1.concrete -------------------------------------------------------------------------------- /tests/testdata/simple_1.concrete.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_1.concrete.bz2 -------------------------------------------------------------------------------- /tests/testdata/simple_1.concrete.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_1.concrete.gz -------------------------------------------------------------------------------- /tests/testdata/simple_1_and_truncated.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_1_and_truncated.tar.gz -------------------------------------------------------------------------------- /tests/testdata/simple_2.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_2.concrete -------------------------------------------------------------------------------- /tests/testdata/simple_3.concrete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_3.concrete -------------------------------------------------------------------------------- /tests/testdata/simple_concatenated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_concatenated -------------------------------------------------------------------------------- /tests/testdata/simple_concatenated.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_concatenated.bz2 -------------------------------------------------------------------------------- /tests/testdata/simple_concatenated.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_concatenated.gz -------------------------------------------------------------------------------- /tests/testdata/simple_nested.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_nested.tar -------------------------------------------------------------------------------- /tests/testdata/simple_nested.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/simple_nested.zip -------------------------------------------------------------------------------- /tests/testdata/truncated.comm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/truncated.comm -------------------------------------------------------------------------------- /tests/testdata/truncated.comm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/truncated.comm.gz -------------------------------------------------------------------------------- /tests/testdata/tweets.bad-line-unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.bad-line-unicode.json -------------------------------------------------------------------------------- /tests/testdata/tweets.bad-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.bad-line.json -------------------------------------------------------------------------------- /tests/testdata/tweets.deleted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.deleted.json -------------------------------------------------------------------------------- /tests/testdata/tweets.invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.invalid.json -------------------------------------------------------------------------------- /tests/testdata/tweets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.json -------------------------------------------------------------------------------- /tests/testdata/tweets.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.json.gz -------------------------------------------------------------------------------- /tests/testdata/tweets.json.incomplete.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.json.incomplete.gz -------------------------------------------------------------------------------- /tests/testdata/tweets.unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tests/testdata/tweets.unicode.json -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hltcoe/concrete-python/HEAD/tox.ini --------------------------------------------------------------------------------