Metadata-Version: 2.4
Name: teacs
Version: 0.0.2
Summary: Convert text from one file format to another
Author-email: Riain Ó Tuathail <rotuathail01@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: python-docx==1.2.0
Requires-Dist: google-auth-oauthlib==1.3.0
Requires-Dist: google-api-python-client==2.193.0
Requires-Dist: google-auth-httplib2==0.3.1
Requires-Dist: lxml==6.0.2
Dynamic: license-file

# Téacs

Package for converting text between file formats. 

## INSTALLING

How to install Téacs.

```bash
pip install teacs
```

## USING

```py 
from teacs import convert_format

src: str = 'docs'
dest: str = 'docx'
data: str = '[GOOGLE DOCS DOCUMENT ID]'
google_login_data: dict = {...}

# additional arguments are passed into kwargs
result = convert_format(src, dest, data, google_login=google_login_data)
```

