aprsd 1.0.0__py3-none-any.whl → 3.4.2__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 (140) 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 +228 -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 +231 -0
  21. aprsd/cmds/send_message.py +171 -0
  22. aprsd/cmds/server.py +137 -0
  23. aprsd/cmds/webchat.py +674 -0
  24. aprsd/conf/__init__.py +56 -0
  25. aprsd/conf/client.py +131 -0
  26. aprsd/conf/common.py +301 -0
  27. aprsd/conf/log.py +65 -0
  28. aprsd/conf/opts.py +80 -0
  29. aprsd/conf/plugin_common.py +182 -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/packets/__init__.py +20 -0
  36. aprsd/packets/collector.py +79 -0
  37. aprsd/packets/core.py +823 -0
  38. aprsd/packets/log.py +161 -0
  39. aprsd/packets/packet_list.py +110 -0
  40. aprsd/packets/seen_list.py +49 -0
  41. aprsd/packets/tracker.py +103 -0
  42. aprsd/packets/watch_list.py +119 -0
  43. aprsd/plugin.py +474 -284
  44. aprsd/plugin_utils.py +86 -0
  45. aprsd/plugins/__init__.py +0 -0
  46. aprsd/plugins/email.py +709 -0
  47. aprsd/plugins/fortune.py +61 -0
  48. aprsd/plugins/location.py +179 -0
  49. aprsd/plugins/notify.py +61 -0
  50. aprsd/plugins/ping.py +31 -0
  51. aprsd/plugins/time.py +115 -0
  52. aprsd/plugins/version.py +31 -0
  53. aprsd/plugins/weather.py +405 -0
  54. aprsd/stats/__init__.py +20 -0
  55. aprsd/stats/app.py +49 -0
  56. aprsd/stats/collector.py +37 -0
  57. aprsd/threads/__init__.py +11 -0
  58. aprsd/threads/aprsd.py +119 -0
  59. aprsd/threads/keep_alive.py +131 -0
  60. aprsd/threads/log_monitor.py +121 -0
  61. aprsd/threads/registry.py +56 -0
  62. aprsd/threads/rx.py +354 -0
  63. aprsd/threads/stats.py +44 -0
  64. aprsd/threads/tx.py +255 -0
  65. aprsd/utils/__init__.py +218 -0
  66. aprsd/utils/counter.py +51 -0
  67. aprsd/utils/json.py +80 -0
  68. aprsd/utils/objectstore.py +123 -0
  69. aprsd/utils/ring_buffer.py +40 -0
  70. aprsd/utils/trace.py +180 -0
  71. aprsd/web/__init__.py +0 -0
  72. aprsd/web/admin/__init__.py +0 -0
  73. aprsd/web/admin/static/css/index.css +84 -0
  74. aprsd/web/admin/static/css/prism.css +4 -0
  75. aprsd/web/admin/static/css/tabs.css +35 -0
  76. aprsd/web/admin/static/images/Untitled.png +0 -0
  77. aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
  78. aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
  79. aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
  80. aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
  81. aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
  82. aprsd/web/admin/static/js/charts.js +235 -0
  83. aprsd/web/admin/static/js/echarts.js +465 -0
  84. aprsd/web/admin/static/js/logs.js +26 -0
  85. aprsd/web/admin/static/js/main.js +231 -0
  86. aprsd/web/admin/static/js/prism.js +12 -0
  87. aprsd/web/admin/static/js/send-message.js +114 -0
  88. aprsd/web/admin/static/js/tabs.js +28 -0
  89. aprsd/web/admin/templates/index.html +196 -0
  90. aprsd/web/chat/static/css/chat.css +115 -0
  91. aprsd/web/chat/static/css/index.css +66 -0
  92. aprsd/web/chat/static/css/style.css.map +1 -0
  93. aprsd/web/chat/static/css/tabs.css +41 -0
  94. aprsd/web/chat/static/css/upstream/bootstrap.min.css +6 -0
  95. aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
  96. aprsd/web/chat/static/css/upstream/google-fonts.css +23 -0
  97. aprsd/web/chat/static/css/upstream/jquery-ui.css +1311 -0
  98. aprsd/web/chat/static/css/upstream/jquery.toast.css +28 -0
  99. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
  100. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
  101. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
  102. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
  103. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
  104. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
  105. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
  106. aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  107. aprsd/web/chat/static/images/Untitled.png +0 -0
  108. aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
  109. aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
  110. aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
  111. aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
  112. aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
  113. aprsd/web/chat/static/images/globe.svg +3 -0
  114. aprsd/web/chat/static/js/gps.js +84 -0
  115. aprsd/web/chat/static/js/main.js +45 -0
  116. aprsd/web/chat/static/js/send-message.js +585 -0
  117. aprsd/web/chat/static/js/tabs.js +28 -0
  118. aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +7 -0
  119. aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +2 -0
  120. aprsd/web/chat/static/js/upstream/jquery-ui.min.js +13 -0
  121. aprsd/web/chat/static/js/upstream/jquery.toast.js +374 -0
  122. aprsd/web/chat/static/js/upstream/semantic.min.js +11 -0
  123. aprsd/web/chat/static/js/upstream/socket.io.min.js +7 -0
  124. aprsd/web/chat/templates/index.html +139 -0
  125. aprsd/wsgi.py +315 -0
  126. aprsd-3.4.2.dist-info/AUTHORS +13 -0
  127. aprsd-3.4.2.dist-info/LICENSE +175 -0
  128. aprsd-3.4.2.dist-info/METADATA +793 -0
  129. aprsd-3.4.2.dist-info/RECORD +133 -0
  130. {aprsd-1.0.0.dist-info → aprsd-3.4.2.dist-info}/WHEEL +1 -1
  131. aprsd-3.4.2.dist-info/entry_points.txt +8 -0
  132. aprsd/fake_aprs.py +0 -83
  133. aprsd/utils.py +0 -166
  134. aprsd-1.0.0.dist-info/AUTHORS +0 -6
  135. aprsd-1.0.0.dist-info/METADATA +0 -181
  136. aprsd-1.0.0.dist-info/RECORD +0 -13
  137. aprsd-1.0.0.dist-info/entry_points.txt +0 -4
  138. aprsd-1.0.0.dist-info/pbr.json +0 -1
  139. /aprsd/{fuzzyclock.py → utils/fuzzyclock.py} +0 -0
  140. {aprsd-1.0.0.dist-info → aprsd-3.4.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,793 @@
1
+ Metadata-Version: 2.1
2
+ Name: aprsd
3
+ Version: 3.4.2
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==3.0.0
210
+ Requires-Dist: blinker==1.8.2
211
+ Requires-Dist: certifi==2024.8.30
212
+ Requires-Dist: charset-normalizer==3.4.0
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: flask==3.0.3
221
+ Requires-Dist: flask-httpauth==4.8.0
222
+ Requires-Dist: flask-socketio==5.4.1
223
+ Requires-Dist: geographiclib==2.0
224
+ Requires-Dist: geopy==2.4.1
225
+ Requires-Dist: h11==0.14.0
226
+ Requires-Dist: idna==3.10
227
+ Requires-Dist: imapclient==3.0.1
228
+ Requires-Dist: importlib-metadata==8.5.0
229
+ Requires-Dist: itsdangerous==2.2.0
230
+ Requires-Dist: jinja2==3.1.4
231
+ Requires-Dist: kiss3==8.0.0
232
+ Requires-Dist: loguru==0.7.2
233
+ Requires-Dist: markupsafe==3.0.2
234
+ Requires-Dist: marshmallow==3.23.0
235
+ Requires-Dist: mypy-extensions==1.0.0
236
+ Requires-Dist: netaddr==1.3.0
237
+ Requires-Dist: oslo-config==9.6.0
238
+ Requires-Dist: oslo-i18n==6.4.0
239
+ Requires-Dist: packaging==24.1
240
+ Requires-Dist: pbr==6.1.0
241
+ Requires-Dist: pluggy==1.5.0
242
+ Requires-Dist: pygments==2.18.0
243
+ Requires-Dist: pyserial==3.5
244
+ Requires-Dist: pyserial-asyncio==0.6
245
+ Requires-Dist: python-engineio==4.10.1
246
+ Requires-Dist: python-socketio==5.11.4
247
+ Requires-Dist: pytz==2024.2
248
+ Requires-Dist: pyyaml==6.0.2
249
+ Requires-Dist: requests==2.32.3
250
+ Requires-Dist: rfc3986==2.0.0
251
+ Requires-Dist: rich==12.6.0
252
+ Requires-Dist: rush==2021.4.0
253
+ Requires-Dist: shellingham==1.5.4
254
+ Requires-Dist: simple-websocket==1.1.0
255
+ Requires-Dist: six==1.16.0
256
+ Requires-Dist: soupsieve==2.6
257
+ Requires-Dist: stevedore==5.3.0
258
+ Requires-Dist: tabulate==0.9.0
259
+ Requires-Dist: thesmuggler==1.0.1
260
+ Requires-Dist: typing-extensions==4.12.2
261
+ Requires-Dist: typing-inspect==0.9.0
262
+ Requires-Dist: tzlocal==5.2
263
+ Requires-Dist: update-checker==0.18.0
264
+ Requires-Dist: urllib3==2.2.3
265
+ Requires-Dist: validators==0.22.0
266
+ Requires-Dist: werkzeug==3.0.4
267
+ Requires-Dist: wrapt==1.16.0
268
+ Requires-Dist: wsproto==1.2.0
269
+ Requires-Dist: zipp==3.20.2
270
+ Provides-Extra: dev
271
+ Requires-Dist: add-trailing-comma==3.1.0; extra == "dev"
272
+ Requires-Dist: alabaster==1.0.0; extra == "dev"
273
+ Requires-Dist: autoflake==1.5.3; extra == "dev"
274
+ Requires-Dist: babel==2.16.0; extra == "dev"
275
+ Requires-Dist: black==24.10.0; extra == "dev"
276
+ Requires-Dist: build==1.2.2.post1; extra == "dev"
277
+ Requires-Dist: cachetools==5.5.0; extra == "dev"
278
+ Requires-Dist: certifi==2024.8.30; extra == "dev"
279
+ Requires-Dist: cfgv==3.4.0; extra == "dev"
280
+ Requires-Dist: chardet==5.2.0; extra == "dev"
281
+ Requires-Dist: charset-normalizer==3.4.0; extra == "dev"
282
+ Requires-Dist: check-manifest==0.50; extra == "dev"
283
+ Requires-Dist: click==8.1.7; extra == "dev"
284
+ Requires-Dist: colorama==0.4.6; extra == "dev"
285
+ Requires-Dist: commonmark==0.9.1; extra == "dev"
286
+ Requires-Dist: configargparse==1.7; extra == "dev"
287
+ Requires-Dist: coverage[toml]==7.6.3; extra == "dev"
288
+ Requires-Dist: distlib==0.3.9; extra == "dev"
289
+ Requires-Dist: docutils==0.21.2; extra == "dev"
290
+ Requires-Dist: exceptiongroup==1.2.2; extra == "dev"
291
+ Requires-Dist: filelock==3.16.1; extra == "dev"
292
+ Requires-Dist: fixit==2.1.0; extra == "dev"
293
+ Requires-Dist: flake8==7.1.1; extra == "dev"
294
+ Requires-Dist: gray==0.15.0; extra == "dev"
295
+ Requires-Dist: identify==2.6.1; extra == "dev"
296
+ Requires-Dist: idna==3.10; extra == "dev"
297
+ Requires-Dist: imagesize==1.4.1; extra == "dev"
298
+ Requires-Dist: iniconfig==2.0.0; extra == "dev"
299
+ Requires-Dist: isort==5.13.2; extra == "dev"
300
+ Requires-Dist: jinja2==3.1.4; extra == "dev"
301
+ Requires-Dist: libcst==1.5.0; extra == "dev"
302
+ Requires-Dist: m2r==0.3.1; extra == "dev"
303
+ Requires-Dist: markupsafe==3.0.2; extra == "dev"
304
+ Requires-Dist: mccabe==0.7.0; extra == "dev"
305
+ Requires-Dist: mistune==0.8.4; extra == "dev"
306
+ Requires-Dist: moreorless==0.4.0; extra == "dev"
307
+ Requires-Dist: mypy==1.12.0; extra == "dev"
308
+ Requires-Dist: mypy-extensions==1.0.0; extra == "dev"
309
+ Requires-Dist: nodeenv==1.9.1; extra == "dev"
310
+ Requires-Dist: packaging==24.1; extra == "dev"
311
+ Requires-Dist: pathspec==0.12.1; extra == "dev"
312
+ Requires-Dist: pep8-naming==0.14.1; extra == "dev"
313
+ Requires-Dist: pip-tools==7.4.1; extra == "dev"
314
+ Requires-Dist: platformdirs==4.3.6; extra == "dev"
315
+ Requires-Dist: pluggy==1.5.0; extra == "dev"
316
+ Requires-Dist: pre-commit==4.0.1; extra == "dev"
317
+ Requires-Dist: pycodestyle==2.12.1; extra == "dev"
318
+ Requires-Dist: pyflakes==3.2.0; extra == "dev"
319
+ Requires-Dist: pygments==2.18.0; extra == "dev"
320
+ Requires-Dist: pyproject-api==1.8.0; extra == "dev"
321
+ Requires-Dist: pyproject-hooks==1.2.0; extra == "dev"
322
+ Requires-Dist: pytest==8.3.3; extra == "dev"
323
+ Requires-Dist: pytest-cov==5.0.0; extra == "dev"
324
+ Requires-Dist: pyupgrade==3.18.0; extra == "dev"
325
+ Requires-Dist: pyyaml==6.0.2; extra == "dev"
326
+ Requires-Dist: requests==2.32.3; extra == "dev"
327
+ Requires-Dist: rich==12.6.0; extra == "dev"
328
+ Requires-Dist: snowballstemmer==2.2.0; extra == "dev"
329
+ Requires-Dist: sphinx==8.1.3; extra == "dev"
330
+ Requires-Dist: sphinxcontrib-applehelp==2.0.0; extra == "dev"
331
+ Requires-Dist: sphinxcontrib-devhelp==2.0.0; extra == "dev"
332
+ Requires-Dist: sphinxcontrib-htmlhelp==2.1.0; extra == "dev"
333
+ Requires-Dist: sphinxcontrib-jsmath==1.0.1; extra == "dev"
334
+ Requires-Dist: sphinxcontrib-qthelp==2.0.0; extra == "dev"
335
+ Requires-Dist: sphinxcontrib-serializinghtml==2.0.0; extra == "dev"
336
+ Requires-Dist: tokenize-rt==6.0.0; extra == "dev"
337
+ Requires-Dist: toml==0.10.2; extra == "dev"
338
+ Requires-Dist: tomli==2.0.2; extra == "dev"
339
+ Requires-Dist: tox==4.23.0; extra == "dev"
340
+ Requires-Dist: trailrunner==1.4.0; extra == "dev"
341
+ Requires-Dist: typing-extensions==4.12.2; extra == "dev"
342
+ Requires-Dist: unify==0.5; extra == "dev"
343
+ Requires-Dist: untokenize==0.1.1; extra == "dev"
344
+ Requires-Dist: urllib3==2.2.3; extra == "dev"
345
+ Requires-Dist: virtualenv==20.27.0; extra == "dev"
346
+ Requires-Dist: wheel==0.44.0; extra == "dev"
347
+
348
+ ===============================================
349
+ APRSD - Ham radio APRS-IS Message plugin server
350
+ ===============================================
351
+
352
+ KM6LYW and WB4BOR
353
+ ____________________
354
+
355
+ |pypi| |pytest| |versions| |slack| |issues| |commit| |imports| |down|
356
+
357
+
358
+ `APRSD <http://github.com/craigerl/aprsd>`_ is a Ham radio `APRS <http://aprs.org>`_ message command gateway built on python.
359
+
360
+
361
+ What is APRSD
362
+ =============
363
+ APRSD is a python application for interacting with the APRS network and providing
364
+ APRS services for HAM radio operators.
365
+
366
+ APRSD currently has 4 main commands to use.
367
+ * server - Connect to APRS and listen/respond to APRS messages
368
+ * webchat - web based chat program over APRS
369
+ * send-message - Send a message to a callsign via APRS_IS.
370
+ * listen - Listen to packets on the APRS-IS Network based on FILTER.
371
+
372
+ Each of those commands can connect to the APRS-IS network if internet connectivity
373
+ is available. If internet is not available, then APRS can be configured to talk
374
+ to a TCP KISS TNC for radio connectivity.
375
+
376
+ Please `read the docs`_ to learn more!
377
+
378
+ APRSD Overview Diagram
379
+ ======================
380
+
381
+ .. image:: https://raw.githubusercontent.com/craigerl/aprsd/master/docs/_static/aprsd_overview.svg?sanitize=true
382
+
383
+ Typical use case
384
+ ================
385
+
386
+ APRSD's typical use case is that of providing an APRS wide service to all HAM
387
+ radio operators. For example the callsign 'REPEAT' on the APRS network is actually
388
+ an instance of APRSD that can provide a list of HAM repeaters in the area of the
389
+ callsign that sent the message.
390
+
391
+
392
+ Ham radio operator using an APRS enabled HAM radio sends a message to check
393
+ the weather. An APRS message is sent, and then picked up by APRSD. The
394
+ APRS packet is decoded, and the message is sent through the list of plugins
395
+ for processing. For example, the WeatherPlugin picks up the message, fetches the weather
396
+ for the area around the user who sent the request, and then responds with
397
+ the weather conditions in that area. Also includes a watch list of HAM
398
+ callsigns to look out for. The watch list can notify you when a HAM callsign
399
+ in the list is seen and now available to message on the APRS network.
400
+
401
+
402
+
403
+ Installation
404
+ =============
405
+
406
+ To install ``aprsd``, use Pip:
407
+
408
+ ``pip install aprsd``
409
+
410
+ Example usage
411
+ ==============
412
+
413
+ ``aprsd -h``
414
+
415
+ Help
416
+ ====
417
+ ::
418
+
419
+
420
+ └─> aprsd -h
421
+ Usage: aprsd [OPTIONS] COMMAND [ARGS]...
422
+
423
+ Options:
424
+ --version Show the version and exit.
425
+ -h, --help Show this message and exit.
426
+
427
+ Commands:
428
+ check-version Check this version against the latest in pypi.org.
429
+ completion Show the shell completion code
430
+ dev Development type subcommands
431
+ fetch-stats Fetch stats from a APRSD admin web interface.
432
+ healthcheck Check the health of the running aprsd server.
433
+ list-extensions List the built in plugins available to APRSD.
434
+ list-plugins List the built in plugins available to APRSD.
435
+ listen Listen to packets on the APRS-IS Network based on FILTER.
436
+ sample-config Generate a sample Config file from aprsd and all...
437
+ send-message Send a message to a callsign via APRS_IS.
438
+ server Start the aprsd server gateway process.
439
+ version Show the APRSD version.
440
+ webchat Web based HAM Radio chat program!
441
+
442
+
443
+ Commands
444
+ ========
445
+
446
+ Configuration
447
+ =============
448
+ This command outputs a sample config yml formatted block that you can edit
449
+ and use to pass in to ``aprsd`` with ``-c``. By default aprsd looks in ``~/.config/aprsd/aprsd.yml``
450
+
451
+ ``aprsd sample-config``
452
+
453
+ ::
454
+
455
+ └─> aprsd sample-config
456
+ ...
457
+
458
+ server
459
+ ======
460
+
461
+ This is the main server command that will listen to APRS-IS servers and
462
+ look for incomming commands to the callsign configured in the config file
463
+
464
+ ::
465
+
466
+ └─[$] > aprsd server --help
467
+ Usage: aprsd server [OPTIONS]
468
+
469
+ Start the aprsd server gateway process.
470
+
471
+ Options:
472
+ --loglevel [CRITICAL|ERROR|WARNING|INFO|DEBUG]
473
+ The log level to use for aprsd.log
474
+ [default: INFO]
475
+ -c, --config TEXT The aprsd config file to use for options.
476
+ [default:
477
+ /Users/i530566/.config/aprsd/aprsd.yml]
478
+ --quiet Don't log to stdout
479
+ -f, --flush Flush out all old aged messages on disk.
480
+ [default: False]
481
+ -h, --help Show this message and exit.
482
+
483
+ └─> aprsd server
484
+ Load config
485
+ 12/07/2021 03:16:17 PM MainThread INFO APRSD is up to date server.py:51
486
+ 12/07/2021 03:16:17 PM MainThread INFO APRSD Started version: 2.5.6 server.py:52
487
+ 12/07/2021 03:16:17 PM MainThread INFO Using CONFIG values: server.py:55
488
+ 12/07/2021 03:16:17 PM MainThread INFO ham.callsign = WB4BOR server.py:60
489
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.login = WB4BOR-12 server.py:60
490
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.password = XXXXXXXXXXXXXXXXXXX server.py:58
491
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.host = noam.aprs2.net server.py:60
492
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.port = 14580 server.py:60
493
+ 12/07/2021 03:16:17 PM MainThread INFO aprs.logfile = /tmp/aprsd.log server.py:60
494
+
495
+
496
+ Current list of built-in plugins
497
+ ======================================
498
+
499
+ ::
500
+
501
+ └─> aprsd list-plugins
502
+ 🐍 APRSD Built-in Plugins 🐍
503
+ ┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
504
+ ┃ Plugin Name ┃ Info ┃ Type ┃ Plugin Path ┃
505
+ ┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
506
+ │ AVWXWeatherPlugin │ AVWX weather of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.AVWXWeatherPlugin │
507
+ │ EmailPlugin │ Send and Receive email │ RegexCommand │ aprsd.plugins.email.EmailPlugin │
508
+ │ FortunePlugin │ Give me a fortune │ RegexCommand │ aprsd.plugins.fortune.FortunePlugin │
509
+ │ LocationPlugin │ Where in the world is a CALLSIGN's last GPS beacon? │ RegexCommand │ aprsd.plugins.location.LocationPlugin │
510
+ │ NotifySeenPlugin │ Notify me when a CALLSIGN is recently seen on APRS-IS │ WatchList │ aprsd.plugins.notify.NotifySeenPlugin │
511
+ │ OWMWeatherPlugin │ OpenWeatherMap weather of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.OWMWeatherPlugin │
512
+ │ PingPlugin │ reply with a Pong! │ RegexCommand │ aprsd.plugins.ping.PingPlugin │
513
+ │ QueryPlugin │ APRSD Owner command to query messages in the MsgTrack │ RegexCommand │ aprsd.plugins.query.QueryPlugin │
514
+ │ TimeOWMPlugin │ Current time of GPS beacon's timezone. Uses OpenWeatherMap │ RegexCommand │ aprsd.plugins.time.TimeOWMPlugin │
515
+ │ TimePlugin │ What is the current local time. │ RegexCommand │ aprsd.plugins.time.TimePlugin │
516
+ │ USMetarPlugin │ USA only METAR of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.USMetarPlugin │
517
+ │ USWeatherPlugin │ Provide USA only weather of GPS Beacon location │ RegexCommand │ aprsd.plugins.weather.USWeatherPlugin │
518
+ │ VersionPlugin │ What is the APRSD Version │ RegexCommand │ aprsd.plugins.version.VersionPlugin │
519
+ └───────────────────┴────────────────────────────────────────────────────────────┴──────────────┴─────────────────────────────────────────┘
520
+
521
+
522
+ Pypi.org APRSD Installable Plugin Packages
523
+
524
+ Install any of the following plugins with 'pip install <Plugin Package Name>'
525
+ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
526
+ ┃ Plugin Package Name ┃ Description ┃ Version ┃ Released ┃ Installed? ┃
527
+ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
528
+ │ 📂 aprsd-stock-plugin │ Ham Radio APRSD Plugin for fetching stock quotes │ 0.1.3 │ Dec 2, 2022 │ No │
529
+ │ 📂 aprsd-sentry-plugin │ Ham radio APRSD plugin that does.... │ 0.1.2 │ Dec 2, 2022 │ No │
530
+ │ 📂 aprsd-timeopencage-plugin │ APRSD plugin for fetching time based on GPS location │ 0.1.0 │ Dec 2, 2022 │ No │
531
+ │ 📂 aprsd-weewx-plugin │ HAM Radio APRSD that reports weather from a weewx weather station. │ 0.1.4 │ Dec 7, 2021 │ Yes │
532
+ │ 📂 aprsd-repeat-plugins │ APRSD Plugins for the REPEAT service │ 1.0.12 │ Dec 2, 2022 │ No │
533
+ │ 📂 aprsd-telegram-plugin │ Ham Radio APRS APRSD plugin for Telegram IM service │ 0.1.3 │ Dec 2, 2022 │ No │
534
+ │ 📂 aprsd-twitter-plugin │ Python APRSD plugin to send tweets │ 0.3.0 │ Dec 7, 2021 │ No │
535
+ │ 📂 aprsd-slack-plugin │ Amateur radio APRS daemon which listens for messages and responds │ 1.0.5 │ Dec 18, 2022 │ No │
536
+ └──────────────────────────────┴────────────────────────────────────────────────────────────────────┴─────────┴──────────────┴────────────┘
537
+
538
+
539
+ 🐍 APRSD Installed 3rd party Plugins 🐍
540
+ ┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
541
+ ┃ Package Name ┃ Plugin Name ┃ Version ┃ Type ┃ Plugin Path ┃
542
+ ┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
543
+ │ aprsd-weewx-plugin │ WeewxMQTTPlugin │ 1.0 │ RegexCommand │ aprsd_weewx_plugin.weewx.WeewxMQTTPlugin │
544
+ └────────────────────┴─────────────────┴─────────┴──────────────┴──────────────────────────────────────────┘
545
+
546
+
547
+
548
+ send-message
549
+ ============
550
+
551
+ This command is typically used for development to send another aprsd instance
552
+ test messages
553
+
554
+ ::
555
+
556
+ └─[$] > aprsd send-message -h
557
+ Usage: aprsd send-message [OPTIONS] TOCALLSIGN COMMAND...
558
+
559
+ Send a message to a callsign via APRS_IS.
560
+
561
+ Options:
562
+ --loglevel [CRITICAL|ERROR|WARNING|INFO|DEBUG]
563
+ The log level to use for aprsd.log
564
+ [default: INFO]
565
+ -c, --config TEXT The aprsd config file to use for options.
566
+ [default:
567
+ /Users/i530566/.config/aprsd/aprsd.yml]
568
+ --quiet Don't log to stdout
569
+ --aprs-login TEXT What callsign to send the message from.
570
+ [env var: APRS_LOGIN]
571
+ --aprs-password TEXT the APRS-IS password for APRS_LOGIN [env
572
+ var: APRS_PASSWORD]
573
+ -n, --no-ack Don't wait for an ack, just sent it to APRS-
574
+ IS and bail. [default: False]
575
+ -w, --wait-response Wait for a response to the message?
576
+ [default: False]
577
+ --raw TEXT Send a raw message. Implies --no-ack
578
+ -h, --help Show this message and exit.
579
+
580
+
581
+ SEND EMAIL (radio to smtp server)
582
+ =================================
583
+
584
+ ::
585
+
586
+ Received message______________
587
+ Raw : KM6XXX>APY400,WIDE1-1,qAO,KM6XXX-1::KM6XXX-9 :-user@host.com test new shortcuts global, radio to pc{29
588
+ From : KM6XXX
589
+ Message : -user@host.com test new shortcuts global, radio to pc
590
+ Msg number : 29
591
+
592
+ Sending Email_________________
593
+ To : user@host.com
594
+ Subject : KM6XXX
595
+ Body : test new shortcuts global, radio to pc
596
+
597
+ Sending ack __________________ Tx(3)
598
+ Raw : KM6XXX-9>APRS::KM6XXX :ack29
599
+ To : KM6XXX
600
+ Ack number : 29
601
+
602
+
603
+ RECEIVE EMAIL (imap server to radio)
604
+ ====================================
605
+
606
+ ::
607
+
608
+ Sending message_______________ 6(Tx3)
609
+ Raw : KM6XXX-9>APRS::KM6XXX :-somebody@gmail.com email from internet to radio{6
610
+ To : KM6XXX
611
+ Message : -somebody@gmail.com email from internet to radio
612
+
613
+ Received message______________
614
+ Raw : KM6XXX>APY400,WIDE1-1,qAO,KM6XXX-1::KM6XXX-9 :ack6
615
+ From : KM6XXX
616
+ Message : ack6
617
+ Msg number : 0
618
+
619
+
620
+ LOCATION
621
+ ========
622
+
623
+ ::
624
+
625
+ Received Message _______________
626
+ Raw : KM6XXX-6>APRS,TCPIP*,qAC,T2CAEAST::KM6XXX-14:location{2
627
+ From : KM6XXX-6
628
+ Message : location
629
+ Msg number : 2
630
+ Received Message _______________ Complete
631
+
632
+ Sending Message _______________
633
+ Raw : KM6XXX-14>APRS::KM6XXX-6 :KM6XXX-6: 8 Miles E Auburn CA 0' 0,-120.93584 1873.7h ago{2
634
+ To : KM6XXX-6
635
+ Message : KM6XXX-6: 8 Miles E Auburn CA 0' 0,-120.93584 1873.7h ago
636
+ Msg number : 2
637
+ Sending Message _______________ Complete
638
+
639
+ Sending ack _______________
640
+ Raw : KM6XXX-14>APRS::KM6XXX-6 :ack2
641
+ To : KM6XXX-6
642
+ Ack : 2
643
+ Sending ack _______________ Complete
644
+
645
+ AND... ping, fortune, time.....
646
+
647
+
648
+ Web Admin Interface
649
+ ===================
650
+ To start the web admin interface, You have to install gunicorn in your virtualenv that already has aprsd installed.
651
+
652
+ ::
653
+
654
+ source <path to APRSD's virtualenv>/bin/activate
655
+ pip install gunicorn
656
+ gunicorn --bind 0.0.0.0:8080 "aprsd.wsgi:app"
657
+
658
+ The web admin interface will be running on port 8080 on the local machine. http://localhost:8080
659
+
660
+
661
+
662
+ Development
663
+ ===========
664
+
665
+ * ``git clone git@github.com:craigerl/aprsd.git``
666
+ * ``cd aprsd``
667
+ * ``make``
668
+
669
+ Workflow
670
+ ========
671
+
672
+ While working aprsd, The workflow is as follows:
673
+
674
+ * Checkout a new branch to work on by running
675
+
676
+ ``git checkout -b mybranch``
677
+
678
+ * Make your changes to the code
679
+ * Run Tox with the following options:
680
+
681
+ - ``tox -epep8``
682
+ - ``tox -efmt``
683
+ - ``tox -p``
684
+
685
+ * Commit your changes. This will run the pre-commit hooks which does checks too
686
+
687
+ ``git commit``
688
+
689
+ * Once you are done with all of your commits, then push up the branch to
690
+ github with:
691
+
692
+ ``git push -u origin mybranch``
693
+
694
+ * Create a pull request from your branch so github tests can run and we can do
695
+ a code review.
696
+
697
+
698
+ Release
699
+ =======
700
+
701
+ To do release to pypi:
702
+
703
+ * Tag release with:
704
+
705
+ ``git tag -v1.XX -m "New release"``
706
+
707
+ * Push release tag:
708
+
709
+ ``git push origin master --tags``
710
+
711
+ * Do a test build and verify build is valid by running:
712
+
713
+ ``make build``
714
+
715
+ * Once twine is happy, upload release to pypi:
716
+
717
+ ``make upload``
718
+
719
+
720
+ Docker Container
721
+ ================
722
+
723
+ Building
724
+ ========
725
+
726
+ There are 2 versions of the container Dockerfile that can be used.
727
+ The main Dockerfile, which is for building the official release container
728
+ based off of the pip install version of aprsd and the Dockerfile-dev,
729
+ which is used for building a container based off of a git branch of
730
+ the repo.
731
+
732
+ Official Build
733
+ ==============
734
+
735
+ ``docker build -t hemna6969/aprsd:latest .``
736
+
737
+ Development Build
738
+ =================
739
+
740
+ ``docker build -t hemna6969/aprsd:latest -f Dockerfile-dev .``
741
+
742
+
743
+ Running the container
744
+ =====================
745
+
746
+ There is a ``docker-compose.yml`` file in the ``docker/`` directory
747
+ that can be used to run your container. To provide the container
748
+ an ``aprsd.conf`` configuration file, change your
749
+ ``docker-compose.yml`` as shown below:
750
+
751
+ ::
752
+
753
+ volumes:
754
+ - $HOME/.config/aprsd:/config
755
+
756
+ To install plugins at container start time, pass in a list of
757
+ comma-separated list of plugins on PyPI using the ``APRSD_PLUGINS``
758
+ environment variable in the ``docker-compose.yml`` file. Note that
759
+ version constraints may also be provided. For example:
760
+
761
+ ::
762
+
763
+ environment:
764
+ - APRSD_PLUGINS=aprsd-slack-plugin>=1.0.2,aprsd-twitter-plugin
765
+
766
+
767
+ .. badges
768
+
769
+ .. |pypi| image:: https://badge.fury.io/py/aprsd.svg
770
+ :target: https://badge.fury.io/py/aprsd
771
+
772
+ .. |pytest| image:: https://github.com/craigerl/aprsd/workflows/python/badge.svg
773
+ :target: https://github.com/craigerl/aprsd/actions
774
+
775
+ .. |versions| image:: https://img.shields.io/pypi/pyversions/aprsd.svg
776
+ :target: https://pypi.org/pypi/aprsd
777
+
778
+ .. |slack| image:: https://img.shields.io/badge/slack-@hemna/aprsd-blue.svg?logo=slack
779
+ :target: https://hemna.slack.com/app_redirect?channel=C01KQSCP5RP
780
+
781
+ .. |imports| image:: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336
782
+ :target: https://timothycrosley.github.io/isort/
783
+
784
+ .. |issues| image:: https://img.shields.io/github/issues/craigerl/aprsd
785
+
786
+ .. |commit| image:: https://img.shields.io/github/last-commit/craigerl/aprsd
787
+
788
+ .. |down| image:: https://static.pepy.tech/personalized-badge/aprsd?period=month&units=international_system&left_color=black&right_color=orange&left_text=Downloads
789
+ :target: https://pepy.tech/project/aprsd
790
+
791
+ .. links
792
+ .. _read the docs:
793
+ https://aprsd.readthedocs.io