folio-migration-tools 1.2.1__py3-none-any.whl → 1.9.10__py3-none-any.whl

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 (73) hide show
  1. folio_migration_tools/__init__.py +11 -0
  2. folio_migration_tools/__main__.py +169 -85
  3. folio_migration_tools/circulation_helper.py +96 -59
  4. folio_migration_tools/config_file_load.py +66 -0
  5. folio_migration_tools/custom_dict.py +6 -4
  6. folio_migration_tools/custom_exceptions.py +21 -19
  7. folio_migration_tools/extradata_writer.py +46 -0
  8. folio_migration_tools/folder_structure.py +63 -66
  9. folio_migration_tools/helper.py +29 -21
  10. folio_migration_tools/holdings_helper.py +57 -34
  11. folio_migration_tools/i18n_config.py +9 -0
  12. folio_migration_tools/library_configuration.py +173 -13
  13. folio_migration_tools/mapper_base.py +317 -106
  14. folio_migration_tools/mapping_file_transformation/courses_mapper.py +203 -0
  15. folio_migration_tools/mapping_file_transformation/holdings_mapper.py +83 -69
  16. folio_migration_tools/mapping_file_transformation/item_mapper.py +98 -94
  17. folio_migration_tools/mapping_file_transformation/manual_fee_fines_mapper.py +352 -0
  18. folio_migration_tools/mapping_file_transformation/mapping_file_mapper_base.py +702 -223
  19. folio_migration_tools/mapping_file_transformation/notes_mapper.py +90 -0
  20. folio_migration_tools/mapping_file_transformation/order_mapper.py +492 -0
  21. folio_migration_tools/mapping_file_transformation/organization_mapper.py +389 -0
  22. folio_migration_tools/mapping_file_transformation/ref_data_mapping.py +38 -27
  23. folio_migration_tools/mapping_file_transformation/user_mapper.py +149 -361
  24. folio_migration_tools/marc_rules_transformation/conditions.py +650 -246
  25. folio_migration_tools/marc_rules_transformation/holdings_statementsparser.py +292 -130
  26. folio_migration_tools/marc_rules_transformation/hrid_handler.py +244 -0
  27. folio_migration_tools/marc_rules_transformation/loc_language_codes.xml +20846 -0
  28. folio_migration_tools/marc_rules_transformation/marc_file_processor.py +300 -0
  29. folio_migration_tools/marc_rules_transformation/marc_reader_wrapper.py +136 -0
  30. folio_migration_tools/marc_rules_transformation/rules_mapper_authorities.py +241 -0
  31. folio_migration_tools/marc_rules_transformation/rules_mapper_base.py +681 -201
  32. folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py +395 -429
  33. folio_migration_tools/marc_rules_transformation/rules_mapper_holdings.py +531 -100
  34. folio_migration_tools/migration_report.py +85 -38
  35. folio_migration_tools/migration_tasks/__init__.py +1 -3
  36. folio_migration_tools/migration_tasks/authority_transformer.py +119 -0
  37. folio_migration_tools/migration_tasks/batch_poster.py +911 -198
  38. folio_migration_tools/migration_tasks/bibs_transformer.py +121 -116
  39. folio_migration_tools/migration_tasks/courses_migrator.py +192 -0
  40. folio_migration_tools/migration_tasks/holdings_csv_transformer.py +252 -247
  41. folio_migration_tools/migration_tasks/holdings_marc_transformer.py +321 -115
  42. folio_migration_tools/migration_tasks/items_transformer.py +264 -84
  43. folio_migration_tools/migration_tasks/loans_migrator.py +506 -195
  44. folio_migration_tools/migration_tasks/manual_fee_fines_transformer.py +187 -0
  45. folio_migration_tools/migration_tasks/migration_task_base.py +364 -74
  46. folio_migration_tools/migration_tasks/orders_transformer.py +373 -0
  47. folio_migration_tools/migration_tasks/organization_transformer.py +451 -0
  48. folio_migration_tools/migration_tasks/requests_migrator.py +130 -62
  49. folio_migration_tools/migration_tasks/reserves_migrator.py +253 -0
  50. folio_migration_tools/migration_tasks/user_transformer.py +180 -139
  51. folio_migration_tools/task_configuration.py +46 -0
  52. folio_migration_tools/test_infrastructure/__init__.py +0 -0
  53. folio_migration_tools/test_infrastructure/mocked_classes.py +406 -0
  54. folio_migration_tools/transaction_migration/legacy_loan.py +148 -34
  55. folio_migration_tools/transaction_migration/legacy_request.py +65 -25
  56. folio_migration_tools/transaction_migration/legacy_reserve.py +47 -0
  57. folio_migration_tools/transaction_migration/transaction_result.py +12 -1
  58. folio_migration_tools/translations/en.json +476 -0
  59. folio_migration_tools-1.9.10.dist-info/METADATA +169 -0
  60. folio_migration_tools-1.9.10.dist-info/RECORD +67 -0
  61. {folio_migration_tools-1.2.1.dist-info → folio_migration_tools-1.9.10.dist-info}/WHEEL +1 -2
  62. folio_migration_tools-1.9.10.dist-info/entry_points.txt +3 -0
  63. folio_migration_tools/generate_schemas.py +0 -46
  64. folio_migration_tools/mapping_file_transformation/mapping_file_mapping_base_impl.py +0 -44
  65. folio_migration_tools/mapping_file_transformation/user_mapper_base.py +0 -212
  66. folio_migration_tools/marc_rules_transformation/bibs_processor.py +0 -163
  67. folio_migration_tools/marc_rules_transformation/holdings_processor.py +0 -284
  68. folio_migration_tools/report_blurbs.py +0 -219
  69. folio_migration_tools/transaction_migration/legacy_fee_fine.py +0 -36
  70. folio_migration_tools-1.2.1.dist-info/METADATA +0 -134
  71. folio_migration_tools-1.2.1.dist-info/RECORD +0 -50
  72. folio_migration_tools-1.2.1.dist-info/top_level.txt +0 -1
  73. {folio_migration_tools-1.2.1.dist-info → folio_migration_tools-1.9.10.dist-info/licenses}/LICENSE +0 -0
