aprsd 4.1.1__tar.gz → 4.1.2__tar.gz

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 (163) hide show
  1. {aprsd-4.1.1 → aprsd-4.1.2}/ChangeLog.md +7 -0
  2. {aprsd-4.1.1 → aprsd-4.1.2}/PKG-INFO +1 -1
  3. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/log/log.py +4 -1
  4. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd.egg-info/PKG-INFO +1 -1
  5. {aprsd-4.1.1 → aprsd-4.1.2}/.coveragerc +0 -0
  6. {aprsd-4.1.1 → aprsd-4.1.2}/.github/workflows/authors.yml +0 -0
  7. {aprsd-4.1.1 → aprsd-4.1.2}/.github/workflows/codeql.yml +0 -0
  8. {aprsd-4.1.1 → aprsd-4.1.2}/.github/workflows/manual_build.yml +0 -0
  9. {aprsd-4.1.1 → aprsd-4.1.2}/.github/workflows/master-build.yml +0 -0
  10. {aprsd-4.1.1 → aprsd-4.1.2}/.github/workflows/python.yml +0 -0
  11. {aprsd-4.1.1 → aprsd-4.1.2}/.github/workflows/release_build.yml +0 -0
  12. {aprsd-4.1.1 → aprsd-4.1.2}/.mailmap +0 -0
  13. {aprsd-4.1.1 → aprsd-4.1.2}/.pre-commit-config.yaml +0 -0
  14. {aprsd-4.1.1 → aprsd-4.1.2}/.readthedocs.yaml +0 -0
  15. {aprsd-4.1.1 → aprsd-4.1.2}/AUTHORS +0 -0
  16. {aprsd-4.1.1 → aprsd-4.1.2}/CONTRIBUTING.md +0 -0
  17. {aprsd-4.1.1 → aprsd-4.1.2}/INSTALL.txt +0 -0
  18. {aprsd-4.1.1 → aprsd-4.1.2}/LICENSE +0 -0
  19. {aprsd-4.1.1 → aprsd-4.1.2}/MANIFEST.in +0 -0
  20. {aprsd-4.1.1 → aprsd-4.1.2}/Makefile +0 -0
  21. {aprsd-4.1.1 → aprsd-4.1.2}/README.md +0 -0
  22. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/__init__.py +0 -0
  23. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cli_helper.py +0 -0
  24. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/__init__.py +0 -0
  25. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/aprsis.py +0 -0
  26. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/base.py +0 -0
  27. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/drivers/__init__.py +0 -0
  28. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/drivers/aprsis.py +0 -0
  29. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/drivers/fake.py +0 -0
  30. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/drivers/kiss.py +0 -0
  31. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/factory.py +0 -0
  32. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/fake.py +0 -0
  33. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/kiss.py +0 -0
  34. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/client/stats.py +0 -0
  35. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/__init__.py +0 -0
  36. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/completion.py +0 -0
  37. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/dev.py +0 -0
  38. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/fetch_stats.py +0 -0
  39. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/healthcheck.py +0 -0
  40. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/list_plugins.py +0 -0
  41. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/listen.py +0 -0
  42. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/send_message.py +0 -0
  43. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/cmds/server.py +0 -0
  44. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/conf/__init__.py +0 -0
  45. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/conf/client.py +0 -0
  46. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/conf/common.py +0 -0
  47. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/conf/log.py +0 -0
  48. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/conf/opts.py +0 -0
  49. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/conf/plugin_common.py +0 -0
  50. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/exception.py +0 -0
  51. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/log/__init__.py +0 -0
  52. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/main.py +0 -0
  53. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/__init__.py +0 -0
  54. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/collector.py +0 -0
  55. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/core.py +0 -0
  56. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/filter.py +0 -0
  57. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/filters/__init__.py +0 -0
  58. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/filters/dupe_filter.py +0 -0
  59. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/filters/packet_type.py +0 -0
  60. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/log.py +0 -0
  61. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/packet_list.py +0 -0
  62. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/seen_list.py +0 -0
  63. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/tracker.py +0 -0
  64. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/packets/watch_list.py +0 -0
  65. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugin.py +0 -0
  66. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugin_utils.py +0 -0
  67. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/__init__.py +0 -0
  68. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/fortune.py +0 -0
  69. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/notify.py +0 -0
  70. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/ping.py +0 -0
  71. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/time.py +0 -0
  72. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/version.py +0 -0
  73. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/plugins/weather.py +0 -0
  74. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/stats/__init__.py +0 -0
  75. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/stats/app.py +0 -0
  76. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/stats/collector.py +0 -0
  77. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/__init__.py +0 -0
  78. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/aprsd.py +0 -0
  79. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/keepalive.py +0 -0
  80. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/registry.py +0 -0
  81. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/rx.py +0 -0
  82. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/service.py +0 -0
  83. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/stats.py +0 -0
  84. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/threads/tx.py +0 -0
  85. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/__init__.py +0 -0
  86. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/counter.py +0 -0
  87. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/fuzzyclock.py +0 -0
  88. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/json.py +0 -0
  89. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/keepalive_collector.py +0 -0
  90. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/objectstore.py +0 -0
  91. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/ring_buffer.py +0 -0
  92. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd/utils/trace.py +0 -0
  93. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd-lnav.json +0 -0
  94. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd.egg-info/SOURCES.txt +0 -0
  95. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd.egg-info/dependency_links.txt +0 -0
  96. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd.egg-info/entry_points.txt +0 -0
  97. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd.egg-info/requires.txt +0 -0
  98. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd.egg-info/top_level.txt +0 -0
  99. {aprsd-4.1.1 → aprsd-4.1.2}/aprsd_logo.png +0 -0
  100. {aprsd-4.1.1 → aprsd-4.1.2}/docker/Dockerfile +0 -0
  101. {aprsd-4.1.1 → aprsd-4.1.2}/docker/bin/admin.sh +0 -0
  102. {aprsd-4.1.1 → aprsd-4.1.2}/docker/bin/healthcheck.sh +0 -0
  103. {aprsd-4.1.1 → aprsd-4.1.2}/docker/bin/listen.sh +0 -0
  104. {aprsd-4.1.1 → aprsd-4.1.2}/docker/bin/run.sh +0 -0
  105. {aprsd-4.1.1 → aprsd-4.1.2}/docker/bin/setup.sh +0 -0
  106. {aprsd-4.1.1 → aprsd-4.1.2}/docker/build.sh +0 -0
  107. {aprsd-4.1.1 → aprsd-4.1.2}/docker/docker-compose.yml +0 -0
  108. {aprsd-4.1.1 → aprsd-4.1.2}/docs/_static/.keep +0 -0
  109. {aprsd-4.1.1 → aprsd-4.1.2}/docs/_static/aprsd_overview.png +0 -0
  110. {aprsd-4.1.1 → aprsd-4.1.2}/docs/_static/aprsd_overview.svg +0 -0
  111. {aprsd-4.1.1 → aprsd-4.1.2}/docs/_templates/.keep +0 -0
  112. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.client.drivers.rst +0 -0
  113. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.client.rst +0 -0
  114. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.cmds.rst +0 -0
  115. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.conf.rst +0 -0
  116. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.log.rst +0 -0
  117. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.packets.rst +0 -0
  118. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.plugins.rst +0 -0
  119. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.rst +0 -0
  120. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.stats.rst +0 -0
  121. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.threads.rst +0 -0
  122. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/aprsd.utils.rst +0 -0
  123. {aprsd-4.1.1 → aprsd-4.1.2}/docs/apidoc/modules.rst +0 -0
  124. {aprsd-4.1.1 → aprsd-4.1.2}/docs/aprsd.drawio +0 -0
  125. {aprsd-4.1.1 → aprsd-4.1.2}/docs/changelog.rst +0 -0
  126. {aprsd-4.1.1 → aprsd-4.1.2}/docs/clean_docs.py +0 -0
  127. {aprsd-4.1.1 → aprsd-4.1.2}/docs/conf.py +0 -0
  128. {aprsd-4.1.1 → aprsd-4.1.2}/docs/configure.rst +0 -0
  129. {aprsd-4.1.1 → aprsd-4.1.2}/docs/index.rst +0 -0
  130. {aprsd-4.1.1 → aprsd-4.1.2}/docs/install.rst +0 -0
  131. {aprsd-4.1.1 → aprsd-4.1.2}/docs/links.rst +0 -0
  132. {aprsd-4.1.1 → aprsd-4.1.2}/docs/plugin.rst +0 -0
  133. {aprsd-4.1.1 → aprsd-4.1.2}/docs/readme.rst +0 -0
  134. {aprsd-4.1.1 → aprsd-4.1.2}/docs/server.rst +0 -0
  135. {aprsd-4.1.1 → aprsd-4.1.2}/examples/plugins/__init__.py +0 -0
  136. {aprsd-4.1.1 → aprsd-4.1.2}/examples/plugins/example_plugin.py +0 -0
  137. {aprsd-4.1.1 → aprsd-4.1.2}/gray.conf +0 -0
  138. {aprsd-4.1.1 → aprsd-4.1.2}/pyproject.toml +0 -0
  139. {aprsd-4.1.1 → aprsd-4.1.2}/requirements-dev.in +0 -0
  140. {aprsd-4.1.1 → aprsd-4.1.2}/requirements-dev.txt +0 -0
  141. {aprsd-4.1.1 → aprsd-4.1.2}/requirements.in +0 -0
  142. {aprsd-4.1.1 → aprsd-4.1.2}/requirements.txt +0 -0
  143. {aprsd-4.1.1 → aprsd-4.1.2}/setup.cfg +0 -0
  144. {aprsd-4.1.1 → aprsd-4.1.2}/setup.py +0 -0
  145. {aprsd-4.1.1 → aprsd-4.1.2}/tests/__init__.py +0 -0
  146. {aprsd-4.1.1 → aprsd-4.1.2}/tests/client/test_aprsis.py +0 -0
  147. {aprsd-4.1.1 → aprsd-4.1.2}/tests/client/test_client_base.py +0 -0
  148. {aprsd-4.1.1 → aprsd-4.1.2}/tests/client/test_factory.py +0 -0
  149. {aprsd-4.1.1 → aprsd-4.1.2}/tests/cmds/__init__.py +0 -0
  150. {aprsd-4.1.1 → aprsd-4.1.2}/tests/cmds/test_send_message.py +0 -0
  151. {aprsd-4.1.1 → aprsd-4.1.2}/tests/fake.py +0 -0
  152. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/__init__.py +0 -0
  153. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/test_fortune.py +0 -0
  154. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/test_notify.py +0 -0
  155. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/test_ping.py +0 -0
  156. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/test_time.py +0 -0
  157. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/test_version.py +0 -0
  158. {aprsd-4.1.1 → aprsd-4.1.2}/tests/plugins/test_weather.py +0 -0
  159. {aprsd-4.1.1 → aprsd-4.1.2}/tests/test_packets.py +0 -0
  160. {aprsd-4.1.1 → aprsd-4.1.2}/tests/test_plugin.py +0 -0
  161. {aprsd-4.1.1 → aprsd-4.1.2}/tools/fast8.sh +0 -0
  162. {aprsd-4.1.1 → aprsd-4.1.2}/tox.ini +0 -0
  163. {aprsd-4.1.1 → aprsd-4.1.2}/uv.lock +0 -0
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [4.1.2](https://github.com/craigerl/aprsd/compare/4.1.1...4.1.2)
8
+
9
+ > 6 March 2025
10
+
11
+ - Allow passing in a custom handler to setup_logging [`d262589`](https://github.com/craigerl/aprsd/commit/d2625893134f498748859da3b1684b04d456f790)
12
+
7
13
  #### [4.1.1](https://github.com/craigerl/aprsd/compare/4.1.0...4.1.1)
8
14
 
9
15
  > 5 March 2025
@@ -12,6 +18,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
12
18
  - Added threads.service [`c1c89fd`](https://github.com/craigerl/aprsd/commit/c1c89fd2c2c69c5e6c5d29a736a7b89e3d45cfe2)
13
19
  - Update requirements [`2b185ee`](https://github.com/craigerl/aprsd/commit/2b185ee1b84598c832d8a5d73753cb428854b932)
14
20
  - Fixed some more ruff checks [`94ba915`](https://github.com/craigerl/aprsd/commit/94ba915ed44b11eaabc885e033669d67d8c341a5)
21
+ - 4.1.1 release [`7ed8028`](https://github.com/craigerl/aprsd/commit/7ed80283071c1ccebf1e3373727608edd0a56ee9)
15
22
 
16
23
  #### [4.1.0](https://github.com/craigerl/aprsd/compare/4.0.2...4.1.0)
17
24
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: aprsd
3
- Version: 4.1.1
3
+ Version: 4.1.2
4
4
  Summary: APRSd is a APRS-IS server that can be used to connect to APRS-IS and send and receive APRS packets.
5
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
6
  Maintainer-email: Craig Lamparter <craig@craiger.org>, "Walter A. Boring IV" <waboring@hemna.com>
@@ -51,7 +51,7 @@ class InterceptHandler(logging.Handler):
51
51
  # Setup the log faciility
52
52
  # to disable log to stdout, but still log to file
53
53
  # use the --quiet option on the cmdln
54
- def setup_logging(loglevel=None, quiet=False):
54
+ def setup_logging(loglevel=None, quiet=False, custom_handler=None):
55
55
  if not loglevel:
56
56
  log_level = CONF.logging.log_level
57
57
  else:
@@ -107,6 +107,9 @@ def setup_logging(loglevel=None, quiet=False):
107
107
  },
108
108
  )
109
109
 
110
+ if custom_handler:
111
+ handlers.append(custom_handler)
112
+
110
113
  # configure loguru
111
114
  logger.configure(handlers=handlers)
112
115
  logger.level('DEBUG', color='<fg #BABABA>')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: aprsd
3
- Version: 4.1.1
3
+ Version: 4.1.2
4
4
  Summary: APRSd is a APRS-IS server that can be used to connect to APRS-IS and send and receive APRS packets.
5
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
6
  Maintainer-email: Craig Lamparter <craig@craiger.org>, "Walter A. Boring IV" <waboring@hemna.com>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes