Metadata-Version: 2.1
Name: openspeechcorpus
Version: 0.0.3
Summary: The CLI for perform actions over the Open Speech Corpus
Home-page: https://github.com/open-speech-org/openspeechcorpus-cli
Author: contraslash S.A.S.
Author-email: ma0@contraslash.com
License: MIT
Project-URL: Bug Reports, https://github.com/open-speech-org/openspeechcorpus-cli/issues
Project-URL: Source, https://github.com/open-speech-org/openspeechcorpus-cli
Project-URL: Contraslash, https://contraslash.com/
Description: # Open Speech Corpus CLI
        
        This repository contains the code required to download audiodata from [openspeechcorpus.com](http://openspeechcorpus.contraslash.com)
        
        Open Speech Corpus is composed by far for three subcorpuses:
        
        - Tales: A crowdsourced corpus based on reading of latin american short tales
        - Aphasia: A crowdsourced corpus based in words categorized in 4 levels of difficulty
        - Isolated words: A crowdsourced corpus based in isolated words
        
        
        To download files from the Tales Project use
        
        ```bash
        ops  \
            --output_folder tales/ \
            --output_file tales.txt  \
            --corpus tales
        ```
        
        To download files from the Isolated Words Project use
        
        ```bash
        ops  \
            --output_folder isolated_words/ \
            --output_file isolated_words.txt  \
            --corpus words
        ```
        
        
        To download files from the Aphasia Project use
        
        ```bash
        ops  \
            --output_folder aphasia/ \
            --output_file aphasia.txt  \
            --corpus aphasia
        ```
        
        By default the page size is 500, to modify it use the args `--from` and `--to` i.e:
        
        ```bash
        ops  \
            --from 500 \
            --to 1000 \
            --output_folder aphasia/ \
            --output_file aphasia.txt  \
            --corpus aphasia
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
