forexy 2025.3.31__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.
- forexy-2025.3.31/PKG-INFO +28 -0
- forexy-2025.3.31/forexy/LICENSE +24 -0
- forexy-2025.3.31/forexy/dict_9131.json +156025 -0
- forexy-2025.3.31/forexy/dict_arc_new.044 +250 -0
- forexy-2025.3.31/forexy/dict_arc_sup.227 +75 -0
- forexy-2025.3.31/forexy/nubase_4.mas20.txt +5868 -0
- forexy-2025.3.31/forexy/x4_dic227.py +447 -0
- forexy-2025.3.31/forexy/x4_dica2j.py +2000 -0
- forexy-2025.3.31/forexy/x4_dicdis.py +325 -0
- forexy-2025.3.31/forexy/x4_dicj2a.py +918 -0
- forexy-2025.3.31/forexy/x4_dicj2t.py +1106 -0
- forexy-2025.3.31/forexy/x4_dirini.py +290 -0
- forexy-2025.3.31/forexy/x4_dirupd.py +527 -0
- forexy-2025.3.31/forexy/x4_extmul.py +209 -0
- forexy-2025.3.31/forexy/x4_j4tox4.py +724 -0
- forexy-2025.3.31/forexy/x4_makcov.py +1124 -0
- forexy-2025.3.31/forexy/x4_maklib.py +202 -0
- forexy-2025.3.31/forexy/x4_poipoi.py +622 -0
- forexy-2025.3.31/forexy/x4_refbib.py +661 -0
- forexy-2025.3.31/forexy/x4_refdoi.py +240 -0
- forexy-2025.3.31/forexy/x4_seqadd.py +719 -0
- forexy-2025.3.31/forexy/x4_spells.py +271 -0
- forexy-2025.3.31/forexy/x4_x4toj4.py +2392 -0
- forexy-2025.3.31/forexy.egg-info/PKG-INFO +28 -0
- forexy-2025.3.31/forexy.egg-info/SOURCES.txt +28 -0
- forexy-2025.3.31/forexy.egg-info/dependency_links.txt +1 -0
- forexy-2025.3.31/forexy.egg-info/requires.txt +3 -0
- forexy-2025.3.31/forexy.egg-info/top_level.txt +1 -0
- forexy-2025.3.31/setup.cfg +4 -0
- forexy-2025.3.31/setup.py +35 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: forexy
|
|
3
|
+
Version: 2025.3.31
|
|
4
|
+
Summary: EXFOR utility codes
|
|
5
|
+
Home-page: https://nds.iaea.org/nrdc/
|
|
6
|
+
Author: Naohiko Otsuka
|
|
7
|
+
Author-email: n.otsuka@iaea.org
|
|
8
|
+
License: MIT
|
|
9
|
+
Description: # ForEXy
|
|
10
|
+
Utility codes for the EXFOR Library
|
|
11
|
+
|
|
12
|
+
## Requirements
|
|
13
|
+
* pylatexenc
|
|
14
|
+
* pyspellchecker
|
|
15
|
+
* requests
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
```
|
|
19
|
+
pip install forexy
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Reference
|
|
23
|
+
Naohiko Otuka, "ForEXy: Utility Codes for EXFOR Library", Report [IAEA-NDS-0244](https://doi.org/10.61092/iaea.hz1z-0dx3), International Atomic Energy Agency, 2025.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Keywords: EXFOR JSON
|
|
27
|
+
Platform: UNKNOWN
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Nothing in this license shall be construed as a waiver, either express or
|
|
2
|
+
implied, of any of the privileges and immunities accorded to the IAEA by its
|
|
3
|
+
Member States.
|
|
4
|
+
|
|
5
|
+
MIT License
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2023-2025 International Atomic Energy Agency
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
10
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
11
|
+
the Software without restriction, including without limitation the rights to
|
|
12
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
13
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
14
|
+
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, FITNESS
|
|
21
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
22
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
23
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
24
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|