@@ -1,36 +0,0 @@
1
- from datetime import datetime
2
- import logging
3
- from datetime import timezone
4
- from dateutil.parser import parse
5
-
6
-
7
- class LegacyFeeFine(object):
8
- def __init__(self, legacy_fee_fine_dict, row=0):
9
- # validate
10
- correct_headers = [
11
- "item_barcode",
12
- "patron_barcode",
13
- "create_date",
14
- "remaining",
15
- "amount",
16
- ]
17
- self.errors = []
18
- for prop in correct_headers:
19
- if prop not in legacy_fee_fine_dict:
20
- self.errors.append(("Missing properties in legacy data", prop))
21
- elif not legacy_fee_fine_dict[prop]:
22
- self.errors.append(("Empty properties in legacy data", prop))
23
- try:
24
- temp_created_date: datetime = parse(legacy_fee_fine_dict["create_date"])
25
- except Exception as ee:
26
- logging.error(ee)
27
- self.errors.append(("Dates that failed to parse", prop))
28
- temp_created_date = datetime.now(timezone.utc)
29
-
30
- # good to go, set properties
31
- self.item_barcode = legacy_fee_fine_dict.get("item_barcode", "")
32
- self.patron_barcode = legacy_fee_fine_dict.get("patron_barcode", "")
33
- self.created_date = temp_created_date
34
- self.remaining = legacy_fee_fine_dict.get("remaining", "")
35
- self.amount = legacy_fee_fine_dict.get("amount", "")
36
- self.source_dict = legacy_fee_fine_dict
@@ -1,134 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: folio-migration-tools
3
- Version: 1.2.1
4
- Summary: A tool allowing you to migrate data from legacy ILS:s (Library systems) into FOLIO LSP
5
- Home-page: https://github.com/FOLIO-FSE/folio_migration_tools
6
- Author: Theodor Tolstoy
7
- Author-email: pypi.teddes@tolstoy.se
8
- License: UNKNOWN
9
- Project-URL: Bug Tracker, https://github.com/FOLIO-FSE/folio_migration_tools/issues
10
- Platform: UNKNOWN
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.9
15
- Description-Content-Type: text/markdown
16
- License-File: LICENSE
17
- Requires-Dist: appdirs (==1.4.4)
18
- Requires-Dist: argparse-prompt (==0.0.5)
19
- Requires-Dist: astroid (==2.6.5)
20
- Requires-Dist: attrs (==21.2.0)
21
- Requires-Dist: black (==21.7b0)
22
- Requires-Dist: certifi (==2021.5.30)
23
- Requires-Dist: charset-normalizer (==2.0.3)
24
- Requires-Dist: click (==8.0.1)
25
- Requires-Dist: deprecated (==1.2.12)
26
- Requires-Dist: folio-uuid (==0.2.3)
27
- Requires-Dist: folioclient (==0.39)
28
- Requires-Dist: idna (==3.2)
29
- Requires-Dist: inflection (==0.5.1)
30
- Requires-Dist: iniconfig (==1.1.1)
31
- Requires-Dist: isort (==5.9.2)
32
- Requires-Dist: joblib (==1.1.0)
33
- Requires-Dist: lazy-object-proxy (==1.6.0)
34
- Requires-Dist: lxml (==4.6.5)
35
- Requires-Dist: markdown (==3.3.4)
36
- Requires-Dist: mccabe (==0.6.1)
37
- Requires-Dist: mypy-extensions (==0.4.3)
38
- Requires-Dist: pyyaml
39
- Requires-Dist: parameterized (==0.8.1)
40
- Requires-Dist: pathspec (==0.9.0)
41
- Requires-Dist: pydantic (==1.9.0)
42
- Requires-Dist: pyhumps (==3.5.0)
43
- Requires-Dist: pylint (==3.0.0a4)
44
- Requires-Dist: pymarc (==4.1.1)
45
- Requires-Dist: pyrsistent (==0.18.0)
46
- Requires-Dist: pytest-cov (==3.0.0)
47
- Requires-Dist: python-dateutil (==2.8.2)
48
- Requires-Dist: pytz (==2021.1)
49
- Requires-Dist: regex (==2021.7.6)
50
- Requires-Dist: requests (==2.26.0)
51
- Requires-Dist: six (==1.16.0)
52
- Requires-Dist: toml (==0.10.2)
53
- Requires-Dist: tomli (==1.1.0)
54
- Requires-Dist: urllib3 (==1.26.6)
55
- Requires-Dist: wrapt (==1.12.1)
56
- Requires-Dist: py (==1.11.0) ; python_version >= "2.7" and python_version not in "3.0, 3.1, 3.2, 3.3, 3.4"
57
- Requires-Dist: packaging (==21.3) ; python_version >= "3.6"
58
- Requires-Dist: pluggy (==1.0.0) ; python_version >= "3.6"
59
- Requires-Dist: pyparsing (==3.0.7) ; python_version >= "3.6"
60
- Requires-Dist: pytest (==7.1.1) ; python_version >= "3.6"
61
- Requires-Dist: typing-extensions (==4.0.1) ; python_version >= "3.6"
62
- Requires-Dist: coverage[toml] (==6.3) ; python_version >= "3.7"
63
- Requires-Dist: setuptools (==60.6.0) ; python_version >= "3.7"
64
-
65
- # FOLIO Migration Tools
66
- ![example workflow](https://github.com/FOLIO-FSE/MARC21-To-FOLIO/actions/workflows/python-app.yml/badge.svg)[![codecov](https://codecov.io/gh/FOLIO-FSE/folio_migration_tools/branch/main/graph/badge.svg?token=ZQL5ILWWGT)](https://codecov.io/gh/FOLIO-FSE/folio_migration_tools)
67
- A toolkit that enables you to migrate data over from a legacy ILS system into [FOLIO LSP](https://www.folio.org/)
68
-
69
-
70
- The scripts requires a FOLIO tenant with reference data properly set up. The script will throw messages telling what reference data is missing.
71
- # Installing
72
- ## 1. Using pip and venv
73
- 1. Create and activate a [virtual environment](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment)
74
- 2. Install using pip: `python3 -m pip install folio_migration_tools`
75
- 3. Test the installation by running `python3 -m folio-migration-tools -h`
76
- ## 2. Using pipenv
77
- 1. Run `pipenv install folio-migration-tools`
78
- 2. Test the installation by calling `pipenv run python3 -m folio-migration-tools -h`
79
-
80
-
81
- # FOLIO migration process
82
- This repo plays the main part in a process using a collection of tools. The process itself is documented in more detail, including example configuration files, at [this template repository](https://github.com/FOLIO-FSE/migration_repo_template)
83
- In order to perform migrations according to this process, you need the following:
84
- * An Installation of [FOLIO Migration Tools](https://pypi.org/project/folio-migration-tools/). Installation instructions below.
85
- * A clone, or a separate repo created from [migration_repo_template](https://github.com/FOLIO-FSE/migration_repo_template)
86
- * Access to the [Data mapping file creator](https://data-mapping-file-creator.folio.ebsco.com/data_mapping_creation) web tool
87
- * A FOLIO tenant...
88
-
89
- # Mapping files
90
- The tool is run against a folder with a set of mapping files and data files. There is a [template repository](https://github.com/FOLIO-FSE/migration_repo_template) with examples of the files needed and documentation around it in the [Readme](https://github.com/FOLIO-FSE/migration_repo_template/blob/main/README.md). The template has everything needed to run the tools agains a FOLIO test environment.
91
-
92
- ## Bib records to Inventory and SRS records
93
- MARC mapping for Bib level records is based on the mapping-rules residing in a FOLIO tenant.
94
- Read more on this in the Readme in the [Source record manager Module repo](https://github.com/folio-org/mod-source-record-manager/blob/25283ebabf402b5870ae4b3846285230e785c17d/RuleProcessorApi.md).
95
-
96
- ![image](https://user-images.githubusercontent.com/1894384/137994473-10fea92f-1966-41d5-bd41-d6be00594b58.png)
97
- In the picture above, you can se the files needed and the files created as part of the proces.
98
-
99
- ### MFHD-to-Inventory
100
- #### Mapping rules
101
- This process creates FOLIO Holdings records . A template/example is available in [migration_repo_template](https://github.com/FOLIO-FSE/migration_repo_template). You have the option of either just create Holdings records, or creating a controlling SRS MFHD record together with the FOLIO Holdingsrecord.
102
-
103
- If you do not have MFHD records available, you can build a mapping file [this web tool](https://data-mapping-file-creator.folio.ebsco.com/data_mapping_creation) from the Item data. This will generate Holdings records to connect to the items.
104
-
105
- #### Location mapping
106
- For holdings mapping, you also need to map legacy locations to FOLIO locations. An example map file is available at [migration_repo_template](https://github.com/FOLIO-FSE/migration_repo_template)
107
-
108
- ## Items-to-Inventory
109
- Items-to-Inventory mapping is based on a json structure where the CSV headers are matched against the target fields in the FOLIO items. To create a mapping file, use the [web tool](https://data-mapping-file-creator.folio.ebsco.com/data_mapping_creation).
110
-
111
- ![image](https://user-images.githubusercontent.com/1894384/137995011-dd6a78a7-61d7-46d8-a35c-363f65c33ce0.png)
112
-
113
-
114
- ## Open loans
115
- The tools allows you to migrate open loand into FOLIO. This uses the Business logic APIs for this, which mean that the actual circulation rules are being excercised. The toolkit handles various exceptions as well, as expired users and other things that would normally block the user from checking things out. Be sure to turn off the SMTP settings before checking out anything or you will have a lot of patrons wondering...
116
-
117
- # Tests
118
- There is a test suite for Bibs-to-Instance mapping. You need to add arguments in order to run it against a FOLIO environment. The tests are run against the latest [FOLIO Bugfest environment](https://wiki.folio.org/dosearchsite.action?cql=siteSearch%20~%20%22bugfest%22%20AND%20type%20in%20(%22space%22%2C%22user%22%2C%22com.atlassian.confluence.extra.team-calendars%3Acalendar-content-type%22%2C%22attachment%22%2C%22page%22%2C%22com.atlassian.confluence.extra.team-calendars%3Aspace-calendars-view-content-type%22%2C%22blogpost%22)&includeArchivedSpaces=false) as part of the commit process in this repo.
119
-
120
- ## Running the tests for the Rules mapper
121
-
122
- * Install the packages in the Pipfile
123
- * Run ```clear; pipenv run pytest -v --log-level=DEBUG --password PASSWORD --tenant_id TENANT_ID --okapi_url OKAPI URL --username USERNAME```
124
-
125
-
126
- # Running the scripts
127
- For information on syntax, what files are needed and produced by the toolkit, refer to the documentation and example files in the [template repository](https://github.com/FOLIO-FSE/migration_repo_template).
128
- ¨
129
- # Building / Packaging
130
- * Update setup.cfg with the latest version
131
- * Build the new version: `python3 -m build`
132
- * Upload to pypi: `twine upload dist/*`
133
-
134
-
@@ -1,50 +0,0 @@
1
- folio_migration_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- folio_migration_tools/__main__.py,sha256=uR_z7OlJQGy3stZvr4BXuVGbCsqe6rF4okBC5i37TZ0,4892
3
- folio_migration_tools/circulation_helper.py,sha256=H1ztgA5uEREt78ccHMlF6FRMkXQ66yx8cYQBGPJ9UIA,12809
4
- folio_migration_tools/colors.py,sha256=GP0wdI_GZ2WD5SjrbPN-S3u8vvN_u6rGQIBBcWv_0ZM,227
5
- folio_migration_tools/custom_dict.py,sha256=Y6HH_UkMn8-dvwRjm3yhUJdtWa2a7gejBhI7Bdn2ydI,636
6
- folio_migration_tools/custom_exceptions.py,sha256=L2AECzdGZXE47cJNklR3dasDtkwtI3WriYwpcaxdCg8,2490
7
- folio_migration_tools/folder_structure.py,sha256=78VzpjPFQNHZYtabSIZXtmCFWX-vC-KiKeJVR3gGg5I,6415
8
- folio_migration_tools/generate_schemas.py,sha256=QtbmdytQqkjN_7VANVOFdJV6qNQN-2VLUmra3PEVyv4,1296
9
- folio_migration_tools/helper.py,sha256=kyucDYUpzSBMJSSOHHV0OQjMaK83_3etu2hmspmI_dE,2552
10
- folio_migration_tools/holdings_helper.py,sha256=PSOFF2bh8aaQcyFQjDWOtqvKNk1SV_XYy8Zb-LV072I,6514
11
- folio_migration_tools/library_configuration.py,sha256=uecAeG_m0iT2lO2Q-YuTGvzs9Cxj8w84z8RaWYjsLqg,1494
12
- folio_migration_tools/mapper_base.py,sha256=kEOvD0JOmGpelWR0332TvSr7qH-N_-zIaEi7cy8E754,14060
13
- folio_migration_tools/migration_report.py,sha256=bekBeqyFKobfYc0xMsApxHvIZ2oanyQO1j1c-EwcIJQ,2750
14
- folio_migration_tools/report_blurbs.py,sha256=FhsYR9TgyOx89AFNzERkQbV0EwntraLApWQo51BAw50,13313
15
- folio_migration_tools/mapping_file_transformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- folio_migration_tools/mapping_file_transformation/holdings_mapper.py,sha256=96L5dhLCTJdYY1_JG6bPRlvXrWfsSIgo6WdWEEmA3SA,7441
17
- folio_migration_tools/mapping_file_transformation/item_mapper.py,sha256=boEmqIdoT1h3XCSUVInzg6ww9t5L8mEyZAhyzm2XX3U,10139
18
- folio_migration_tools/mapping_file_transformation/mapping_file_mapper_base.py,sha256=z-DIjfGTyfCy21PkxuMpBcuH4GuWbXfMPnIn7vFjRbg,18747
19
- folio_migration_tools/mapping_file_transformation/mapping_file_mapping_base_impl.py,sha256=NzrCynfZZcduDwuWM-Z0E9at9kAUvYVf3Wysl6ozPYI,1515
20
- folio_migration_tools/mapping_file_transformation/ref_data_mapping.py,sha256=Asw-9pxUT69arfLNtvQi5zc8aHRRFwNgG7BwD7CiGPA,8713
21
- folio_migration_tools/mapping_file_transformation/user_mapper.py,sha256=bjWsK0453yzVyjH_HH6-2mNi-hssMR-AzgJK20RyzT8,17746
22
- folio_migration_tools/mapping_file_transformation/user_mapper_base.py,sha256=l3jFiYku5roJ1i0li5Da0I178fG78G4uWrjs_h4zJ7o,8386
23
- folio_migration_tools/marc_rules_transformation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- folio_migration_tools/marc_rules_transformation/bibs_processor.py,sha256=mFxknjkajGqHRRYC9Jw21S-l9fo3BXsNzurwOZsXdcI,6759
25
- folio_migration_tools/marc_rules_transformation/conditions.py,sha256=ryM83SMFtBPJXq_UZRWqUmjtY3mWPxZGK8U6MENw8XE,28464
26
- folio_migration_tools/marc_rules_transformation/holdings_processor.py,sha256=wHJqQyndPdaDoGvbJjSZnqHZpvemWT3uxSIxB_KE7wk,12054
27
- folio_migration_tools/marc_rules_transformation/holdings_statementsparser.py,sha256=6G7CkfkCTDa4Isxwmkhmk4qaHWER4s5kGVRMB7g4n8k,6809
28
- folio_migration_tools/marc_rules_transformation/rules_mapper_base.py,sha256=ZVXhq7m8ApnYe5v-XZ5jDmBpdj3g0shsLb6E9HbKgO8,24708
29
- folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py,sha256=mke2Cde2pZeKhHllt3Ur4aBebUxbnqxqyGkSm0U1_DM,30971
30
- folio_migration_tools/marc_rules_transformation/rules_mapper_holdings.py,sha256=BbtkFYLLKts2f4nMOaF2HCNUM75wzA8jNd6uD9DaxVc,9700
31
- folio_migration_tools/migration_tasks/__init__.py,sha256=XmUBiwtPC-LWRgvGG8HEiR0RzbWKjUFWWvMlrUxn3JM,217
32
- folio_migration_tools/migration_tasks/batch_poster.py,sha256=AhuykvSGW3nlVHl1ckoKIDq0dPA9UmQmx_iTF-Lqp70,19694
33
- folio_migration_tools/migration_tasks/bibs_transformer.py,sha256=cJysz_hWFgmMVXsAhiVrc-CwMbdn2tXo0JB5TMQC5WQ,6497
34
- folio_migration_tools/migration_tasks/holdings_csv_transformer.py,sha256=Fu1MZpZqQVwma2FMJTyyIjAJ71IPe-4fmvnTNibfxOw,21454
35
- folio_migration_tools/migration_tasks/holdings_marc_transformer.py,sha256=xnNJBwwHOd6eFe_t2yqP1agmb1hlVjxCeUiVVvuzQ9k,6137
36
- folio_migration_tools/migration_tasks/items_transformer.py,sha256=0TCjmpeMU8Fx8HSEPGt9U_e0CeqFm_Fhnb3OpATzei4,12823
37
- folio_migration_tools/migration_tasks/loans_migrator.py,sha256=3nZDT9_g_hdca9Q8LhTCSSWT5_cINQPREYz23Oba9NA,27483
38
- folio_migration_tools/migration_tasks/migration_task_base.py,sha256=6xpzS1wABFYlqhz0cpGLO19nSuL_bEBIGuTlTJyyvxA,10691
39
- folio_migration_tools/migration_tasks/requests_migrator.py,sha256=nQCqxstb6GcehUFCw5yObZiNizIVGUnmljxhyvwY_sY,11649
40
- folio_migration_tools/migration_tasks/user_transformer.py,sha256=ZDElqaPzu8v0PKdrmI4CaSigIoBFyOmeqPR23Kv1eyU,11353
41
- folio_migration_tools/transaction_migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- folio_migration_tools/transaction_migration/legacy_fee_fine.py,sha256=kd09TabZJOhJVgZiVIdQDYa-vZhYpAcX0CY-F3VXhHU,1398
43
- folio_migration_tools/transaction_migration/legacy_loan.py,sha256=l8jR88hffExQtlHWBUw44Lt3RbikqCHJ3CGPBTBVMNE,3154
44
- folio_migration_tools/transaction_migration/legacy_request.py,sha256=XfkcJ_GNOdggfTkWjJD8S5bLT6mVKq5YyY74zem7BsE,4374
45
- folio_migration_tools/transaction_migration/transaction_result.py,sha256=PSH5XU6qXFojOii44OoxA3gqpTwdOfHDbbenRcQWNKc,468
46
- folio_migration_tools-1.2.1.dist-info/LICENSE,sha256=PhIEkitVi3ejgq56tt6sWoJIG_zmv82cjjd_aYPPGdI,1072
47
- folio_migration_tools-1.2.1.dist-info/METADATA,sha256=uvyGgSHlr3f3nTgZ4vBl2heAKoqjEXO3y1gA_ng751Q,8161
48
- folio_migration_tools-1.2.1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
49
- folio_migration_tools-1.2.1.dist-info/top_level.txt,sha256=tBI8dITwC7jGcguZkML5554VnyYkaNq4E5yaobLuUlg,22
50
- folio_migration_tools-1.2.1.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- folio_migration_tools