async-httpd-data-collector 0.2.1__tar.gz → 0.2.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 (24) hide show
  1. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/PKG-INFO +1 -1
  2. async_httpd_data_collector-0.2.2/ahttpdc/__init__.py +1 -0
  3. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/tests/reads/fetch/test_fetcher.py +0 -1
  4. async_httpd_data_collector-0.2.1/ahttpdc/__init__.py +0 -1
  5. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/.github/workflows/publish.yml +0 -0
  6. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/.gitignore +0 -0
  7. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/LICENSE +0 -0
  8. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/README.md +0 -0
  9. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/ahttpdc/reads/__init__.py +0 -0
  10. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/ahttpdc/reads/fetch/__init__.py +0 -0
  11. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/ahttpdc/reads/fetch/async_fetch.py +0 -0
  12. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/ahttpdc/reads/interface.py +0 -0
  13. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/ahttpdc/reads/query/__init__.py +0 -0
  14. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/ahttpdc/reads/query/async_query.py +0 -0
  15. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/examples/fetch.py +0 -0
  16. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/examples/minimal_dashboard.py +0 -0
  17. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/examples/query.py +0 -0
  18. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/influx +0 -0
  19. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/influxdb2-client-2.7.5-linux-amd64.tar.gz +0 -0
  20. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/pyproject.toml +0 -0
  21. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/requirements.txt +0 -0
  22. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/tests/dev_server.py +0 -0
  23. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/tests/reads/query/test_query.py +0 -0
  24. {async_httpd_data_collector-0.2.1 → async_httpd_data_collector-0.2.2}/tests/reads/test_interface.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: async-httpd-data-collector
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Gateway facilitating asyncronous communication between sensory data-emitting devices, InfluxDB and the user.
5
5
  Project-URL: Repository, https://github.com/straightchlorine/async-httpd-data-collector
6
6
  Project-URL: Issues, https://github.com/straightchlorine/async-httpd-data-collector/issues
@@ -0,0 +1 @@
1
+ __version__ = '0.2.2'
@@ -11,7 +11,6 @@ import multiprocessing
11
11
  import pytest
12
12
 
13
13
  from ahttpdc.reads.fetch.async_fetch import AsyncReadFetcher
14
- # from tests.dev_server import DevelopmentServer
15
14
 
16
15
 
17
16
  class TestFetcher:
@@ -1 +0,0 @@
1
- __version__ = '0.2.1'