notoecd 0.1.3__tar.gz → 0.1.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notoecd
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Unofficial library for interacting with the OECD Data Explorer through Python.
5
5
  Author-email: Daniel Vegara Balsa <daniel.vegarabalsa@oecd.org>
6
6
  License-Expression: MIT
@@ -16,16 +16,16 @@ Dynamic: license-file
16
16
 
17
17
  ⚠️ **Unofficial package, not endorsed by the OECD.**
18
18
 
19
- A lightweight Python interface for exploring OECD SDMX structures and downloading OECD datasets.
19
+ A lightweight Python interface for exploring OECD SDMX structures and downloading OECD datasets.
20
20
 
21
21
  The package provides utilities for:
22
22
 
23
- - Discovering dataset metadata
24
- - Searching for relevant datasets using keyword matching
25
- - Exploring the structure and code lists of a dataset
26
- - Fetching filtered SDMX data directly into a pandas DataFrame
23
+ - Discovering dataset metadata
24
+ - Searching for relevant datasets using keyword matching
25
+ - Exploring the structure and code lists of a dataset
26
+ - Fetching filtered SDMX data directly into a pandas DataFrame
27
27
 
28
- ------------------------------------------------------------
28
+ ---
29
29
 
30
30
  ## Installation
31
31
 
@@ -33,7 +33,7 @@ You can install the package by running:
33
33
 
34
34
  pip install notoecd
35
35
 
36
- ------------------------------------------------------------
36
+ ---
37
37
 
38
38
  ## Quick Start
39
39
 
@@ -45,24 +45,24 @@ The main functions in this module are:
45
45
  get_structure(agencyID, dataflowID) -> Structure
46
46
  get_df(agencyID, dataflowID, filters) -> pd.DataFrame
47
47
 
48
- ------------------------------------------------------------
48
+ ---
49
49
 
50
50
  ## Searching for datasets
51
51
 
52
52
  `search_keywords` performs:
53
53
 
54
- - Normalized text matching
55
- - Accent-insensitive search
56
- - Multi-keyword OR matching
57
- - Ranking by number of matched keywords
54
+ - Normalized text matching
55
+ - Accent-insensitive search
56
+ - Multi-keyword OR matching
57
+ - Ranking by number of matched keywords
58
58
 
59
59
  Example:
60
60
 
61
- hits = notoecd.search_keywords(['gross domestic product', 'tl2', 'tl3'])
61
+ hits = notoecd.search_keywords('gross domestic product', 'tl2', 'tl3')
62
62
 
63
63
  This returns datasets that mention GDP and regional levels (TL2/TL3). It gives their name, description, and identifiers (agencyID and dataflowID), which we will need for the next step.
64
64
 
65
- ------------------------------------------------------------
65
+ ---
66
66
 
67
67
  ## Inspecting dataset structure
68
68
 
@@ -87,7 +87,7 @@ This shows all filters and their available values.
87
87
 
88
88
  This shows the available measures and units used in the dataset.
89
89
 
90
- ------------------------------------------------------------
90
+ ---
91
91
 
92
92
  ## Filtering and downloading data
93
93
 
@@ -108,7 +108,7 @@ Fetch the filtered dataset:
108
108
 
109
109
  The returned object is a pandas DataFrame containing the requested subset of OECD SDMX data.
110
110
 
111
- ------------------------------------------------------------
111
+ ---
112
112
 
113
113
  ## Examples
114
114
 
@@ -2,16 +2,16 @@
2
2
 
3
3
  ⚠️ **Unofficial package, not endorsed by the OECD.**
4
4
 
5
- A lightweight Python interface for exploring OECD SDMX structures and downloading OECD datasets.
5
+ A lightweight Python interface for exploring OECD SDMX structures and downloading OECD datasets.
6
6
 
7
7
  The package provides utilities for:
8
8
 
9
- - Discovering dataset metadata
10
- - Searching for relevant datasets using keyword matching
11
- - Exploring the structure and code lists of a dataset
12
- - Fetching filtered SDMX data directly into a pandas DataFrame
9
+ - Discovering dataset metadata
10
+ - Searching for relevant datasets using keyword matching
11
+ - Exploring the structure and code lists of a dataset
12
+ - Fetching filtered SDMX data directly into a pandas DataFrame
13
13
 
14
- ------------------------------------------------------------
14
+ ---
15
15
 
16
16
  ## Installation
17
17
 
@@ -19,7 +19,7 @@ You can install the package by running:
19
19
 
20
20
  pip install notoecd
21
21
 
22
- ------------------------------------------------------------
22
+ ---
23
23
 
24
24
  ## Quick Start
25
25
 
@@ -31,24 +31,24 @@ The main functions in this module are:
31
31
  get_structure(agencyID, dataflowID) -> Structure
32
32
  get_df(agencyID, dataflowID, filters) -> pd.DataFrame
33
33
 
34
- ------------------------------------------------------------
34
+ ---
35
35
 
36
36
  ## Searching for datasets
37
37
 
38
38
  `search_keywords` performs:
39
39
 
