aprsd 1.0.0__py3-none-any.whl → 3.4.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. aprsd/__init__.py +6 -4
  2. aprsd/cli_helper.py +151 -0
  3. aprsd/client/__init__.py +13 -0
  4. aprsd/client/aprsis.py +132 -0
  5. aprsd/client/base.py +105 -0
  6. aprsd/client/drivers/__init__.py +0 -0
  7. aprsd/client/drivers/aprsis.py +224 -0
  8. aprsd/client/drivers/fake.py +73 -0
  9. aprsd/client/drivers/kiss.py +119 -0
  10. aprsd/client/factory.py +88 -0
  11. aprsd/client/fake.py +48 -0
  12. aprsd/client/kiss.py +103 -0
  13. aprsd/client/stats.py +38 -0
  14. aprsd/cmds/__init__.py +0 -0
  15. aprsd/cmds/completion.py +22 -0
  16. aprsd/cmds/dev.py +162 -0
  17. aprsd/cmds/fetch_stats.py +156 -0
  18. aprsd/cmds/healthcheck.py +86 -0
  19. aprsd/cmds/list_plugins.py +319 -0
  20. aprsd/cmds/listen.py +230 -0
  21. aprsd/cmds/send_message.py +174 -0
  22. aprsd/cmds/server.py +142 -0
  23. aprsd/cmds/webchat.py +681 -0
  24. aprsd/conf/__init__.py +56 -0
  25. aprsd/conf/client.py +131 -0
  26. aprsd/conf/common.py +302 -0
  27. aprsd/conf/log.py +65 -0
  28. aprsd/conf/opts.py +80 -0
  29. aprsd/conf/plugin_common.py +191 -0
  30. aprsd/conf/plugin_email.py +105 -0
  31. aprsd/exception.py +13 -0
  32. aprsd/log/__init__.py +0 -0
  33. aprsd/log/log.py +138 -0
  34. aprsd/main.py +104 -867
  35. aprsd/messaging.py +4 -0
  36. aprsd/packets/__init__.py +12 -0
  37. aprsd/packets/collector.py +56 -0
  38. aprsd/packets/core.py +823 -0
  39. aprsd/packets/log.py +143 -0
  40. aprsd/packets/packet_list.py +116 -0
  41. aprsd/packets/seen_list.py +54 -0
  42. aprsd/packets/tracker.py +109 -0
  43. aprsd/packets/watch_list.py +122 -0
  44. aprsd/plugin.py +475 -284
  45. aprsd/plugin_utils.py +86 -0
  46. aprsd/plugins/__init__.py +0 -0
  47. aprsd/plugins/email.py +709 -0
  48. aprsd/plugins/fortune.py +61 -0
  49. aprsd/plugins/location.py +179 -0
  50. aprsd/plugins/notify.py +61 -0
  51. aprsd/plugins/ping.py +31 -0
  52. aprsd/plugins/time.py +115 -0
  53. aprsd/plugins/version.py +31 -0
  54. aprsd/plugins/weather.py +405 -0
  55. aprsd/stats/__init__.py +20 -0
  56. aprsd/stats/app.py +49 -0
  57. aprsd/stats/collector.py +38 -0
  58. aprsd/threads/__init__.py +11 -0
  59. aprsd/threads/aprsd.py +119 -0
  60. aprsd/threads/keep_alive.py +124 -0
  61. aprsd/threads/log_monitor.py +121 -0
  62. aprsd/threads/registry.py +56 -0
  63. aprsd/threads/rx.py +354 -0
  64. aprsd/threads/stats.py +44 -0
  65. aprsd/threads/tx.py +255 -0
  66. aprsd/utils/__init__.py +163 -0
  67. aprsd/utils/counter.py +51 -0
  68. aprsd/utils/json.py +80 -0
  69. aprsd/utils/objectstore.py +123 -0
  70. aprsd/utils/ring_buffer.py +40 -0
  71. aprsd/utils/trace.py +180 -0
  72. aprsd/web/__init__.py +0 -0
  73. aprsd/web/admin/__init__.py +0 -0
  74. aprsd/web/admin/static/css/index.css +84 -0
  75. aprsd/web/admin/static/css/prism.css +4 -0
  76. aprsd/web/admin/static/css/tabs.css +35 -0
  77. aprsd/web/admin/static/images/Untitled.png +0 -0
  78. aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
  79. aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
  80. aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
  81. aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
  82. aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
  83. aprsd/web/admin/static/js/charts.js +235 -0
  84. aprsd/web/admin/static/js/echarts.js +465 -0
  85. aprsd/web/admin/static/js/logs.js +26 -0
  86. aprsd/web/admin/static/js/main.js +231 -0
  87. aprsd/web/admin/static/js/prism.js +12 -0
  88. aprsd/web/admin/static/js/send-message.js +114 -0
  89. aprsd/web/admin/static/js/tabs.js +28 -0
  90. aprsd/web/admin/templates/index.html +196 -0
  91. aprsd/web/chat/static/css/chat.css +115 -0
  92. aprsd/web/chat/static/css/index.css +66 -0
  93. aprsd/web/chat/static/css/style.css.map +1 -0
  94. aprsd/web/chat/static/css/tabs.css +41 -0
  95. aprsd/web/chat/static/css/upstream/bootstrap.min.css +6 -0
  96. aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
  97. aprsd/web/chat/static/css/upstream/google-fonts.css +23 -0
  98. aprsd/web/chat/static/css/upstream/jquery-ui.css +1311 -0
  99. aprsd/web/chat/static/css/upstream/jquery.toast.css +28 -0
  100. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
  101. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
  102. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
  103. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
  104. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
  105. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
  106. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
  107. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  108. aprsd/web/chat/static/images/Untitled.png +0 -0
  109. aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
  110. aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
  111. aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
  112. aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
  113. aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
  114. aprsd/web/chat/static/images/globe.svg +3 -0
  115. aprsd/web/chat/static/js/gps.js +84 -0
  116. aprsd/web/chat/static/js/main.js +45 -0
  117. aprsd/web/chat/static/js/send-message.js +585 -0
  118. aprsd/web/chat/static/js/tabs.js +28 -0
  119. aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +7 -0
  120. aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +2 -0
  121. aprsd/web/chat/static/js/upstream/jquery-ui.min.js +13 -0
  122. aprsd/web/chat/static/js/upstream/jquery.toast.js +374 -0
  123. aprsd/web/chat/static/js/upstream/semantic.min.js +11 -0
  124. aprsd/web/chat/static/js/upstream/socket.io.min.js +7 -0
  125. aprsd/web/chat/templates/index.html +139 -0
  126. aprsd/wsgi.py +315 -0
  127. aprsd-3.4.1.dist-info/AUTHORS +13 -0
  128. aprsd-3.4.1.dist-info/LICENSE +175 -0
  129. aprsd-3.4.1.dist-info/METADATA +799 -0
  130. aprsd-3.4.1.dist-info/RECORD +134 -0
  131. {aprsd-1.0.0.dist-info → aprsd-3.4.1.dist-info}/WHEEL +1 -1
  132. aprsd-3.4.1.dist-info/entry_points.txt +8 -0
  133. aprsd/fake_aprs.py +0 -83
  134. aprsd/utils.py +0 -166
  135. aprsd-1.0.0.dist-info/AUTHORS +0 -6
  136. aprsd-1.0.0.dist-info/METADATA +0 -181
  137. aprsd-1.0.0.dist-info/RECORD +0 -13
  138. aprsd-1.0.0.dist-info/entry_points.txt +0 -4
  139. aprsd-1.0.0.dist-info/pbr.json +0 -1
  140. /aprsd/{fuzzyclock.py → utils/fuzzyclock.py} +0 -0
  141. {aprsd-1.0.0.dist-info → aprsd-3.4.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,799 @@
1
+ Metadata-Version: 2.1
2
+ Name: aprsd
3
+ Version: 3.4.1
4
+ Summary: APRSd is a APRS-IS server that can be used to connect to APRS-IS and send and receive APRS packets.
5
+ Author-email: Craig Lamparter <craig@craiger.org>, "Walter A. Boring IV" <waboring@hemna.com>, Emre Saglam <emresaglam@gmail.com>, Jason Martin <jhmartin@toger.us>, John <johng42@users.noreply.github.com>, Martiros Shakhzadyan <vrzh@vrzh.net>, Zoe Moore <zoenb@mailbox.org>, ranguli <hello@joshmurphy.ca>
6
+ Maintainer-email: Craig Lamparter <craig@craiger.org>, "Walter A. Boring IV" <waboring@hemna.com>
7
+ License:
8
+ Apache License
9
+ Version 2.0, January 2004
10
+ http://www.apache.org/licenses/
11
+
12
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
13
+
14
+ 1. Definitions.
15
+
16
+ "License" shall mean the terms and conditions for use, reproduction,
17
+ and distribution as defined by Sections 1 through 9 of this document.
18
+
19
+ "Licensor" shall mean the copyright owner or entity authorized by
20
+ the copyright owner that is granting the License.
21
+
22
+ "Legal Entity" shall mean the union of the acting entity and all
23
+ other entities that control, are controlled by, or are under common
24
+ control with that entity. For the purposes of this definition,
25
+ "control" means (i) the power, direct or indirect, to cause the
26
+ direction or management of such entity, whether by contract or
27
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
28
+ outstanding shares, or (iii) beneficial ownership of such entity.
29
+
30
+ "You" (or "Your") shall mean an individual or Legal Entity
31
+ exercising permissions granted by this License.
32
+
33
+ "Source" form shall mean the preferred form for making modifications,
34
+ including but not limited to software source code, documentation
35
+ source, and configuration files.
36
+
37
+ "Object" form shall mean any form resulting from mechanical
38
+ transformation or translation of a Source form, including but
39
+ not limited to compiled object code, generated documentation,
40
+ and conversions to other media types.
41
+
42
+ "Work" shall mean the work of authorship, whether in Source or
43
+ Object form, made available under the License, as indicated by a
44
+ copyright notice that is included in or attached to the work
45
+ (an example is provided in the Appendix below).
46
+
47
+ "Derivative Works" shall mean any work, whether in Source or Object
48
+ form, that is based on (or derived from) the Work and for which the
49
+ editorial revisions, annotations, elaborations, or other modifications
50
+ represent, as a whole, an original work of authorship. For the purposes
51
+ of this License, Derivative Works shall not include works that remain
52
+ separable from, or merely link (or bind by name) to the interfaces of,
53
+ the Work and Derivative Works thereof.
54
+
55
+ "Contribution" shall mean any work of authorship, including
56
+ the original version of the Work and any modifications or additions
57
+ to that Work or Derivative Works thereof, that is intentionally
58
+ submitted to Licensor for inclusion in the Work by the copyright owner
59
+ or by an individual or Legal Entity authorized to submit on behalf of
60
+ the copyright owner. For the purposes of this definition, "submitted"
61
+ means any form of electronic, verbal, or written communication sent
62
+ to the Licensor or its representatives, including but not limited to
63
+ communication on electronic mailing lists, source code control systems,
64
+ and issue tracking systems that are managed by, or on behalf of, the
65
+ Licensor for the purpose of discussing and improving the Work, but
66
+ excluding communication that is conspicuously marked or otherwise
67
+ designated in writing by the copyright owner as "Not a Contribution."
68
+
69
+ "Contributor" shall mean Licensor and any individual or Legal Entity
70
+ on behalf of whom a Contribution has been received by Licensor and
71
+ subsequently incorporated within the Work.
72
+
73
+ 2. Grant of Copyright License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ copyright license to reproduce, prepare Derivative Works of,
77
+ publicly display, publicly perform, sublicense, and distribute the
78
+ Work and such Derivative Works in Source or Object form.
79
+
80
+ 3. Grant of Patent License. Subject to the terms and conditions of
81
+ this License, each Contributor hereby grants to You a perpetual,
82
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
83
+ (except as stated in this section) patent license to make, have made,
84
+ use, offer to sell, sell, import, and otherwise transfer the Work,
85
+ where such license applies only to those patent claims licensable
86
+ by such Contributor that are necessarily infringed by their
87
+ Contribution(s) alone or by combination of their Contribution(s)
88
+ with the Work to which such Contribution(s) was submitted. If You
89
+ institute patent litigation against any entity (including a
90
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
91
+ or a Contribution incorporated within the Work constitutes direct
92
+ or contributory patent infringement, then any patent licenses
93
+ granted to You under this License for that Work shall terminate
94
+ as of the date such litigation is filed.
95
+
96
+ 4. Redistribution. You may reproduce and distribute copies of the
97
+ Work or Derivative Works thereof in any medium, with or without
98
+ modifications, and in Source or Object form, provided that You
99
+ meet the following conditions:
100
+
101
+ (a) You must give any other recipients of the Work or
102
+ Derivative Works a copy of this License; and
103
+
104
+ (b) You must cause any modified files to carry prominent notices
105
+ stating that You changed the files; and
106
+
107
+ (c) You must retain, in the Source form of any Derivative Works
108
+ that You distribute, all copyright, patent, trademark, and
109
+ attribution notices from the Source form of the Work,
110
+ excluding those notices that do not pertain to any part of
111
+ the Derivative Works; and
112
+
113
+ (d) If the Work includes a "NOTICE" text file as part of its
114
+ distribution, then any Derivative Works that You distribute must
115
+ include a readable copy of the attribution notices contained
116
+ within such NOTICE file, excluding those notices that do not
117
+ pertain to any part of the Derivative Works, in at least one
118
+ of the following places: within a NOTICE text file distributed
119
+ as part of the Derivative Works; within the Source form or
120
+ documentation, if provided along with the Derivative Works; or,
121
+ within a display generated by the Derivative Works, if and
122
+ wherever such third-party notices normally appear. The contents
123
+ of the NOTICE file are for informational purposes only and
124
+ do not modify the License. You may add Your own attribution
125
+ notices within Derivative Works that You distribute, alongside
126
+ or as an addendum to the NOTICE text from the Work, provided
127
+ that such additional attribution notices cannot be construed
128
+ as modifying the License.
129
+
130
+ You may add Your own copyright statement to Your modifications and
131
+ may provide additional or different license terms and conditions
132
+ for use, reproduction, or distribution of Your modifications, or
133
+ for any such Derivative Works as a whole, provided Your use,
134
+ reproduction, and distribution of the Work otherwise complies with
135
+ the conditions stated in this License.
136
+
137
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
138
+ any Contribution intentionally submitted for inclusion in the Work
139
+ by You to the Licensor shall be under the terms and conditions of
140
+ this License, without any additional terms or conditions.
141
+ Notwithstanding the above, nothing herein shall supersede or modify
142
+ the terms of any separate license agreement you may have executed
143
+ with Licensor regarding such Contributions.
144
+
145
+ 6. Trademarks. This License does not grant permission to use the trade
146
+ names, trademarks, service marks, or product names of the Licensor,
147
+ except as required for reasonable and customary use in describing the
148
+ origin of the Work and reproducing the content of the NOTICE file.
149
+
150
+ 7. Disclaimer of Warranty. Unless required by applicable law or
151
+ agreed to in writing, Licensor provides the Work (and each
152
+ Contributor provides its Contributions) on an "AS IS" BASIS,
153
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
154
+ implied, including, without limitation, any warranties or conditions
155
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
156
+ PARTICULAR PURPOSE. You are solely responsible for determining the
157
+ appropriateness of using or redistributing the Work and assume any
158
+ risks associated with Your exercise of permissions under this License.
159
+
160
+ 8. Limitation of Liability. In no event and under no legal theory,
161
+ whether in tort (including negligence), contract, or otherwise,
162
+ unless required by applicable law (such as deliberate and grossly
163
+ negligent acts) or agreed to in writing, shall any Contributor be
164
+ liable to You for damages, including any direct, indirect, special,
165
+ incidental, or consequential damages of any character arising as a
166
+ result of this License or out of the use or inability to use the
167
+ Work (including but not limited to damages for loss of goodwill,
168
+ work stoppage, computer failure or malfunction, or any and all
169
+ other commercial damages or losses), even if such Contributor
170
+ has been advised of the possibility of such damages.
171
+
172
+ 9. Accepting Warranty or Additional Liability. While redistributing
173
+ the Work or Derivative Works thereof, You may choose to offer,
174
+ and charge a fee for, acceptance of support, warranty, indemnity,
175
+ or other liability obligations and/or rights consistent with this
176
+ License. However, in accepting such obligations, You may act only
177
+ on Your own behalf and on Your sole responsibility, not on behalf
178
+ of any other Contributor, and only if You agree to indemnify,
179
+ defend, and hold each Contributor harmless for any liability
180
+ incurred by, or claims asserted against, such Contributor by reason
181
+ of your accepting any such warranty or additional liability.
182
+
183
+ Project-URL: Homepage, https://github.com/craigerl/aprsd
184
+ Project-URL: Bug Reports, https://github.com/craigerl/aprsd/issues
185
+ Project-URL: Source, https://github.com/craigerl/aprsd
186
+ Keywords: aprs,aprs-is,aprsd,aprsd-server,aprsd-client,aprsd-socket,aprsd-socket-server,aprsd-socket-client
187
+ Classifier: Development Status :: 5 - Production/Stable
188
+ Classifier: Environment :: Console
189
+ Classifier: Intended Audience :: Developers
190
+ Classifier: Intended Audience :: End Users/Desktop
191
+ Classifier: Intended Audience :: Information Technology
192
+ Classifier: Topic :: Communications :: Ham Radio
193
+ Classifier: Topic :: Internet
194
+ Classifier: Programming Language :: Python :: 3 :: Only
195
+ Classifier: Programming Language :: Python :: 3
196
+ Classifier: Programming Language :: Python :: 3.8
197
+ Classifier: Programming Language :: Python :: 3.9
198
+ Classifier: Programming Language :: Python :: 3.10
199
+ Classifier: Programming Language :: Python :: 3.11
200
+ Requires-Python: >=3.8
201
+ Description-Content-Type: text/x-rst
202
+ License-File: LICENSE
203
+ License-File: AUTHORS
204
+ Requires-Dist: aprslib==0.7.2
205
+ Requires-Dist: attrs==24.2.0
206
+ Requires-Dist: ax253==0.1.5.post1
207
+ Requires-Dist: beautifulsoup4==4.12.3
208
+ Requires-Dist: bidict==0.23.1
209
+ Requires-Dist: bitarray==2.9.2
210
+ Requires-Dist: blinker==1.8.2
211
+ Requires-Dist: certifi==2024.8.30
212
+ Requires-Dist: charset-normalizer==3.3.2
213
+ Requires-Dist: click==8.1.7
214
+ Requires-Dist: click-params==0.5.0
215
+ Requires-Dist: commonmark==0.9.1
216
+ Requires-Dist: dataclasses==0.6
217
+ Requires-Dist: dataclasses-json==0.6.7
218
+ Requires-Dist: debtcollector==3.0.0
219
+ Requires-Dist: deprecated==1.2.14
220
+ Requires-Dist: dnspython==2.6.1
221
+ Requires-Dist: eventlet==0.37.0
222
+ Requires-Dist: flask==3.0.3
223
+ Requires-Dist: flask-httpauth==4.8.0
224
+ Requires-Dist: flask-socketio==5.3.7
225
+ Requires-Dist: geographiclib==2.0
226
+ Requires-Dist: geopy==2.4.1
227
+ Requires-Dist: gevent==24.2.1
228
+ Requires-Dist: greenlet==3.1.0
229
+ Requires-Dist: h11==0.14.0
230
+ Requires-Dist: idna==3.10
231
+ Requires-Dist: imapclient==3.0.1
232
+ Requires-Dist: importlib-metadata==8.5.0
233
+ Requires-Dist: itsdangerous==2.2.0
234
+ Requires-Dist: jinja2==3.1.4
235
+ Requires-Dist: kiss3==8.0.0
236
+ Requires-Dist: loguru==0.7.2
237
+ Requires-Dist: markupsafe==2.1.5
238
+ Requires-Dist: marshmallow==3.22.0
239
+ Requires-Dist: mypy-extensions==1.0.0
240
+ Requires-Dist: netaddr==1.3.0
241
+ Requires-Dist: oslo-config==9.6.0
242
+ Requires-Dist: oslo-i18n==6.4.0
243
+ Requires-Dist: packaging==24.1
244
+ Requires-Dist: pbr==6.1.0
245
+ Requires-Dist: pluggy==1.5.0
246
+ Requires-Dist: pygments==2.18.0
247
+ Requires-Dist: pyserial==3.5
248
+ Requires-Dist: pyserial-asyncio==0.6
249
+ Requires-Dist: python-engineio==4.9.1
250
+ Requires-Dist: python-socketio==5.11.4
251
+ Requires-Dist: pytz==2024.2
252
+ Requires-Dist: pyyaml==6.0.2
253
+ Requires-Dist: requests==2.32.3
254
+ Requires-Dist: rfc3986==2.0.0
255
+ Requires-Dist: rich==12.6.0
256
+ Requires-Dist: rush==2021.4.0
257
+ Requires-Dist: shellingham==1.5.4
258
+ Requires-Dist: simple-websocket==1.0.0
259
+ Requires-Dist: six==1.16.0
260
+ Requires-Dist: soupsieve==2.6
261
+ Requires-Dist: stevedore==5.3.0
262
+ Requires-Dist: tabulate==0.9.0
263
+ Requires-Dist: thesmuggler==1.0.1
264
+ Requires-Dist: typing-extensions==4.12.2
265
+ Requires-Dist: typing-inspect==0.9.0
266
+ Requires-Dist: tzlocal==5.2
267
+ Requires-Dist: update-checker==0.18.0
268
+ Requires-Dist: urllib3==2.2.3
269
+ Requires-Dist: validators==0.22.0
270
+ Requires-Dist: werkzeug==3.0.4
271
+ Requires-Dist: wrapt==1.16.0
272
+ Requires-Dist: wsproto==1.2.0
273
+ Requires-Dist: zipp==3.20.2
274
+ Requires-Dist: zope-event==5.0
275
+ Requires-Dist: zope-interface==7.0.3
276
+ Provides-Extra: dev
277
+ Requires-Dist: add-trailing-comma==3.1.0; extra == "dev"
278
+ Requires-Dist: alabaster==1.0.0; extra == "dev"
279
+ Requires-Dist: autoflake==1.5.3; extra == "dev"
280
+ Requires-Dist: babel==2.16.0; extra == "dev"
281
+ Requires-Dist: black==24.8.0; extra == "dev"
282
+ Requires-Dist: build==1.2.2; extra == "dev"
283
+ Requires-Dist: cachetools==5.5.0; extra == "dev"
284
+ Requires-Dist: certifi==2024.8.30; extra == "dev"
285
+ Requires-Dist: cfgv==3.4.0; extra == "dev"
286
+ Requires-Dist: chardet==5.2.0; extra == "dev"
287
+ Requires-Dist: charset-normalizer==3.3.2; extra == "dev"
288
+ Requires-Dist: check-manifest==0.49; extra == "dev"
289
+ Requires-Dist: click==8.1.7; extra == "dev"
290
+ Requires-Dist: colorama==0.4.6; extra == "dev"
291
+ Requires-Dist: commonmark==0.9.1; extra == "dev"
292
+ Requires-Dist: configargparse==1.7; extra == "dev"
293
+ Requires-Dist: coverage[toml]==7.6.1; extra == "dev"
294
+ Requires-Dist: distlib==0.3.8; extra == "dev"
295
+ Requires-Dist: docutils==0.21.2; extra == "dev"
296
+ Requires-Dist: exceptiongroup==1.2.2; extra == "dev"
297
+ Requires-Dist: filelock==3.16.0; extra == "dev"
298
+ Requires-Dist: fixit==2.1.0; extra == "dev"
299
+ Requires-Dist: flake8==7.1.1; extra == "dev"
300
+ Requires-Dist: gray==0.15.0; extra == "dev"
301
+ Requires-Dist: identify==2.6.1; extra == "dev"
302
+ Requires-Dist: idna==3.10; extra == "dev"
303
+ Requires-Dist: imagesize==1.4.1; extra == "dev"
304
+ Requires-Dist: iniconfig==2.0.0; extra == "dev"
305
+ Requires-Dist: isort==5.13.2; extra == "dev"
306
+ Requires-Dist: jinja2==3.1.4; extra == "dev"
307
+ Requires-Dist: libcst==1.4.0; extra == "dev"
308
+ Requires-Dist: m2r==0.3.1; extra == "dev"
309
+ Requires-Dist: markupsafe==2.1.5; extra == "dev"
310
+ Requires-Dist: mccabe==0.7.0; extra == "dev"
311
+ Requires-Dist: mistune==0.8.4; extra == "dev"
312
+ Requires-Dist: moreorless==0.4.0; extra == "dev"
313
+ Requires-Dist: mypy==1.11.2; extra == "dev"
314
+ Requires-Dist: mypy-extensions==1.0.0; extra == "dev"
315
+ Requires-Dist: nodeenv==1.9.1; extra == "dev"
316
+ Requires-Dist: packaging==24.1; extra == "dev"
317
+ Requires-Dist: pathspec==0.12.1; extra == "dev"
318
+ Requires-Dist: pep8-naming==0.14.1; extra == "dev"
319
+ Requires-Dist: pip-tools==7.4.1; extra == "dev"
320
+ Requires-Dist: platformdirs==4.3.3; extra == "dev"
321
+ Requires-Dist: pluggy==1.5.0; extra == "dev"
322
+ Requires-Dist: pre-commit==3.8.0; extra == "dev"
323
+ Requires-Dist: pycodestyle==2.12.1; extra == "dev"
324
+ Requires-Dist: pyflakes==3.2.0; extra == "dev"
325
+ Requires-Dist: pygments==2.18.0; extra == "dev"
326
+ Requires-Dist: pyproject-api==1.7.1; extra == "dev"
327
+ Requires-Dist: pyproject-hooks==1.1.0; extra == "dev"
328
+ Requires-Dist: pytest==8.3.3; extra == "dev"
329
+ Requires-Dist: pytest-cov==5.0.0; extra == "dev"
330
+ Requires-Dist: pyupgrade==3.17.0; extra == "dev"
331
+ Requires-Dist: pyyaml==6.0.2; extra == "dev"
332
+ Requires-Dist: requests==2.32.3; extra == "dev"
333
+ Requires-Dist: rich==12.6.0; extra == "dev"
334
+ Requires-Dist: snowballstemmer==2.2.0; extra == "dev"
335
+ Requires-Dist: sphinx==8.0.2; extra == "dev"
336
+ Requires-Dist: sphinxcontrib-applehelp==2.0.0; extra == "dev"
337
+ Requires-Dist: sphinxcontrib-devhelp==2.0.0; extra == "dev"
338
+ Requires-Dist: sphinxcontrib-htmlhelp==2.1.0; extra == "dev"
339
+ Requires-Dist: sphinxcontrib-jsmath==1.0.1; extra == "dev"
340
+ Requires-Dist: sphinxcontrib-qthelp==2.0.0; extra == "dev"
341
+ Requires-Dist: sphinxcontrib-serializinghtml==2.0.0; extra == "dev"
342
+ Requires-Dist: tokenize-rt==6.0.0; extra == "dev"
343
+ Requires-Dist: toml==0.10.2; extra == "dev"
344
+ Requires-Dist: tomli==2.0.1; extra == "dev"
345
+ Requires-Dist: tox==4.18.1; extra == "dev"
346
+ Requires-Dist: trailrunner==1.4.0; extra == "dev"
347
+ Requires-Dist: typing-extensions==4.12.2; extra == "dev"
348
+ Requires-Dist: unify==0.5; extra == "dev"
349
+ Requires-Dist: untokenize==0.1.1; extra == "dev"
350
+ Requires-Dist: urllib3==2.2.3; extra == "dev"
351
+ Requires-Dist: virtualenv==20.26.4; extra == "dev"
352
+ Requires-Dist: wheel==0.44.0; extra == "dev"
353
+
354
+ ===============================================
355
+ APRSD - Ham radio APRS-IS Message plugin server
356
+ ===============================================
357
+
358
+ KM6LYW and WB4BOR
359
+ ____________________
360
+
361
+ |pypi| |pytest| |versions| |slack| |issues| |commit| |imports| |down|
362
+
363
+
364
+ `APRSD <http://github.com/craigerl/aprsd>`_ is a Ham radio `APRS <http://aprs.org>`_ message command gateway built on python.
365
+
366
+
367
+ What is APRSD
368
+ =============
369
+ APRSD is a python application for interacting with the APRS network and providing
370
+ APRS services for HAM radio operators.
371
+
372
+ APRSD currently has 4 main commands to use.
373
+ * server - Connect to APRS and listen/respond to APRS messages
374
+ * webchat - web based chat program over APRS
375
+ * send-message - Send a message to a callsign via APRS_IS.
376
+ * listen - Listen to packets on the APRS-IS Network based on FILTER.
377
+
378
+ Each of those commands can connect to the APRS-IS network if internet connectivity
379
+ is available. If internet is not available, then APRS can be configured to talk
380
+ to a TCP KISS TNC for radio connectivity.
381
+
382
+ Please `read the docs`_ to learn more!
383
+
384
+ APRSD Overview Diagram
385
+ ======================
386
+
387
+ .. image:: https://raw.githubusercontent.com/craigerl/aprsd/master/docs/_static/aprsd_overview.svg?sanitize=true
388
+
389
+ Typical use case
390
+ ================
391
+
392
+ APRSD's typical use case is that of providing an APRS wide service to all HAM
393
+ radio operators. For example the callsign 'REPEAT' on the APRS network is actually
394
+ an instance of APRSD that can provide a list of HAM repeaters in the area of the
395
+ callsign that sent the message.
396
+
397
+
398
+ Ham radio operator using an APRS enabled HAM radio sends a message to check
399
+ the weather. An APRS message is sent, and then picked up by APRSD. The
400
+ APRS packet is decoded, and the message is sent through the list of plugins
401
+ for processing. For example, the WeatherPlugin picks up the message, fetches the weather
402
+ for the area around the user who sent the request, and then responds with
403
+ the weather conditions in that area. Also includes a watch list of HAM
404
+ callsigns to look out for. The watch list can notify you when a HAM callsign
405
+ in the list is seen and now available to message on the APRS network.
406
+
407
+
408
+
409
+ Installation
410
+ =============
411
+
412
+ To install ``aprsd``, use Pip:
413
+
414
+ ``pip install aprsd``
415
+
416
+ Example usage
417
+ ==============
418
+
419
+ ``aprsd -h``
420
+
421
+ Help
422
+ ====
423
+ ::
424
+
425
+
426
+ └─> aprsd -h
427
+ Usage: aprsd [OPTIONS] COMMAND [ARGS]...
428
+
429
+ Options:
430
+ --version Show the version and exit.
431
+ -h, --help Show this message and exit.
432
+
433
+ Commands:
434
+ check-version Check this version against the latest in pypi.org.
435
+ completion Show the shell completion code
436
+ dev Development type subcommands
437
+ fetch-stats Fetch stats from a APRSD admin web interface.
438
+ healthcheck Check the health of the running aprsd server.
439
+ list-extensions List the built in plugins available to APRSD.
440
+ list-plugins List the built in plugins available to APRSD.
441
+ listen Listen to packets on the APRS-IS Network based on FILTER.
442
+ sample-config Generate a sample Config file from aprsd and all...
443
+ send-message Send a message to a callsign via APRS_IS.
444
+ server Start the aprsd server gateway process.
445
+ version Show the APRSD version.
446
+ webchat Web based HAM Radio chat program!
447
+
448
+
449
+ Commands
450
+ ========
451
+
452
+ Configuration
453
+ =============
454
+ This command outputs a sample config yml formatted block that you can edit
455
+ and use to pass in to ``aprsd`` with ``-c``. By default aprsd looks in ``~/.config/aprsd/aprsd.yml``
456
+
457
+ ``aprsd sample-config``
458
+
459
+ ::
460
+
461
+ └─> aprsd sample-config
462
+ ...
463
+
464
+ server
465
+ ======
466
+
467
+ This is the main server command that will listen to APRS-IS servers and
468
+ look for incomming commands to the callsign configured in the config file
469
+
470
+ ::
471
+
472
+ └─[$] > aprsd server --help
473
+ Usage: aprsd server [OPTIONS]
474
+
475
+ Start the aprsd server gateway process.
476
+
477
+ Options:
478
+ --loglevel [CRITICAL|ERROR|WARNING|INFO|DEBUG]
479
+ The log level to use for aprsd.log
480
+ [default: INFO]
481
+ -c, --config TEXT The aprsd config file to use for options.
482
+ [default:
483
+ /Users/i530566/.config/aprsd/aprsd.yml]
484
+ --quiet Don't log to stdout
485
+ -f, --flush Flush out all old aged messages on disk.
486
+ [default: False]
487
+ -h, --help Show this message and exit.
488
+
489
+ └─> aprsd server
490
+ Load config
491
+ 12/07/2021 03:16:17 PM MainThread INFO APRSD is up to date server.py:51
492
+ 12/07/2021 03:16:17 PM MainThread INFO APRSD Started version: 2.5.6 server.py:52
493
+ 12/07/2021 03:16:17 PM MainThread INFO Using CONFIG values: server.py:55
494
+ 12/07/2021 03:16:17 PM MainThread INFO ham.callsign = WB4BOR server.py:60
495
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.login = WB4BOR-12 server.py:60
496
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.password = XXXXXXXXXXXXXXXXXXX server.py:58
497
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.host = noam.aprs2.net server.py:60
498
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.port = 14580 server.py:60
499
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.logfile = /tmp/aprsd.log server.py:60
500
+
501
+
502
+ Current list of built-in plugins
503
+ ======================================
504
+
505
+ ::
506
+
507
+ └─> aprsd list-plugins
508
+ 🐍 APRSD Built-in Plugins 🐍
509
+ ┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
510
+ ┃ Plugin Name ┃ Info ┃ Type ┃ Plugin Path ┃
511
+ ┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
512
+ │ AVWXWeatherPlugin │ AVWX weather of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.AVWXWeatherPlugin │
513
+ │ EmailPlugin │ Send and Receive email │ RegexCommand │ aprsd.plugins.email.EmailPlugin │
514
+ │ FortunePlugin │ Give me a fortune │ RegexCommand │ aprsd.plugins.fortune.FortunePlugin │
515
+ │ LocationPlugin │ Where in the world is a CALLSIGN's last GPS beacon? │ RegexCommand │ aprsd.plugins.location.LocationPlugin │
516
+ │ NotifySeenPlugin │ Notify me when a CALLSIGN is recently seen on APRS-IS │ WatchList │ aprsd.plugins.notify.NotifySeenPlugin │
517
+ │ OWMWeatherPlugin │ OpenWeatherMap weather of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.OWMWeatherPlugin │
518
+ │ PingPlugin │ reply with a Pong! │ RegexCommand │ aprsd.plugins.ping.PingPlugin │
519
+ │ QueryPlugin │ APRSD Owner command to query messages in the MsgTrack │ RegexCommand │ aprsd.plugins.query.QueryPlugin │
520
+ │ TimeOWMPlugin │ Current time of GPS beacon's timezone. Uses OpenWeatherMap │ RegexCommand │ aprsd.plugins.time.TimeOWMPlugin │
521
+ │ TimePlugin │ What is the current local time. │ RegexCommand │ aprsd.plugins.time.TimePlugin │
522
+ │ USMetarPlugin │ USA only METAR of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.USMetarPlugin │
523
+ │ USWeatherPlugin │ Provide USA only weather of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.USWeatherPlugin │
524
+ │ VersionPlugin │ What is the APRSD Version │ RegexCommand │ aprsd.plugins.version.VersionPlugin │
525
+ └───────────────────┴────────────────────────────────────────────────────────────┴──────────────┴─────────────────────────────────────────┘
526
+
527
+
528
+ Pypi.org APRSD Installable Plugin Packages
529
+
530
+ Install any of the following plugins with 'pip install <Plugin Package Name>'
531
+ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
532
+ ┃ Plugin Package Name ┃ Description ┃ Version ┃ Released ┃ Installed? ┃
533
+ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
534
+ │ 📂 aprsd-stock-plugin │ Ham Radio APRSD Plugin for fetching stock quotes │ 0.1.3 │ Dec 2, 2022 │ No │
535
+ │ 📂 aprsd-sentry-plugin │ Ham radio APRSD plugin that does.... │ 0.1.2 │ Dec 2, 2022 │ No │
536
+ │ 📂 aprsd-timeopencage-plugin │ APRSD plugin for fetching time based on GPS location │ 0.1.0 │ Dec 2, 2022 │ No │
537
+ │ 📂 aprsd-weewx-plugin │ HAM Radio APRSD that reports weather from a weewx weather station. │ 0.1.4 │ Dec 7, 2021 │ Yes │
538
+ │ 📂 aprsd-repeat-plugins │ APRSD Plugins for the REPEAT service │ 1.0.12 │ Dec 2, 2022 │ No │
539
+ │ 📂 aprsd-telegram-plugin │ Ham Radio APRS APRSD plugin for Telegram IM service │ 0.1.3 │ Dec 2, 2022 │ No │
540
+ │ 📂 aprsd-twitter-plugin │ Python APRSD plugin to send tweets │ 0.3.0 │ Dec 7, 2021 │ No │
541
+ │ 📂 aprsd-slack-plugin │ Amateur radio APRS daemon which listens for messages and responds │ 1.0.5 │ Dec 18, 2022 │ No │
542
+ └──────────────────────────────┴────────────────────────────────────────────────────────────────────┴─────────┴──────────────┴────────────┘
543
+
544
+
545
+ 🐍 APRSD Installed 3rd party Plugins 🐍
546
+ ┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
547
+ ┃ Package Name ┃ Plugin Name ┃ Version ┃ Type ┃ Plugin Path ┃
548
+ ┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
549
+ │ aprsd-weewx-plugin │ WeewxMQTTPlugin │ 1.0 │ RegexCommand │ aprsd_weewx_plugin.weewx.WeewxMQTTPlugin │
550
+ └────────────────────┴─────────────────┴─────────┴──────────────┴──────────────────────────────────────────┘
551
+
552
+
553
+
554
+ send-message
555
+ ============
556
+
557
+ This command is typically used for development to send another aprsd instance
558
+ test messages
559
+
560
+ ::
561
+
562
+ └─[$] > aprsd send-message -h
563
+ Usage: aprsd send-message [OPTIONS] TOCALLSIGN COMMAND...
564
+
565
+ Send a message to a callsign via APRS_IS.
566
+
567
+ Options:
568
+ --loglevel [CRITICAL|ERROR|WARNING|INFO|DEBUG]
569
+ The log level to use for aprsd.log
570
+ [default: INFO]
571
+ -c, --config TEXT The aprsd config file to use for options.
572
+ [default:
573
+ /Users/i530566/.config/aprsd/aprsd.yml]
574
+ --quiet Don't log to stdout
575
+ --aprs-login TEXT What callsign to send the message from.
576
+ [env var: APRS_LOGIN]
577
+ --aprs-password TEXT the APRS-IS password for APRS_LOGIN [env
578
+ var: APRS_PASSWORD]
579
+ -n, --no-ack Don't wait for an ack, just sent it to APRS-
580
+ IS and bail. [default: False]
581
+ -w, --wait-response Wait for a response to the message?
582
+ [default: False]
583
+ --raw TEXT Send a raw message. Implies --no-ack
584
+ -h, --help Show this message and exit.
585
+
586
+
587
+ SEND EMAIL (radio to smtp server)
588
+ =================================
589
+
590
+ ::
591
+
592
+ Received message______________
593
+ Raw : KM6XXX>APY400,WIDE1-1,qAO,KM6XXX-1::KM6XXX-9 :-user@host.com test new shortcuts global, radio to pc{29
594
+ From : KM6XXX
595
+ Message : -user@host.com test new shortcuts global, radio to pc
596
+ Msg number : 29
597
+
598
+ Sending Email_________________
599
+ To : user@host.com
600
+ Subject : KM6XXX
601
+ Body : test new shortcuts global, radio to pc
602
+
603
+ Sending ack __________________ Tx(3)
604
+ Raw : KM6XXX-9>APRS::KM6XXX :ack29
605
+ To : KM6XXX
606
+ Ack number : 29
607
+
608
+
609
+ RECEIVE EMAIL (imap server to radio)
610
+ ====================================
611
+
612
+ ::
613
+
614
+ Sending message_______________ 6(Tx3)
615
+ Raw : KM6XXX-9>APRS::KM6XXX :-somebody@gmail.com email from internet to radio{6
616
+ To : KM6XXX
617
+ Message : -somebody@gmail.com email from internet to radio
618
+
619
+ Received message______________
620
+ Raw : KM6XXX>APY400,WIDE1-1,qAO,KM6XXX-1::KM6XXX-9 :ack6
621
+ From : KM6XXX
622
+ Message : ack6
623
+ Msg number : 0
624
+
625
+
626
+ LOCATION
627
+ ========
628
+
629
+ ::
630
+
631
+ Received Message _______________
632
+ Raw : KM6XXX-6>APRS,TCPIP*,qAC,T2CAEAST::KM6XXX-14:location{2
633
+ From : KM6XXX-6
634
+ Message : location
635
+ Msg number : 2
636
+ Received Message _______________ Complete
637
+
638
+ Sending Message _______________
639
+ Raw : KM6XXX-14>APRS::KM6XXX-6 :KM6XXX-6: 8 Miles E Auburn CA 0' 0,-120.93584 1873.7h ago{2
640
+ To : KM6XXX-6
641
+ Message : KM6XXX-6: 8 Miles E Auburn CA 0' 0,-120.93584 1873.7h ago
642
+ Msg number : 2
643
+ Sending Message _______________ Complete
644
+
645
+ Sending ack _______________
646
+ Raw : KM6XXX-14>APRS::KM6XXX-6 :ack2
647
+ To : KM6XXX-6
648
+ Ack : 2
649
+ Sending ack _______________ Complete
650
+
651
+ AND... ping, fortune, time.....
652
+
653
+
654
+ Web Admin Interface
655
+ ===================
656
+ To start the web admin interface, You have to install gunicorn in your virtualenv that already has aprsd installed.
657
+
658
+ ::
659
+
660
+ source <path to APRSD's virtualenv>/bin/activate
661
+ pip install gunicorn
662
+ gunicorn --bind 0.0.0.0:8080 "aprsd.wsgi:app"
663
+
664
+ The web admin interface will be running on port 8080 on the local machine. http://localhost:8080
665
+
666
+
667
+
668
+ Development
669
+ ===========
670
+
671
+ * ``git clone git@github.com:craigerl/aprsd.git``
672
+ * ``cd aprsd``
673
+ * ``make``
674
+
675
+ Workflow
676
+ ========
677
+
678
+ While working aprsd, The workflow is as follows:
679
+
680
+ * Checkout a new branch to work on by running
681
+
682
+ ``git checkout -b mybranch``
683
+
684
+ * Make your changes to the code
685
+ * Run Tox with the following options:
686
+
687
+ - ``tox -epep8``
688
+ - ``tox -efmt``
689
+ - ``tox -p``
690
+
691
+ * Commit your changes. This will run the pre-commit hooks which does checks too
692
+
693
+ ``git commit``
694
+
695
+ * Once you are done with all of your commits, then push up the branch to
696
+ github with:
697
+
698
+ ``git push -u origin mybranch``
699
+
700
+ * Create a pull request from your branch so github tests can run and we can do
701
+ a code review.
702
+
703
+
704
+ Release
705
+ =======
706
+
707
+ To do release to pypi:
708
+
709
+ * Tag release with:
710
+
711
+ ``git tag -v1.XX -m "New release"``
712
+
713
+ * Push release tag:
714
+
715
+ ``git push origin master --tags``
716
+
717
+ * Do a test build and verify build is valid by running:
718
+
719
+ ``make build``
720
+
721
+ * Once twine is happy, upload release to pypi:
722
+
723
+ ``make upload``
724
+
725
+
726
+ Docker Container
727
+ ================
728
+
729
+ Building
730
+ ========
731
+
732
+ There are 2 versions of the container Dockerfile that can be used.
733
+ The main Dockerfile, which is for building the official release container
734
+ based off of the pip install version of aprsd and the Dockerfile-dev,
735
+ which is used for building a container based off of a git branch of
736
+ the repo.
737
+
738
+ Official Build
739
+ ==============
740
+
741
+ ``docker build -t hemna6969/aprsd:latest .``
742
+
743
+ Development Build
744
+ =================
745
+
746
+ ``docker build -t hemna6969/aprsd:latest -f Dockerfile-dev .``
747
+
748
+
749
+ Running the container
750
+ =====================
751
+
752
+ There is a ``docker-compose.yml`` file in the ``docker/`` directory
753
+ that can be used to run your container. To provide the container
754
+ an ``aprsd.conf`` configuration file, change your
755
+ ``docker-compose.yml`` as shown below:
756
+
757
+ ::
758
+
759
+ volumes:
760
+ - $HOME/.config/aprsd:/config
761
+
762
+ To install plugins at container start time, pass in a list of
763
+ comma-separated list of plugins on PyPI using the ``APRSD_PLUGINS``
764
+ environment variable in the ``docker-compose.yml`` file. Note that
765
+ version constraints may also be provided. For example:
766
+
767
+ ::
768
+
769
+ environment:
770
+ - APRSD_PLUGINS=aprsd-slack-plugin>=1.0.2,aprsd-twitter-plugin
771
+
772
+
773
+ .. badges
774
+
775
+ .. |pypi| image:: https://badge.fury.io/py/aprsd.svg
776
+ :target: https://badge.fury.io/py/aprsd
777
+
778
+ .. |pytest| image:: https://github.com/craigerl/aprsd/workflows/python/badge.svg
779
+ :target: https://github.com/craigerl/aprsd/actions
780
+
781
+ .. |versions| image:: https://img.shields.io/pypi/pyversions/aprsd.svg
782
+ :target: https://pypi.org/pypi/aprsd
783
+
784
+ .. |slack| image:: https://img.shields.io/badge/slack-@hemna/aprsd-blue.svg?logo=slack
785
+ :target: https://hemna.slack.com/app_redirect?channel=C01KQSCP5RP
786
+
787
+ .. |imports| image:: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336
788
+ :target: https://timothycrosley.github.io/isort/
789
+
790
+ .. |issues| image:: https://img.shields.io/github/issues/craigerl/aprsd
791
+
792
+ .. |commit| image:: https://img.shields.io/github/last-commit/craigerl/aprsd
793
+
794
+ .. |down| image:: https://static.pepy.tech/personalized-badge/aprsd?period=month&units=international_system&left_color=black&right_color=orange&left_text=Downloads
795
+ :target: https://pepy.tech/project/aprsd
796
+
797
+ .. links
798
+ .. _read the docs:
799
+ https://aprsd.readthedocs.io