Skip to content

thelovebug/dapnet-sendpage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dapnet-sendpage

The following libraries are used in the script, so you may need to install stuff.

import argparse
import json
import requests
import time

I've tried to avoid forcing the end-user to create a virtual environment for this, but I'll put the documentation in if it's needed.

Usage

python sendpage.py --calls "C4LLS1GNS" "Message" [--send]

Detail

Callsigns/Aliases

--calls "C4LLS1GNS"

... is one or more callsigns or aliases, comma-separated, preferably without spaces between. If you do that, you can omit the "double quotes".

# Good examples
--calls "M7TLB, MI7DJT, M0RWV"
--calls M7TLB,MI7DJT,M0RWV

# Bad examples
--calls M7TLB, MI7DJT,   M0RWV

# the above example is bad because it's not one single block of callsigns

Message

"Message"

... is a quote-qualified message of up to, I suppose 300 characters. If you must use a double quotation mark in your message text, put a \ before it.

# Good examples

"This is my amazingly cool message, ain't it great?"
"The XYL told me today, \"No more radios!\" - help!"

# Bad examples

"The XYL told me today, "No more radios!" - help!"

# This is a bad example as there are unescaped quotes within the message.  Perhaps use single quotes?

The trigger

--send

If you don't specify this particular switch - which is best placed at the end of the command - then it will show you what it's going to do, but won't actually send the messages. This is great if you want to preview who the message is going to, or how many individual calls your message is going to be broken into.

Setting up the config file

If you haven't already got a sendpage.json file in place, then make a copy of sendpage.json.example and fill in the details with your own.

{
    "user": {
        "mycall": "m1abc"                       // This is your own callsign, case-insensitive
    },
    "dapnetapi": {
        "user": "m1abc",                        // This is the username and password for your SUBSCRIBER account
        "pass": "0123456789ABCDEF0123",         // with DAPNET - the one you log into the hampager.de website with
        "txarea": "all",
        "api": "https://hampager.de/api/calls"  // You can leave this, and the line above alone if you wish
    },
    "aliases": {
        "friends": "M4TE1,M4TE2,M4TE3,M4TE4",   // See below for an explanation of the Aliases functionality
        "enemies": "F0E1,F0E2,F0E3,F0E4"
    }
}

Aliases

The concept of Aliases within this script is very easy. You create a new key in your sendpage.json file under the "aliases": node, like in the example above where you have two already specified (that won't work as-is, by the way) - friends and enemies.

The value for each of those keys determines what callsigns you want to be represented by that key. So, in our example, friends is equivalent to the callsigns "F0E1,F0E2,F0E3,F0E4". Thus, if you specify friends as one of the callsigns when you run this script, it will replace friends with F0E1,F0E2,F0E3,F0E4.

Thus, if you do this:

python sendpage.py --calls "M7TLB,FRIENDS" "Hello there!" --send

The end result would effectively be this:

python sendpage.py --calls "M7TLB,F0E1,F0E2,F0E3,F0E4" "Hello there!" --send

I suppose it's a way of "group texting", but only in one direction.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages