weathergrabber 0.0.1__tar.gz → 0.0.3__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 (79) hide show
  1. weathergrabber-0.0.3/LICENSE +21 -0
  2. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/PKG-INFO +6 -4
  3. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/README.md +2 -2
  4. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/pyproject.toml +6 -2
  5. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber.egg-info/PKG-INFO +6 -4
  6. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber.egg-info/SOURCES.txt +1 -0
  7. weathergrabber-0.0.3/weathergrabber.egg-info/requires.txt +2 -0
  8. weathergrabber-0.0.1/weathergrabber.egg-info/requires.txt +0 -2
  9. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/setup.cfg +0 -0
  10. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/tests/test_cli.py +0 -0
  11. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/tests/test_core.py +0 -0
  12. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/__init__.py +0 -0
  13. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/adapter/client/weather_api.py +0 -0
  14. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/adapter/client/weather_search_api.py +0 -0
  15. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/adapter/tty/console_tty.py +0 -0
  16. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/adapter/tty/json_tty.py +0 -0
  17. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/adapter/tty/waybar_tty.py +0 -0
  18. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/cli.py +0 -0
  19. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/core.py +0 -0
  20. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/icon_enum.py +0 -0
  21. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/air_quality_index_mapper.py +0 -0
  22. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/city_location_mapper.py +0 -0
  23. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/color_mapper.py +0 -0
  24. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/current_conditions_mapper.py +0 -0
  25. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/daily_predictions_mapper.py +0 -0
  26. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/day_night_mapper.py +0 -0
  27. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/forecast_mapper.py +0 -0
  28. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/health_activities_mapper.py +0 -0
  29. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/hourly_predictions_mapper.py +0 -0
  30. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/label_value_mapper.py +0 -0
  31. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/moon_phase_mapper.py +0 -0
  32. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/precipitation_mapper.py +0 -0
  33. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/search_mapper.py +0 -0
  34. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/sunrise_sunset_mapper.py +0 -0
  35. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/temperature_high_low_mapper.py +0 -0
  36. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/timestamp_mapper.py +0 -0
  37. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/today_details_mapper.py +0 -0
  38. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/uv_index_mapper.py +0 -0
  39. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/weather_icon_enum_mapper.py +0 -0
  40. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/mapper/wind_mapper.py +0 -0
  41. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/output_enum.py +0 -0
  42. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/adapter/params.py +0 -0
  43. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/air_quality_index.py +0 -0
  44. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/city_location.py +0 -0
  45. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/color.py +0 -0
  46. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/current_conditions.py +0 -0
  47. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/daily_predictions.py +0 -0
  48. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/day_night.py +0 -0
  49. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/forecast.py +0 -0
  50. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/health_activities.py +0 -0
  51. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/hourly_predictions.py +0 -0
  52. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/label_value.py +0 -0
  53. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/moon_phase.py +0 -0
  54. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/moon_phase_enum.py +0 -0
  55. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/precipitation.py +0 -0
  56. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/search.py +0 -0
  57. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/sunrise_sunset.py +0 -0
  58. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/temperature_hight_low.py +0 -0
  59. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/timestamp.py +0 -0
  60. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/today_details.py +0 -0
  61. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/uv_index.py +0 -0
  62. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/weather_icon_enum.py +0 -0
  63. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/domain/wind.py +0 -0
  64. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_aqi_service.py +0 -0
  65. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_current_conditions_service.py +0 -0
  66. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_daily_forecast_oldstyle_service.py +0 -0
  67. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_daily_forecast_service.py +0 -0
  68. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_health_activities_service.py +0 -0
  69. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_hourly_forecast_oldstyle_service.py +0 -0
  70. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_hourly_forecast_service.py +0 -0
  71. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_temperature_service.py +0 -0
  72. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/extract_today_details_service.py +0 -0
  73. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/read_weather_service.py +0 -0
  74. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/service/search_location_service.py +0 -0
  75. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/usecase/use_case.py +0 -0
  76. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber/weathergrabber_application.py +0 -0
  77. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber.egg-info/dependency_links.txt +0 -0
  78. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber.egg-info/entry_points.txt +0 -0
  79. {weathergrabber-0.0.1 → weathergrabber-0.0.3}/weathergrabber.egg-info/top_level.txt +0 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 cjuniorfox
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weathergrabber
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: A grabber for weather.com data with various output formats.
5
5
  Author-email: Carlos Anselmo Mendes Junior <cjuniorfox@gmail.com>
6
6
  License: MIT
@@ -8,8 +8,10 @@ Project-URL: homepage, https://github.com/cjuniorfox/weather
8
8
  Project-URL: repository, https://github.com/cjuniorfox/weather
9
9
  Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
+ License-File: LICENSE
11
12
  Requires-Dist: pyquery>=2.0.1
