Metadata-Version: 2.4
Name: wyatts-telegraph
Version: 1.0.2
Author-email: Wyatt Brashear <admin@wyattb.dev>
License: MIT
Requires-Python: >=3.10
Requires-Dist: build>=1.5.0
Requires-Dist: flask>=3.1.3
Requires-Dist: pynput>=1.8.2
Requires-Dist: requests>=2.34.2
Requires-Dist: wdsf>=1.0.3
Description-Content-Type: text/markdown

# Telegraph: Morse code style messaging system
## What is it?
Telegraph is a messaging system that uses a keypress to morse-code translation system in order to allow you to send
messages or "telegrams" to other users.
## AI Use
As per usual in my projects, due to my history AI is generally avoided. However in the rare event that it was used, it
will be pointed out in the code.
## How To Use It
To use Telegraph, you will need to install the necessary dependencies and run the program. Once running, you can send
telegrams to other users by pressing the appropriate keys on your keyboard. The program will translate your keypresses
into morse code and send the telegram to the recipient.
## How To Use It
To use it, you must create two files:
```
auth.wdsf #Authetication Details
code_config.wdsf #Code stuff you can download this from the repo or make ur own
```
### Auth.wdsf

```text
#WDSF1.0
username|USERNAME
server|server_url_here
```
The password is auto generated for you. it will be saved at runtime
### Code_config.wdsf
it looks like this:
```text
#WDSF1.0
#Hey this is a custom data file i created a while back called WDSF!
#Its like JSON but mine so its better.
#You need one of these files in the same working directory as your telegraph instance.
#This file is pretty much just responsible for the mappings and please do configure at will!
#This particular file is for American Morse Code.
#Some of the code is modified for compatibility with the parser
!LIST|A:
1
0
!LIST_END
```

