meteocatpy 0.0.7 → 0.0.9

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 (40) hide show
  1. package/.github/workflows/release.yml +33 -33
  2. package/.gitlab-ci.yml +46 -46
  3. package/.pre-commit-config.yaml +37 -37
  4. package/.releaserc +23 -23
  5. package/.releaserc.toml +14 -14
  6. package/AUTHORS.md +12 -12
  7. package/CHANGELOG.md +153 -137
  8. package/README.md +61 -61
  9. package/filetree.py +48 -48
  10. package/filetree.txt +48 -48
  11. package/meteocatpy/README.md +61 -61
  12. package/meteocatpy/__init__.py +27 -27
  13. package/meteocatpy/const.py +10 -10
  14. package/meteocatpy/data.py +93 -140
  15. package/meteocatpy/exceptions.py +35 -35
  16. package/meteocatpy/forecast.py +137 -137
  17. package/meteocatpy/helpers.py +46 -46
  18. package/meteocatpy/stations.py +71 -71
  19. package/meteocatpy/symbols.py +89 -89
  20. package/meteocatpy/town.py +61 -61
  21. package/meteocatpy/townstations.py +99 -99
  22. package/meteocatpy/variables.py +80 -74
  23. package/meteocatpy/version.py +2 -2
  24. package/package.json +23 -23
  25. package/poetry.lock +3313 -3313
  26. package/pyproject.toml +72 -72
  27. package/releaserc.json +17 -17
  28. package/requirements.test.txt +3 -3
  29. package/setup.cfg +64 -64
  30. package/setup.py +10 -10
  31. package/tests/data_test.py +122 -122
  32. package/tests/import_test.py +18 -18
  33. package/tests/integration_test_complete.py +76 -76
  34. package/tests/integration_test_forecast.py +54 -54
  35. package/tests/integration_test_station_data.py +33 -33
  36. package/tests/integration_test_stations.py +31 -31
  37. package/tests/integration_test_symbols.py +68 -68
  38. package/tests/integration_test_town.py +32 -32
  39. package/tests/integration_test_town_stations.py +36 -36
  40. package/tests/integration_test_variables.py +32 -32
