tickerdata 0.1.0__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.
@@ -0,0 +1,25 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 tickerdata contributors
4
+
5
+ This license applies to the software code in this project. Data, vocabulary
6
+ content, suggestions, and third-party materials are excluded; see
7
+ docs/licensing.md for their separate terms.
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
@@ -0,0 +1,8 @@
1
+ Open Data Commons Attribution License 1.0 (ODC-By-1.0)
2
+
3
+ Canonical license URI:
4
+
5
+ https://opendatacommons.org/licenses/by/1-0/
6
+
7
+ This URI is supplied under Section 4.2(b) of ODC-By-1.0. The attribution and
8
+ rights notices for this database distribution are in PACKAGE-NOTICE.md.
@@ -0,0 +1,25 @@
1
+ # tickerdata package notice
2
+
3
+ The reader software is provided under the MIT License.
4
+
5
+ To the extent the tickerdata contributors hold copyright or database rights in
6
+ the selection and arrangement of the maintained database, that database is
7
+ made available under the Open Data Commons Attribution License 1.0
8
+ (ODC-By-1.0).
9
+
10
+ Required attribution for public use:
11
+
12
+ > Contains information from tickerdata, made available under the Open Data
13
+ > Commons Attribution License: https://opendatacommons.org/licenses/by/1-0/
14
+
15
+ ODC-By licenses database rights and does not automatically license every
16
+ individual item of content. Security names and trademarks belong to their
17
+ respective owners. External classifications and source-derived facts may be
18
+ subject to separate terms. See:
19
+
20
+ - https://github.com/udlrdotai/tickerdata/blob/main/docs/licensing.md
21
+ - https://github.com/udlrdotai/tickerdata/blob/main/docs/industry-classification.md
22
+
23
+ This metadata is provided as-is and may be incomplete or incorrect. It is not
24
+ market data, trading functionality, portfolio management, or investment
25
+ advice.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: tickerdata
3
+ Version: 0.1.0
4
+ Summary: Offline, versioned ticker metadata lookup
5
+ Author: tickerdata contributors
6
+ License-Expression: MIT AND ODC-By-1.0
7
+ Project-URL: Repository, https://github.com/udlrdotai/tickerdata
8
+ Keywords: ticker,symbol,metadata,offline
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE-MIT
14
+ License-File: LICENSE-ODC-BY
15
+ License-File: NOTICE.md
16
+ Dynamic: license-file
17
+
18
+ # tickerdata
19
+
20
+ Offline, versioned ticker metadata lookup for Python. The package contains a
21
+ fixed snapshot of reviewed metadata and never accesses the network.
22
+
23
+ ```python
24
+ from tickerdata import lookup
25
+
26
+ instrument = lookup(
27
+ "BRK-B",
28
+ mic="XNYS",
29
+ provider="yahoo",
30
+ include_inactive=False,
31
+ )
32
+ ```
33
+
34
+ `lookup` does not rewrite punctuation or guess between ambiguous listings.
35
+ Unknown and ambiguous queries raise `UnknownSymbolError` and
36
+ `AmbiguousSymbolError`.
37
+
38
+ This package provides metadata only. It does not provide market data, trading,
39
+ portfolio management, or investment advice.
40
+
41
+ The reader code is MIT licensed. Database rights in the maintained compilation
42
+ are licensed under ODC-By 1.0 subject to `NOTICE.md`; individual contents and
43
+ external materials may remain subject to their own terms.
@@ -0,0 +1,26 @@
1
+ # tickerdata
2
+
3
+ Offline, versioned ticker metadata lookup for Python. The package contains a
4
+ fixed snapshot of reviewed metadata and never accesses the network.
5
+
6
+ ```python
7
+ from tickerdata import lookup
8
+
9
+ instrument = lookup(
10
+ "BRK-B",
11
+ mic="XNYS",
12
+ provider="yahoo",
13
+ include_inactive=False,
14
+ )
15
+ ```
16
+
17
+ `lookup` does not rewrite punctuation or guess between ambiguous listings.
18
+ Unknown and ambiguous queries raise `UnknownSymbolError` and
19
+ `AmbiguousSymbolError`.
20
+
21
+ This package provides metadata only. It does not provide market data, trading,
22
+ portfolio management, or investment advice.
23
+
24
+ The reader code is MIT licensed. Database rights in the maintained compilation
25
+ are licensed under ODC-By 1.0 subject to `NOTICE.md`; individual contents and
26
+ external materials may remain subject to their own terms.
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "tickerdata"
7
+ version = "0.1.0"
8
+ description = "Offline, versioned ticker metadata lookup"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "MIT AND ODC-By-1.0"
12
+ license-files = ["LICENSE-MIT", "LICENSE-ODC-BY", "NOTICE.md"]
13
+ authors = [{ name = "tickerdata contributors" }]
14
+ keywords = ["ticker", "symbol", "metadata", "offline"]
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ ]
19
+
20
+ [project.urls]
21
+ Repository = "https://github.com/udlrdotai/tickerdata"
22
+
23
+ [tool.setuptools]
24
+ include-package-data = true
25
+
26
+ [tool.setuptools.package-data]
27
+ tickerdata = ["data/*.json"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ from .reader import AmbiguousSymbolError, UnknownSymbolError, lookup
2
+
3
+ __all__ = ["lookup", "UnknownSymbolError", "AmbiguousSymbolError"]