Metadata-Version: 2.1
Name: airtime
Version: 1.0.0
Summary: A package for analyzing transcripts
Home-page: https://github.com/jcontd/airtime
Author: Jana M. Perkins
Author-email: mailroom@jcontd.com
License: GNU Affero General Public License v3
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE

[![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-brightgreen.svg)](https://www.gnu.org/licenses/agpl-3.0)
![Version](https://img.shields.io/badge/version-v1.0.0-blue)

# Airtime

This package contains Python scripts for analyzing meeting transcripts from Zoom and Microsoft Teams meetings. The scripts read the transcript files, calculate spoken word totals for each speaker, and print out the analyzed results.

The intended purpose of this package is to allow users to determine what percentage of a given meeting was allocated to which speaker(s), with the goal of fostering better collaborative environments among teams in future meetings.

## Version

The latest version of this package is v1.0.0.

## Installation and requirements

```
pip install airtime
```

This package uses only the Python standard library.
No external dependencies are required to run these scripts.

## Usage

After installing the package, it can be used as follows:

- For analyzing transcripts from Zoom meetings:

```
from airtime import zoom_analzyer

zoom_analzyer.analyze_zoom_transcript("transcript.txt")
```

**Note**: recent releases of Zoom will output several transcript formats, but only one of these formats will preserve the speaker names which are essential to this analysis. To access the required transcript format, *before the meeting ends*, navigate to Captions > View full transcript > Save transcript.

&nbsp;
&nbsp;

- For analyzing transcripts from Microsoft Teams meetings:

```
from airtime import teams_analzyer

teams_analzyer.analyze_teams_transcript("transcript.vtt")
```


## Output
These scripts print:

- Meeting totals (total words and total speakers)
- Speaker totals (total words per speaker and their contributed percentage to the meeting total)

Example output:

```
MEETING TOTALS
- 1,000 words
- 2 speaker(s)

SPEAKER TOTALS
- Holmes: 900 words (90.0% of meeting)
- Watson: 100 words (10.0% of meeting)
```

## Contributing

Contributions to this package are welcome, and especially in the form of introducing additional transcript formats from other services (e.g., Google Meet). Please open an issue to discuss your idea or submit a Pull Request.

## License

This package is licensed under the terms of the GNU Affero General Public License (GNU AGPL).

## Contact information

Jana M. Perkins, the developer of this package, can be reached via [Twitter (@jcontd)](https://twitter.com/jcontd) or the contact information on her [website](https://jcontd.com).

## Citation

Perkins, J. M. (2023). Airtime. github.com/jcontd/airtime