@@ -1,33 +1,33 @@
1
- name: Release
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
-
8
- jobs:
9
- release:
10
- name: Create Release
11
- runs-on: ubuntu-latest
12
-
13
- steps:
14
- # Paso 1: Configurar el repositorio
15
- - name: Checkout repository
16
- uses: actions/checkout@v3
17
-
18
- # Paso 2: Configurar Node.js (requerido para semantic-release)
19
- - name: Set up Node.js
20
- uses: actions/setup-node@v3
21
- with:
22
- node-version: 20.8.1 # Versión compatible con semantic-release
23
-
24
- # Paso 3: Instalar dependencias necesarias
25
- - name: Install dependencies
26
- run: npm ci
27
-
28
- # Paso 4: Ejecutar semantic-release
29
- - name: Run semantic-release
30
- env:
31
- GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
32
- NPM_TOKEN: ${{ secrets.NPM_WORKFLOW }}
33
- run: npx semantic-release
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ release:
10
+ name: Create Release
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ # Paso 1: Configurar el repositorio
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v3
17
+
18
+ # Paso 2: Configurar Node.js (requerido para semantic-release)
19
+ - name: Set up Node.js
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: 20.8.1 # Versión compatible con semantic-release
23
+
24
+ # Paso 3: Instalar dependencias necesarias
25
+ - name: Install dependencies
26
+ run: npm ci
27
+
28
+ # Paso 4: Ejecutar semantic-release
29
+ - name: Run semantic-release
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
32
+ NPM_TOKEN: ${{ secrets.NPM_WORKFLOW }}
33
+ run: npx semantic-release
package/.gitlab-ci.yml CHANGED
@@ -1,46 +1,46 @@
1
- stages:
2
- - github
3
- - pypi
4
-
5
- variables:
6
- BASE_URL: "https://api.meteo.cat"
7
- PYPI_USERNAME: $PRODUCTION_USERNAME # Usuario de PyPi
8
- PYPI_PASSWORD: $PRODUCTION_PASSWORD # Token de PyPi
9
- PYPI_API_TOKEN: $PYPI_API_TOKEN # Token de PyPi
10
- GL_TOKEN: $GL_TOKEN # Token de GitLab
11
- GH_TOKEN: $GH_TOKEN # Token de GitHub
12
- GH_REMOTE_URL: $GH_REMOTE_URL # GH Remote URL Repository
13
- GL_REMOTE_URL: $GL_REMOTE_URL # GL Remote URL Repository
14
- GIT_USER_NAME: $GIT_USER_NAME # USER NAME FOR GIT
15
- GIT_USER_EMAIL: $GIT_USER_EMAIL # USER EMAIL FOR GIT
16
- GIT_STRATEGY: fetch
17
- GIT_DEPTH: 0
18
-
19
- default:
20
- image: python:3.12.7
21
- before_script:
22
- - python -V # Verificar versión de Python
23
- - python -m pip install --upgrade pip
24
- - pip install poetry # Instalar Poetry
25
- - poetry config virtualenvs.create true # Activada la creación de entornos virtuales
26
- - poetry config virtualenvs.in-project true # Crear el virtualenv en el directorio del proyecto
27
- - poetry install # Instalar dependencias con Poetry
28
-
29
- github_job:
30
- stage: github
31
- script:
32
- - git checkout master # Asegurarse de estar en la rama master
33
- - git remote set-url origin "$GH_REMOTE_URL" # Cambiar la URL para GitHub
34
- # - poetry run semantic-release version # Generar nueva versión
35
- # - poetry run semantic-release publish # Ejecutar el comando para publicar el release
36
- - git push origin master # Hacer push al repositorio de GitHub
37
- allow_failure: true # Opcional: evita que el pipeline falle completamente
38
- only:
39
- - master
40
-
41
- pypy_job:
42
- stage: pypi
43
- script:
44
- - poetry publish --build -u "__token__" -p $PYPI_API_TOKEN # Usar el token de API de PyPI
45
- only:
46
- - master
1
+ stages:
2
+ - github
3
+ - pypi
4
+
5
+ variables:
6
+ BASE_URL: "https://api.meteo.cat"
7
+ PYPI_USERNAME: $PRODUCTION_USERNAME # Usuario de PyPi
8
+ PYPI_PASSWORD: $PRODUCTION_PASSWORD # Token de PyPi
9
+ PYPI_API_TOKEN: $PYPI_API_TOKEN # Token de PyPi
10
+ GL_TOKEN: $GL_TOKEN # Token de GitLab
11
+ GH_TOKEN: $GH_TOKEN # Token de GitHub
12
+ GH_REMOTE_URL: $GH_REMOTE_URL # GH Remote URL Repository
13
+ GL_REMOTE_URL: $GL_REMOTE_URL # GL Remote URL Repository
14
+ GIT_USER_NAME: $GIT_USER_NAME # USER NAME FOR GIT
15
+ GIT_USER_EMAIL: $GIT_USER_EMAIL # USER EMAIL FOR GIT
16
+ GIT_STRATEGY: fetch
17
+ GIT_DEPTH: 0
18
+
19
+ default:
20
+ image: python:3.12.7
21
+ before_script:
22
+ - python -V # Verificar versión de Python
23
+ - python -m pip install --upgrade pip
24
+ - pip install poetry # Instalar Poetry
25
+ - poetry config virtualenvs.create true # Activada la creación de entornos virtuales
26
+ - poetry config virtualenvs.in-project true # Crear el virtualenv en el directorio del proyecto
27
+ - poetry install # Instalar dependencias con Poetry
28
+
29
+ github_job:
30
+ stage: github
31
+ script:
32
+ - git checkout master # Asegurarse de estar en la rama master
33
+ - git remote set-url origin "$GH_REMOTE_URL" # Cambiar la URL para GitHub
34
+ # - poetry run semantic-release version # Generar nueva versión
35
+ # - poetry run semantic-release publish # Ejecutar el comando para publicar el release
36
+ - git push origin master # Hacer push al repositorio de GitHub
37
+ allow_failure: true # Opcional: evita que el pipeline falle completamente
38
+ only:
39
+ - master
40
+
41
+ pypy_job:
42
+ stage: pypi
43
+ script:
44
+ - poetry publish --build -u "__token__" -p $PYPI_API_TOKEN # Usar el token de API de PyPI
45
+ only:
46
+ - master
@@ -1,37 +1,37 @@
1
- repos:
2
- - repo: https://github.com/asottile/pyupgrade
3
- rev: v3.15.2
4
- hooks:
5
- - id: pyupgrade
6
- args: [--py37-plus]
7
- - repo: https://github.com/psf/black
8
- rev: 24.4.2
9
- hooks:
10
- - id: black
11
- args:
12
- - --safe
13
- - --quiet
14
- files: ^((homeassistant|script|tests)/.+)?[^/]+\.py$
15
- - repo: https://github.com/codespell-project/codespell
16
- rev: v2.2.6
17
- hooks:
18
- - id: codespell
19
- args:
20
- - --ignore-words-list=hass,alot,datas,dof,dur,farenheit,hist,iff,ines,ist,lightsensor,mut,nd,pres,referer,ser,serie,te,technik,ue,uint,visability,wan,wanna,withing
21
- - --skip="./.*,*.csv,*.json"
22
- - --quiet-level=2
23
- exclude_types: [csv, json]
24
- - repo: https://github.com/charliermarsh/ruff-pre-commit
25
- rev: v0.4.8
26
- hooks:
27
- - id: ruff
28
- args: [--fix, --exit-non-zero-on-fix]
29
- - id: ruff-format
30
- - repo: https://github.com/pre-commit/mirrors-mypy
31
- rev: v1.10.0
32
- hooks:
33
- - id: mypy
34
- args:
35
- - --pretty
36
- - --show-error-codes
37
- - --show-error-context
1
+ repos:
2
+ - repo: https://github.com/asottile/pyupgrade
3
+ rev: v3.15.2
4
+ hooks:
5
+ - id: pyupgrade
6
+ args: [--py37-plus]
7
+ - repo: https://github.com/psf/black
8
+ rev: 24.4.2
9
+ hooks:
10
+ - id: black
11
+ args:
12
+ - --safe
13
+ - --quiet
14
+ files: ^((homeassistant|script|tests)/.+)?[^/]+\.py$
15
+ - repo: https://github.com/codespell-project/codespell
16
+ rev: v2.2.6
17
+ hooks:
18
+ - id: codespell
19
+ args:
20
+ - --ignore-words-list=hass,alot,datas,dof,dur,farenheit,hist,iff,ines,ist,lightsensor,mut,nd,pres,referer,ser,serie,te,technik,ue,uint,visability,wan,wanna,withing
21
+ - --skip="./.*,*.csv,*.json"
22
+ - --quiet-level=2
23
+ exclude_types: [csv, json]
24
+ - repo: https://github.com/charliermarsh/ruff-pre-commit
25
+ rev: v0.4.8
26
+ hooks:
27
+ - id: ruff
28
+ args: [--fix, --exit-non-zero-on-fix]
29
+ - id: ruff-format
30
+ - repo: https://github.com/pre-commit/mirrors-mypy
31
+ rev: v1.10.0
32
+ hooks:
33
+ - id: mypy
34
+ args:
35
+ - --pretty
36
+ - --show-error-codes
37
+ - --show-error-context
package/.releaserc CHANGED
@@ -1,23 +1,23 @@
1
- {
2
- "branches": ["master"],
3
- "plugins": [
4
- "@semantic-release/commit-analyzer",
5
- "@semantic-release/release-notes-generator",
6
- [
7
- "@semantic-release/changelog",
8
- {
9
- "changelogFile": "CHANGELOG.md"
10
- }
11
- ],
12
- "@semantic-release/npm",
13
- "@semantic-release/github",
14
- [
15
- "@semantic-release/git",
16
- {
17
- "assets": ["CHANGELOG.md", "package.json", "pyproject.toml"],
18
- "message": "v${nextRelease.version}\n\n${nextRelease.notes}"
19
- }
20
- ]
21
- ],
22
- "repositoryUrl": "https://github.com/figorr/meteocatpy"
23
- }
1
+ {
2
+ "branches": ["master"],
3
+ "plugins": [
4
+ "@semantic-release/commit-analyzer",
5
+ "@semantic-release/release-notes-generator",
6
+ [
7
+ "@semantic-release/changelog",
8
+ {
9
+ "changelogFile": "CHANGELOG.md"
10
+ }
11
+ ],
12
+ "@semantic-release/npm",
13
+ "@semantic-release/github",
14
+ [
15
+ "@semantic-release/git",
16
+ {
17
+ "assets": ["CHANGELOG.md", "package.json", "pyproject.toml"],
18
+ "message": "v${nextRelease.version}\n\n${nextRelease.notes}"
19
+ }
20
+ ]
21
+ ],
22
+ "repositoryUrl": "https://github.com/figorr/meteocatpy"
23
+ }
package/.releaserc.toml CHANGED
@@ -1,14 +1,14 @@
1
- branches = ["master"]
2
-
3
- [plugins]
4
- "@semantic-release/gitlab" = {}
5
- "@semantic-release/github" = {}
6
- "@semantic-release/changelog" = {}
7
- "@semantic-release/commit-analyzer" = { preset = "conventional" }
8
- "@semantic-release/release-notes-generator" = {}
9
- "@semantic-release/git" = {}
10
-
11
- [[plugins]]
12
- path = "@semantic-release/git"
13
- assets = ["meteocatpy/version.py"]
14
- message = "chore(release): update version to ${nextRelease.version}"
1
+ branches = ["master"]
2
+
3
+ [plugins]
4
+ "@semantic-release/gitlab" = {}
5
+ "@semantic-release/github" = {}
6
+ "@semantic-release/changelog" = {}
7
+ "@semantic-release/commit-analyzer" = { preset = "conventional" }
8
+ "@semantic-release/release-notes-generator" = {}
9
+ "@semantic-release/git" = {}
10
+
11
+ [[plugins]]
12
+ path = "@semantic-release/git"
13
+ assets = ["meteocatpy/version.py"]
14
+ message = "chore(release): update version to ${nextRelease.version}"
package/AUTHORS.md CHANGED
@@ -1,12 +1,12 @@
1
- # Contributions to `meteocatpy`
2
-
3
- ## Owners
4
-
5
- - Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
6
-
7
- ## Maintainers
8
-
9
- - Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
10
-
11
- ## Contributors
12
-
1
+ # Contributions to `meteocatpy`
2
+
3
+ ## Owners
4
+
5
+ - Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
6
+
7
+ ## Maintainers
8
+
9
+ - Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
10
+
11
+ ## Contributors
12
+
package/CHANGELOG.md CHANGED
@@ -1,137 +1,153 @@
1
- ## [0.0.7](https://github.com/figorr/meteocatpy/compare/v0.0.6...v0.0.7) (2024-12-07)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * 0.0.7 ([7908841](https://github.com/figorr/meteocatpy/commit/7908841eee0b00b563b6b6266f4a6b71bc503ef2))
7
- * add github jobs ([d61a1e8](https://github.com/figorr/meteocatpy/commit/d61a1e846a5a34b505ca4520e68152bac21ace23))
8
- * add semantic-release ([cbecdd0](https://github.com/figorr/meteocatpy/commit/cbecdd05eade74445d5458100c3c42f2eaff4506))
9
- * CHANGELOG.md ([6cd6655](https://github.com/figorr/meteocatpy/commit/6cd665549663377ac4a73a20c6e5d4b8f6f859b9))
10
- * delete meteocat_cache ([05371e8](https://github.com/figorr/meteocatpy/commit/05371e8aa53365d5bbc027d1658e154957e225fe))
11
- * fix Content-Type : application.json for headers ([a79bb1c](https://github.com/figorr/meteocatpy/commit/a79bb1ced0a1f2def294b5964840ea938c469d57))
12
- * fix data recovery data ([fc93719](https://github.com/figorr/meteocatpy/commit/fc93719d7d601810771bd89dcd8715686843f836))
13
- * fix gitlab jobs ([7ee5b57](https://github.com/figorr/meteocatpy/commit/7ee5b5714e27b3f9031d5b9b81fe100e1064f0da))
14
- * ignore node_modules ([8b7f87c](https://github.com/figorr/meteocatpy/commit/8b7f87c5bf6b08211925824fd02dd0fdbbfced9b))
15
- * ignore pytest_cache ([99e99ba](https://github.com/figorr/meteocatpy/commit/99e99baf9a79529e63a0db47c76c7b150432f566))
16
- * new repo file structure ([bd7e438](https://github.com/figorr/meteocatpy/commit/bd7e438040255ddbcc375fd67469704a83bf5dfe))
17
-
18
- ## v0.0.1 (2024-11-27)
19
-
20
- ### Bug Fixes
21
-
22
- - Version 0.0.3
23
- ([`3be4659`](https://github.com/figorr/meteocatpy/commit/3be4659a5df47b942f3d24594dc1140eecb65388))
24
-
25
- - Version 0.0.3
26
- ([`987d7c8`](https://github.com/figorr/meteocatpy/commit/987d7c89f770f11aa37267815b799dd90d6230be))
27
-
28
- - Fix version 0.0.3
29
- ([`6caaa46`](https://github.com/figorr/meteocatpy/commit/6caaa460dbee29f10a8566e0925ceddb94e4167e))
30
-
31
- - Version to 0.0.2
32
- ([`0d47a4c`](https://github.com/figorr/meteocatpy/commit/0d47a4c1d8f64d0f6b32a79b909cda79ef236825))
33
-
34
- - 0.0.1
35
- ([`a840913`](https://github.com/figorr/meteocatpy/commit/a840913c7cab075bf7b242ecbf0c93c0471f27f1))
36
-
37
- - Fix version to 0.0.2
38
- ([`9c1b294`](https://github.com/figorr/meteocatpy/commit/9c1b294faa060988ecf41fbebcb01345ec940dce))
39
-
40
- - 0.0.1
41
- ([`304baee`](https://github.com/figorr/meteocatpy/commit/304baeef7d988b3d38a39a2064230ccf3e34e5b5))
42
-
43
- - Version 0.0.2
44
- ([`94fe6d1`](https://github.com/figorr/meteocatpy/commit/94fe6d1c6637c69d38eaec6b86463e260d1faf7f))
45
-
46
- - Python 3.12
47
- ([`3b41f89`](https://github.com/figorr/meteocatpy/commit/3b41f895150a335f9cce7df3932d162bd8a6ed2e))
48
-
49
- - 0.0.1
50
- ([`21b136e`](https://github.com/figorr/meteocatpy/commit/21b136e53b20484ca451b8ae7ea346723e343cd0))
51
-
52
- - New repo file structure
53
- ([`d4369e5`](https://github.com/figorr/meteocatpy/commit/d4369e5e3048fee4fb7edf445814f4e765178d4d))
54
-
55
- - Set town_id as codi_municipi and variable_id as codi_variable
56
- ([`8cfa246`](https://github.com/figorr/meteocatpy/commit/8cfa2465a949bfd46c60d7a4d824bd41eb5af507))
57
-
58
- - Set town_id as codi
59
- ([`f4f1ee4`](https://github.com/figorr/meteocatpy/commit/f4f1ee403d16620e57c02e66771aa6b3483b6a89))
60
-
61
- - Set station_id as codiEstacio
62
- ([`d8d75e4`](https://github.com/figorr/meteocatpy/commit/d8d75e484c3c191e7db70a20db9ce27e2b7d182c))
63
-
64
- - Add new classes
65
- ([`aebd5c1`](https://github.com/figorr/meteocatpy/commit/aebd5c1011a9ba53ddcf239fa6f6ab2c9fc052a4))
66
-
67
- - Fix status code UnknownAPIError
68
- ([`d611d42`](https://github.com/figorr/meteocatpy/commit/d611d42ddc12ff792d53894ba0c8007a1a9678ab))
69
-
70
- - Fix status code for UnknownAPIError
71
- ([`3f4606b`](https://github.com/figorr/meteocatpy/commit/3f4606b5ec023254cb73efb2d5cf306974533898))
72
-
73
- - Fix README
74
- ([`1c5553d`](https://github.com/figorr/meteocatpy/commit/1c5553d9b430563cb35f2d53fd51b4be00bf25aa))
75
-
76
- - Add MeteocatSymbols
77
- ([`f30b115`](https://github.com/figorr/meteocatpy/commit/f30b1150d0bc78908287a1ef72827590a089f003))
78
-
79
- - Fix tests
80
- ([`93cdcfd`](https://github.com/figorr/meteocatpy/commit/93cdcfd753d4ab7770ae85ad7c4e035802b8e9d2))
81
-
82
- - Set symbol categories
83
- ([`88a5016`](https://github.com/figorr/meteocatpy/commit/88a5016935d6103183672a79bf0423e0893cefa1))
84
-
85
- - Include new classes
86
- ([`f4ce82b`](https://github.com/figorr/meteocatpy/commit/f4ce82bffef80a884e02962548d6f5da7466e3b1))
87
-
88
- - Improved error handling
89
- ([`03699b7`](https://github.com/figorr/meteocatpy/commit/03699b74791db3bb695d9613a215aee3da6a9929))
90
-
91
- - Improved error handling
92
- ([`786005a`](https://github.com/figorr/meteocatpy/commit/786005a43435cb2217575dd1e528ff4f5a403e35))
93
-
94
- - Improved error handling
95
- ([`295b356`](https://github.com/figorr/meteocatpy/commit/295b3560864e4420008aa80cbc01c96e1fbb67f8))
96
-
97
- - Delete test files
98
- ([`33f3751`](https://github.com/figorr/meteocatpy/commit/33f3751e645bda30a70475efe5404f6f4ad0f96f))
99
-
100
- - Fix integration_test
101
- ([`b7e8024`](https://github.com/figorr/meteocatpy/commit/b7e8024760401537d9ad28e026d4948383d9db3e))
102
-
103
- - Add predictions resource url
104
- ([`d88e457`](https://github.com/figorr/meteocatpy/commit/d88e45777671c5726859c4b817a5ea02a7462ae4))
105
-
106
- - Add predictions to client
107
- ([`e292acb`](https://github.com/figorr/meteocatpy/commit/e292acb3aa68415f3dd06d8ed2030fe2b18b9cb4))
108
-
109
- - Fix base_url
110
- ([`3850642`](https://github.com/figorr/meteocatpy/commit/3850642390eb85962e0ac2d13d6b72effd985f53))
111
-
112
- - Add new dependencies
113
- ([`dd7ff23`](https://github.com/figorr/meteocatpy/commit/dd7ff23fc7131187dd2c82cd57c2e6bcabfcea42))
114
-
115
- - Readme
116
- ([`cb7cc7f`](https://github.com/figorr/meteocatpy/commit/cb7cc7fa33a388dde7e13563bc060d8a8a7265cf))
117
-
118
- - Readme
119
- ([`21d88e7`](https://github.com/figorr/meteocatpy/commit/21d88e77ea206905161f09223f2d6f265958e98d))
120
-
121
- - Add test_client
122
- ([`d878f74`](https://github.com/figorr/meteocatpy/commit/d878f7403716254b49203dc8f4589177bcbabc56))
123
-
124
- - Fix _secrets
125
- ([`3adf076`](https://github.com/figorr/meteocatpy/commit/3adf076060718b0445ab9ff606e396ce2974433a))
126
-
127
- - Fix const.py
128
- ([`c268acc`](https://github.com/figorr/meteocatpy/commit/c268acc417d8e8a550d2d74636e35e4268802dc6))
129
-
130
- - Fix description
131
- ([`7afeb64`](https://github.com/figorr/meteocatpy/commit/7afeb643c5c8d906f4a497a9d177d264d25506dd))
132
-
133
- - Fix interface.py
134
- ([`6dbc4c0`](https://github.com/figorr/meteocatpy/commit/6dbc4c0a1d644e58cb8c9b69b5ff812759ab25c0))
135
-
136
- - Add filetree
137
- ([`1d1fad8`](https://github.com/figorr/meteocatpy/commit/1d1fad8ee1a50757396b6fd8ba8f8c77b243e1dd))
1
+ ## [0.0.9](https://github.com/figorr/meteocatpy/compare/v0.0.8...v0.0.9) (2024-12-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 0.0.9 ([0cf6bf8](https://github.com/figorr/meteocatpy/commit/0cf6bf888c572c3477a1385a06a753fc0096fc95))
7
+ * fix cache dir ([3cafd2f](https://github.com/figorr/meteocatpy/commit/3cafd2fb0ec2fcdf9d94cf3adb3fcb264aabeb9e))
8
+
9
+ ## [0.0.8](https://github.com/figorr/meteocatpy/compare/v0.0.7...v0.0.8) (2024-12-08)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * 0.0.8 ([ae21e62](https://github.com/figorr/meteocatpy/commit/ae21e62c88b1ea20b94d5feb6eb8f5dfa07de509))
15
+ * fix json data ([91df89c](https://github.com/figorr/meteocatpy/commit/91df89c9746588e20a2073770313de20fa8dd64b))
16
+
17
+ ## [0.0.7](https://github.com/figorr/meteocatpy/compare/v0.0.6...v0.0.7) (2024-12-07)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * 0.0.7 ([7908841](https://github.com/figorr/meteocatpy/commit/7908841eee0b00b563b6b6266f4a6b71bc503ef2))
23
+ * add github jobs ([d61a1e8](https://github.com/figorr/meteocatpy/commit/d61a1e846a5a34b505ca4520e68152bac21ace23))
24
+ * add semantic-release ([cbecdd0](https://github.com/figorr/meteocatpy/commit/cbecdd05eade74445d5458100c3c42f2eaff4506))
25
+ * CHANGELOG.md ([6cd6655](https://github.com/figorr/meteocatpy/commit/6cd665549663377ac4a73a20c6e5d4b8f6f859b9))
26
+ * delete meteocat_cache ([05371e8](https://github.com/figorr/meteocatpy/commit/05371e8aa53365d5bbc027d1658e154957e225fe))
27
+ * fix Content-Type : application.json for headers ([a79bb1c](https://github.com/figorr/meteocatpy/commit/a79bb1ced0a1f2def294b5964840ea938c469d57))
28
+ * fix data recovery data ([fc93719](https://github.com/figorr/meteocatpy/commit/fc93719d7d601810771bd89dcd8715686843f836))
29
+ * fix gitlab jobs ([7ee5b57](https://github.com/figorr/meteocatpy/commit/7ee5b5714e27b3f9031d5b9b81fe100e1064f0da))
30
+ * ignore node_modules ([8b7f87c](https://github.com/figorr/meteocatpy/commit/8b7f87c5bf6b08211925824fd02dd0fdbbfced9b))
31
+ * ignore pytest_cache ([99e99ba](https://github.com/figorr/meteocatpy/commit/99e99baf9a79529e63a0db47c76c7b150432f566))
32
+ * new repo file structure ([bd7e438](https://github.com/figorr/meteocatpy/commit/bd7e438040255ddbcc375fd67469704a83bf5dfe))
33
+
34
+ ## v0.0.1 (2024-11-27)
35
+
36
+ ### Bug Fixes
37
+
38
+ - Version 0.0.3
39
+ ([`3be4659`](https://github.com/figorr/meteocatpy/commit/3be4659a5df47b942f3d24594dc1140eecb65388))
40
+
41
+ - Version 0.0.3
42
+ ([`987d7c8`](https://github.com/figorr/meteocatpy/commit/987d7c89f770f11aa37267815b799dd90d6230be))
43
+
44
+ - Fix version 0.0.3
45
+ ([`6caaa46`](https://github.com/figorr/meteocatpy/commit/6caaa460dbee29f10a8566e0925ceddb94e4167e))
46
+
47
+ - Version to 0.0.2
48
+ ([`0d47a4c`](https://github.com/figorr/meteocatpy/commit/0d47a4c1d8f64d0f6b32a79b909cda79ef236825))
49
+
50
+ - 0.0.1
51
+ ([`a840913`](https://github.com/figorr/meteocatpy/commit/a840913c7cab075bf7b242ecbf0c93c0471f27f1))
52
+
53
+ - Fix version to 0.0.2
54
+ ([`9c1b294`](https://github.com/figorr/meteocatpy/commit/9c1b294faa060988ecf41fbebcb01345ec940dce))
55
+
56
+ - 0.0.1
57
+ ([`304baee`](https://github.com/figorr/meteocatpy/commit/304baeef7d988b3d38a39a2064230ccf3e34e5b5))
58
+
59
+ - Version 0.0.2
60
+ ([`94fe6d1`](https://github.com/figorr/meteocatpy/commit/94fe6d1c6637c69d38eaec6b86463e260d1faf7f))
61
+
62
+ - Python 3.12
63
+ ([`3b41f89`](https://github.com/figorr/meteocatpy/commit/3b41f895150a335f9cce7df3932d162bd8a6ed2e))
64
+
65
+ - 0.0.1
66
+ ([`21b136e`](https://github.com/figorr/meteocatpy/commit/21b136e53b20484ca451b8ae7ea346723e343cd0))
67
+
68
+ - New repo file structure
69
+ ([`d4369e5`](https://github.com/figorr/meteocatpy/commit/d4369e5e3048fee4fb7edf445814f4e765178d4d))
70
+
71
+ - Set town_id as codi_municipi and variable_id as codi_variable
72
+ ([`8cfa246`](https://github.com/figorr/meteocatpy/commit/8cfa2465a949bfd46c60d7a4d824bd41eb5af507))
73
+
74
+ - Set town_id as codi
75
+ ([`f4f1ee4`](https://github.com/figorr/meteocatpy/commit/f4f1ee403d16620e57c02e66771aa6b3483b6a89))
76
+
77
+ - Set station_id as codiEstacio
78
+ ([`d8d75e4`](https://github.com/figorr/meteocatpy/commit/d8d75e484c3c191e7db70a20db9ce27e2b7d182c))
79
+
80
+ - Add new classes
81
+ ([`aebd5c1`](https://github.com/figorr/meteocatpy/commit/aebd5c1011a9ba53ddcf239fa6f6ab2c9fc052a4))
82
+
83
+ - Fix status code UnknownAPIError
84
+ ([`d611d42`](https://github.com/figorr/meteocatpy/commit/d611d42ddc12ff792d53894ba0c8007a1a9678ab))
85
+
86
+ - Fix status code for UnknownAPIError
87
+ ([`3f4606b`](https://github.com/figorr/meteocatpy/commit/3f4606b5ec023254cb73efb2d5cf306974533898))
88
+
89
+ - Fix README
90
+ ([`1c5553d`](https://github.com/figorr/meteocatpy/commit/1c5553d9b430563cb35f2d53fd51b4be00bf25aa))
91
+
92
+ - Add MeteocatSymbols
93
+ ([`f30b115`](https://github.com/figorr/meteocatpy/commit/f30b1150d0bc78908287a1ef72827590a089f003))
94
+
95
+ - Fix tests
96
+ ([`93cdcfd`](https://github.com/figorr/meteocatpy/commit/93cdcfd753d4ab7770ae85ad7c4e035802b8e9d2))
97
+
98
+ - Set symbol categories
99
+ ([`88a5016`](https://github.com/figorr/meteocatpy/commit/88a5016935d6103183672a79bf0423e0893cefa1))
100
+
101
+ - Include new classes
102
+ ([`f4ce82b`](https://github.com/figorr/meteocatpy/commit/f4ce82bffef80a884e02962548d6f5da7466e3b1))
103
+
104
+ - Improved error handling
105
+ ([`03699b7`](https://github.com/figorr/meteocatpy/commit/03699b74791db3bb695d9613a215aee3da6a9929))
106
+
107
+ - Improved error handling
108
+ ([`786005a`](https://github.com/figorr/meteocatpy/commit/786005a43435cb2217575dd1e528ff4f5a403e35))
109
+
110
+ - Improved error handling
111
+ ([`295b356`](https://github.com/figorr/meteocatpy/commit/295b3560864e4420008aa80cbc01c96e1fbb67f8))
112
+
113
+ - Delete test files
114
+ ([`33f3751`](https://github.com/figorr/meteocatpy/commit/33f3751e645bda30a70475efe5404f6f4ad0f96f))
115
+
116
+ - Fix integration_test
117
+ ([`b7e8024`](https://github.com/figorr/meteocatpy/commit/b7e8024760401537d9ad28e026d4948383d9db3e))
118
+
119
+ - Add predictions resource url
120
+ ([`d88e457`](https://github.com/figorr/meteocatpy/commit/d88e45777671c5726859c4b817a5ea02a7462ae4))
121
+
122
+ - Add predictions to client
123
+ ([`e292acb`](https://github.com/figorr/meteocatpy/commit/e292acb3aa68415f3dd06d8ed2030fe2b18b9cb4))
124
+
125
+ - Fix base_url
126
+ ([`3850642`](https://github.com/figorr/meteocatpy/commit/3850642390eb85962e0ac2d13d6b72effd985f53))
127
+
128
+ - Add new dependencies
129
+ ([`dd7ff23`](https://github.com/figorr/meteocatpy/commit/dd7ff23fc7131187dd2c82cd57c2e6bcabfcea42))
130
+
131
+ - Readme
132
+ ([`cb7cc7f`](https://github.com/figorr/meteocatpy/commit/cb7cc7fa33a388dde7e13563bc060d8a8a7265cf))
133
+
134
+ - Readme
135
+ ([`21d88e7`](https://github.com/figorr/meteocatpy/commit/21d88e77ea206905161f09223f2d6f265958e98d))
136
+
137
+ - Add test_client
138
+ ([`d878f74`](https://github.com/figorr/meteocatpy/commit/d878f7403716254b49203dc8f4589177bcbabc56))
139
+
140
+ - Fix _secrets
141
+ ([`3adf076`](https://github.com/figorr/meteocatpy/commit/3adf076060718b0445ab9ff606e396ce2974433a))
142
+
143
+ - Fix const.py
144
+ ([`c268acc`](https://github.com/figorr/meteocatpy/commit/c268acc417d8e8a550d2d74636e35e4268802dc6))
145
+
146
+ - Fix description
147
+ ([`7afeb64`](https://github.com/figorr/meteocatpy/commit/7afeb643c5c8d906f4a497a9d177d264d25506dd))
148
+
149
+ - Fix interface.py
150
+ ([`6dbc4c0`](https://github.com/figorr/meteocatpy/commit/6dbc4c0a1d644e58cb8c9b69b5ff812759ab25c0))
151
+
152
+ - Add filetree
153
+ ([`1d1fad8`](https://github.com/figorr/meteocatpy/commit/1d1fad8ee1a50757396b6fd8ba8f8c77b243e1dd))