40
- - Normalized text matching
41
- - Accent-insensitive search
42
- - Multi-keyword OR matching
43
- - Ranking by number of matched keywords
40
+ - Normalized text matching
41
+ - Accent-insensitive search
42
+ - Multi-keyword OR matching
43
+ - Ranking by number of matched keywords
44
44
 
45
45
  Example:
46
46
 
47
- hits = notoecd.search_keywords(['gross domestic product', 'tl2', 'tl3'])
47
+ hits = notoecd.search_keywords('gross domestic product', 'tl2', 'tl3')
48
48
 
49
49
  This returns datasets that mention GDP and regional levels (TL2/TL3). It gives their name, description, and identifiers (agencyID and dataflowID), which we will need for the next step.
50
50
 
51
- ------------------------------------------------------------
51
+ ---
52
52
 
53
53
  ## Inspecting dataset structure
54
54
 
@@ -73,7 +73,7 @@ This shows all filters and their available values.
73
73
 
74
74
  This shows the available measures and units used in the dataset.
75
75
 
76
- ------------------------------------------------------------
76
+ ---
77
77
 
78
78
  ## Filtering and downloading data
79
79
 
@@ -94,7 +94,7 @@ Fetch the filtered dataset:
94
94
 
95
95
  The returned object is a pandas DataFrame containing the requested subset of OECD SDMX data.
96
96
 
97
- ------------------------------------------------------------
97
+ ---
98
98
 
99
99
  ## Examples
100
100
 
@@ -1,4 +1,4 @@
1
- __version__ = "0.1.3"
1
+ __version__ = "0.1.4"
2
2
 
3
3
  from .calls import get_df
4
4
  from .structure import get_structure
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notoecd
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Unofficial library for interacting with the OECD Data Explorer through Python.
5
5
  Author-email: Daniel Vegara Balsa <daniel.vegarabalsa@oecd.org>
6
6
  License-Expression: MIT
@@ -16,16 +16,16 @@ Dynamic: license-file
16
16
 
17
17
  ⚠️ **Unofficial package, not endorsed by the OECD.**
18
18
 
19
- A lightweight Python interface for exploring OECD SDMX structures and downloading OECD datasets.
19
+ A lightweight Python interface for exploring OECD SDMX structures and downloading OECD datasets.
20
20
 
21
21
  The package provides utilities for:
22
22
 
23
- - Discovering dataset metadata
24
- - Searching for relevant datasets using keyword matching
25
- - Exploring the structure and code lists of a dataset
26
- - Fetching filtered SDMX data directly into a pandas DataFrame
23
+ - Discovering dataset metadata
24
+ - Searching for relevant datasets using keyword matching
25
+ - Exploring the structure and code lists of a dataset
26
+ - Fetching filtered SDMX data directly into a pandas DataFrame
27
27
 
28
- ------------------------------------------------------------
28
+ ---
29
29
 
30
30
  ## Installation
31
31
 
@@ -33,7 +33,7 @@ You can install the package by running:
33
33
 
34
34
  pip install notoecd
35
35
 
36
- ------------------------------------------------------------
36
+ ---
37
37
 
38
38
  ## Quick Start
39
39
 
@@ -45,24 +45,24 @@ The main functions in this module are:
45
45
  get_structure(agencyID, dataflowID) -> Structure
46
46
  get_df(agencyID, dataflowID, filters) -> pd.DataFrame
47
47
 
48
- ------------------------------------------------------------
48
+ ---
49
49
 
50
50
  ## Searching for datasets
51
51
 
52
52
  `search_keywords` performs:
53
53
 
54
- - Normalized text matching
55
- - Accent-insensitive search
56
- - Multi-keyword OR matching
57
- - Ranking by number of matched keywords
54
+ - Normalized text matching
55
+ - Accent-insensitive search
56
+ - Multi-keyword OR matching
57
+ - Ranking by number of matched keywords
58
58
 
59
59
  Example:
60
60
 
61
- hits = notoecd.search_keywords(['gross domestic product', 'tl2', 'tl3'])
61
+ hits = notoecd.search_keywords('gross domestic product', 'tl2', 'tl3')
62
62
 
63
63
  This returns datasets that mention GDP and regional levels (TL2/TL3). It gives their name, description, and identifiers (agencyID and dataflowID), which we will need for the next step.
64
64
 
65
- ------------------------------------------------------------
65
+ ---
66
66
 
67
67
  ## Inspecting dataset structure
68
68
 
@@ -87,7 +87,7 @@ This shows all filters and their available values.
87
87
 
88
88
  This shows the available measures and units used in the dataset.
89
89
 
90
- ------------------------------------------------------------
90
+ ---
91
91
 
92
92
  ## Filtering and downloading data
93
93
 
@@ -108,7 +108,7 @@ Fetch the filtered dataset:
108
108
 
109
109
  The returned object is a pandas DataFrame containing the requested subset of OECD SDMX data.
110
110
 
111
- ------------------------------------------------------------
111
+ ---
112
112
 
113
113
  ## Examples
114
114
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "notoecd"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  description = "Unofficial library for interacting with the OECD Data Explorer through Python."
9
9
  readme = "README.md"
10
10
  license = "MIT"
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