Metadata-Version: 2.1
Name: skoufas-dbf-reader
Version: 0.0.1rc31.post2
Summary: Library for reading legacy DBF file with library data
Author-email: Claudio Bantaloukas <rockreamer@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: dbfread==2.0.7
Requires-Dist: bandit[toml]==1.7.4 ; extra == "test"
Requires-Dist: black==22.10.0 ; extra == "test"
Requires-Dist: check-manifest==0.48 ; extra == "test"
Requires-Dist: flake8-bugbear==22.10.27 ; extra == "test"
Requires-Dist: flake8-docstrings ; extra == "test"
Requires-Dist: flake8-formatter_junit_xml ; extra == "test"
Requires-Dist: flake8==5.0.4 ; extra == "test"
Requires-Dist: pre-commit==2.20.0 ; extra == "test"
Requires-Dist: pylint==2.15.5 ; extra == "test"
Requires-Dist: pylint_junit ; extra == "test"
Requires-Dist: pytest-cov==4.0.0 ; extra == "test"
Requires-Dist: pytest-mock<3.10.1 ; extra == "test"
Requires-Dist: pytest-runner ; extra == "test"
Requires-Dist: pytest==7.2.0 ; extra == "test"
Requires-Dist: pytest-github-actions-annotate-failures ; extra == "test"
Requires-Dist: shellcheck-py==0.8.0.4 ; extra == "test"
Project-URL: Documentation, https://github.com/microsoft/python-package-template/tree/main#readme
Project-URL: Source, https://github.com/microsoft/python-package-template
Project-URL: Tracker, https://github.com/microsoft/python-package-template/issues
Provides-Extra: test

# Skoufas Library DBF Reader

Functions to read and convert from the DBF file used to track books in the Skoufas library

## Columns in DBF

| Column | Name (english) | Name (Greek) |
|--------|----------------|--------------|
| A01 | Author surname, name, language | ΕΠΩΝΥΜΟ,ΟΝΟΜΑ ΣΥΓΓΡΑΦΕΑ |
| A02 | title | Τιτλος |
| A03 | subtitle | Υποτιτλος |
| A04 | Dewey | Ταξινομικος αριθμος |
| A05 | entry_number | αριθμος εισαγωγης |
| A06 | translator | μεταφραστης (+ entry number) |
| A07 | edition | εκδοση |
| A08 | editor | εκδοτης |
| A09 | edition place | τοπος εκδοσης |
| A10 | edition date | ετος εκδοσης |
| A11 | pages | σελιδες |
| A12 | topics | θεμα 1 |
| A13 | topics | θεμα 2 |
| A14 | topics | θεμα 3 |
| A15 | topics | θεμα 4 |
| A16 | curator | επιμελητης |
| A17 | notes | σημειωσεις (συνηθως αν είναι δωρεες) |
| A18 | material | συνοδευτικο υλικο |
| A19 | isbn | |
| A20 | Notes | σημειωσεις |
| A21 | series | Σειρα |
| A22 | | θεσεις κλειδια |
| A23 | | θεσεις κλειδια |
| A24 | | θεσεις κλειδια |
| A25 | | θεσεις κλειδια |
| A26 | | θεσεις κλειδια |
| A27 | | θεσεις κλειδια |
| A28 | | θεσεις κλειδια |
| A29 | | θεσεις κλειδια |
| A30 | | θεσεις κλειδια |

