refsource 0.1.0__tar.gz → 0.1.1__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: refsource
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Look up reference data that carries its own source: every value comes with the URL it was read from and a verbatim quote from that page.
5
5
  Author: referencesource.org
6
6
  License: MIT
@@ -49,7 +49,7 @@ A value is a plain string everywhere a string is expected, and it carries its
49
49
  own citation. That is the whole idea: an answer you can check beats an answer
50
50
  you have to trust.
51
51
 
52
- 191 datasets, 73,380 records, from
52
+ 272 datasets, 90,792 records, from
53
53
  **[referencesource.org](https://referencesource.org)** — regulatory thresholds
54
54
  and deadlines, licensing rules by US state, version and end-of-support
55
55
  calendars, certification registers, exposure limits, insurance minimums,
@@ -189,7 +189,7 @@ $ refsource show conforming-loan-limits 01001 --json
189
189
 
190
190
  ## What is in the catalogue
191
191
 
192
- A sample of the 191 datasets:
192
+ A sample of the 272 datasets:
193
193
 
194
194
  | dataset | what it answers |
195
195
  |---|---|
@@ -221,8 +221,13 @@ dataset.
221
221
 
222
222
  ## Related
223
223
 
224
- - **MCP server** — the same catalogue as tools for AI assistants:
225
- `npx referencesource-mcp`, or add
226
- `https://referencesource.org/mcp` to any MCP client.
224
+ - **[`refsource` for JavaScript](https://www.npmjs.com/package/refsource)** —
225
+ the identical package on npm: same catalogue, same citations,
226
+ `npm install refsource`.
227
+ - **[`referencesource-mcp`](https://www.npmjs.com/package/referencesource-mcp)**
228
+ — the same catalogue as tools for AI assistants: `npx referencesource-mcp`,
229
+ or add `https://referencesource.org/mcp` to any MCP client.
227
230
  - **Bulk data** — every dataset publishes `data.json` at its own URL, and the
228
231
  catalogue is at https://referencesource.org/catalog.json.
232
+ - **This package on PyPI** —
233
+ [pypi.org/project/refsource](https://pypi.org/project/refsource/).
@@ -27,7 +27,7 @@ A value is a plain string everywhere a string is expected, and it carries its
27
27
  own citation. That is the whole idea: an answer you can check beats an answer
28
28
  you have to trust.
29
29
 
30
- 191 datasets, 73,380 records, from
30
+ 272 datasets, 90,792 records, from
31
31
  **[referencesource.org](https://referencesource.org)** — regulatory thresholds
32
32
  and deadlines, licensing rules by US state, version and end-of-support
33
33
  calendars, certification registers, exposure limits, insurance minimums,
@@ -167,7 +167,7 @@ $ refsource show conforming-loan-limits 01001 --json
167
167
 
168
168
  ## What is in the catalogue
169
169
 
170
- A sample of the 191 datasets:
170
+ A sample of the 272 datasets:
171
171
 
172
172
  | dataset | what it answers |
173
173
  |---|---|
@@ -199,8 +199,13 @@ dataset.
199
199
 
200
200
  ## Related
201
201
 
202
- - **MCP server** — the same catalogue as tools for AI assistants:
203
- `npx referencesource-mcp`, or add
204
- `https://referencesource.org/mcp` to any MCP client.
202
+ - **[`refsource` for JavaScript](https://www.npmjs.com/package/refsource)** —
203
+ the identical package on npm: same catalogue, same citations,
204
+ `npm install refsource`.
205
+ - **[`referencesource-mcp`](https://www.npmjs.com/package/referencesource-mcp)**
206
+ — the same catalogue as tools for AI assistants: `npx referencesource-mcp`,
207
+ or add `https://referencesource.org/mcp` to any MCP client.
205
208
  - **Bulk data** — every dataset publishes `data.json` at its own URL, and the
206
209
  catalogue is at https://referencesource.org/catalog.json.
210
+ - **This package on PyPI** —
211
+ [pypi.org/project/refsource](https://pypi.org/project/refsource/).
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "refsource"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Look up reference data that carries its own source: every value comes with the URL it was read from and a verbatim quote from that page."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -36,7 +36,7 @@ import urllib.error
36
36
  import urllib.request
37
37
  import warnings
38
38
 
39
- __version__ = "0.1.0"
39
+ __version__ = "0.1.1"
40
40
  __all__ = [
41
41
  "lookup", "search", "get", "dataset", "datasets", "fields", "configure",
42
42
  "Record", "Value", "Dataset",