Metadata-Version: 2.1
Name: picotalk
Version: 0.0.23
Summary: Simple voice call tool.
Author-email: "T. Kramer" <code@tkramer.ch>
License: AGPL-3.0-or-later
Project-URL: Homepage, https://codeberg.org/tok/picotalk
Project-URL: Repository, https://codeberg.org/tok/picotalk
Project-URL: Issue Tracker, https://codeberg.org/tok/picotalk/issues
Keywords: cmos,cell,characterization,vlsi,asic
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Communications :: Conferencing
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: pyaudio
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: pynacl

<!--
SPDX-FileCopyrightText: 2022 Thomas Kramer

SPDX-License-Identifier: CC-BY-SA-4.0
-->

## Install on Debian

Install prerequisites:
```sh
sudo apt install python3-pyaudio python3-numpy python3-scipy python3-aiohttp python3-nacl
```

For the server only the following is necessary
```sh
sudo apt install python3-numpy python3-nacl
```

Optionally install `uvloop` for higher performance:
```sh
sudo apt install python3-uvloop
```

## Run the client

```sh
python3 picotalk-client.py -s my.server.com -r mySecretRoom
```

## Run the server
```sh
python3 picotalk-server.py # Use --uvloop to use uvloop.
```
