Metadata-Version: 1.1
Name: aTXT
Version: v1.0.2
Summary: A Data Mining Tool For Extract Text From Files
Home-page: https://github.com/d555/aTXT
Author: Jonathan S. Prieto
Author-email: prieto.jona@gmail.com
License: MIT
Download-URL: https://github.com/d555/aTXT/
Description: aTXT.py
        =======
        
        | A Data Mining Tool For Extract Text From Files.
        | Supported Files:
        
        -  PDF
        -  DOCX
        -  DOC
        -  DAT
        
        Meta
        ----
        
        -  Author: Jonathan Prieto
        -  Email: prieto.jona@gmail.com
        -  Notes: Have feedback? Please send me an email. This project is in
           development.
        
        Installing
        ----------
        
        ::
        
                pip install aTXT
        
        Usage
        -----
        
        ::
        
                aTXT --help 
        
        Console shows:
        
        ::
        
            A friendly Extractor of Text for Data Mining
        
            Usage:
                aTXT
                aTXT -i
                aTXT <file> [-v|--verbose] [-uo] [--to <to>]
                aTXT [--from <from>] [--to <to>] <file>... [-uo] [-v|--verbose]
                aTXT --path <path> --depth <depth> [--to <to>] [-v|--verbose] 
                        [-a|--all] [-p|--pdf] [-d|--doc] [-x|--docx] [-t|--dat] [-uo]
                aTXT [-h|--help] 
        
            Arguments:
                <file>            If <from> is none, file should be in current directory.
                --path <path>     Process the folder with path <path> and all files inside.
        
            General Options:
                -i                Launch the (GUI) Graphical Interface.
                --from <from>     Process files from path <from>. [default: ./]
                --to <to>         Save all (*.txt) files to path <to> if <file> appears. [default: ./]
                --depth <depth>   Depth for trasvering path using depth-first-search
                                  for --path option. [default: 1]
                -a, --all         Convert all allowed formats (pdf, docx, doc, dat).
                -p, --pdf         Convert files with extension (*.pdf|*.PDF).
                -x, --docx        Convert files with extension (*.docx|*.DOCX).
                -d, --doc         Convert files with extension (*.doc|*.DOC).
                -t, --dat         Convert files with extension (*.dat|*.DAT).
                -u                Use uppercase for all text processed.
                -o                Overwrite if *.txt file version yet exists.
                -h, --help        Print this help.
                -V, --version     Print current version installed.
                -v, --verbose     Print error messages.
        
        
Keywords: text txt doc docx pdf doc2txt docx2txt pdf2txt convert
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Spanish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Requires: docopt
Requires: scandir
Requires: lxml
Requires: PySide
Requires: kitchen