12
- Requires-Dist: requests>=2.32.5
13
+ Requires-Dist: requests>=2.32.4
14
+ Dynamic: license-file
13
15
 
14
16
  # Weather Forecast CLI Script
15
17
 
@@ -112,8 +114,8 @@ To integrate the script with Waybar:
112
114
 
113
115
  ## CI & Test Coverage
114
116
 
115
- ![Test Status](https://github.com/cjuniorfox/weather/actions/workflows/python-package.yml/badge.svg)
116
- [![codecov](https://codecov.io/gh/cjuniorfox/weather/branch/main/graph/badge.svg)](https://codecov.io/gh/cjuniorfox/weather)
117
+ ![Test Status](https://github.com/cjuniorfox/weathergrabber/actions/workflows/python-package.yml/badge.svg)
118
+ [![codecov](https://codecov.io/gh/cjuniorfox/weathergrabber/branch/main/graph/badge.svg)](https://codecov.io/gh/cjuniorfox/weathergrabber)
117
119
 
118
120
  The test suite is run automatically on every push and pull request using GitHub Actions. Coverage results are uploaded to Codecov and displayed above.
119
121
 
@@ -99,8 +99,8 @@ To integrate the script with Waybar:
99
99
 
100
100
  ## CI & Test Coverage
101
101
 
102
- ![Test Status](https://github.com/cjuniorfox/weather/actions/workflows/python-package.yml/badge.svg)
103
- [![codecov](https://codecov.io/gh/cjuniorfox/weather/branch/main/graph/badge.svg)](https://codecov.io/gh/cjuniorfox/weather)
102
+ ![Test Status](https://github.com/cjuniorfox/weathergrabber/actions/workflows/python-package.yml/badge.svg)
103
+ [![codecov](https://codecov.io/gh/cjuniorfox/weathergrabber/branch/main/graph/badge.svg)](https://codecov.io/gh/cjuniorfox/weathergrabber)
104
104
 
105
105
  The test suite is run automatically on every push and pull request using GitHub Actions. Coverage results are uploaded to Codecov and displayed above.
106
106
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "weathergrabber"
3
- version = "0.0.1"
3
+ version = "0.0.3"
4
4
  description = "A grabber for weather.com data with various output formats."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -11,9 +11,13 @@ authors = [
11
11
 
12
12
  dependencies = [
13
13
  "pyquery>=2.0.1",
14
- "requests>=2.32.5"
14
+ "requests>=2.32.4"
15
15
  ]
16
16
 
17
+ [build-system]
18
+ requires = ["setuptools>=61", "wheel"]
19
+ build-backend = "setuptools.build_meta"
20
+
17
21
  [project.scripts]
18
22
  weathergrabber = "weathergrabber.cli:main_cli"
19
23
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weathergrabber
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: A grabber for weather.com data with various output formats.
5
5
  Author-email: Carlos Anselmo Mendes Junior <cjuniorfox@gmail.com>
6
6
  License: MIT
@@ -8,8 +8,10 @@ Project-URL: homepage, https://github.com/cjuniorfox/weather
8
8
  Project-URL: repository, https://github.com/cjuniorfox/weather
9
9
  Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
+ License-File: LICENSE
11
12
  Requires-Dist: pyquery>=2.0.1
12
- Requires-Dist: requests>=2.32.5
13
+ Requires-Dist: requests>=2.32.4
14
+ Dynamic: license-file
13
15
 
14
16
  # Weather Forecast CLI Script
15
17
 
@@ -112,8 +114,8 @@ To integrate the script with Waybar:
112
114
 
113
115
  ## CI & Test Coverage
114
116
 
115
- ![Test Status](https://github.com/cjuniorfox/weather/actions/workflows/python-package.yml/badge.svg)
116
- [![codecov](https://codecov.io/gh/cjuniorfox/weather/branch/main/graph/badge.svg)](https://codecov.io/gh/cjuniorfox/weather)
117
+ ![Test Status](https://github.com/cjuniorfox/weathergrabber/actions/workflows/python-package.yml/badge.svg)
118
+ [![codecov](https://codecov.io/gh/cjuniorfox/weathergrabber/branch/main/graph/badge.svg)](https://codecov.io/gh/cjuniorfox/weathergrabber)
117
119
 
118
120
  The test suite is run automatically on every push and pull request using GitHub Actions. Coverage results are uploaded to Codecov and displayed above.
119
121
 
@@ -1,3 +1,4 @@
1
+ LICENSE
1
2
  README.md
2
3
  pyproject.toml
3
4
  tests/test_cli.py
@@ -0,0 +1,2 @@
1
+ pyquery>=2.0.1
2
+ requests>=2.32.4
@@ -1,2 +0,0 @@
1
- pyquery>=2.0.1
2
- requests>=2.32.5
File without changes