Metadata-Version: 2.4
Name: dbf2csv-dbase7
Version: 0.6.5
Summary: File converter from DBF to CSV (only for dBASE 7)
Project-URL: Homepage, https://github.com/chemacortes/dbf2csv-py
Author-email: chemacortes <devxtrem@gmail.com>
License-Expression: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Requires-Python: <4,>=3.10
Description-Content-Type: text/markdown

# Conversión de formato DBF a CSV

Script simple para convertir ficheros de formato DBF a CSV. De momento sólo funciona para ficheros DBF "dBASE level 7".

Uso:

```sh
./dbfconv.py <fichero.dbf>
```

También se puede instalar desde <https://pypi.org> como:

```sh
pip install dbf2csv-dbase7
```

Una vez descargado se puede ejecutar del siguiente modo:

```sh
python -m dbf2csv <fichero.dbf>
```

O también se puede instalar como pipx:

```sh
pipx install dbf2csv-dbase7
```

Lo que añade la utilidad `dbf2csv`:

```sh
dbf2csv <fichero.dbf>
```

## Referencias: formatos de ficheros

- [Data File Header Structure for the dBASE Version 7 Table File][1]
- [dBASE File Format (with coding details): DBF and DBT/FPT file structure][2]
- [dBASE Table File Format (DBF)][3]
- [Xbase Data file (*.dbf)][4]

[1]: http://www.dbase.com/KnowledgeBase/int/db7_file_fmt.htm
[2]: http://www.independent-software.com/dbase-dbf-dbt-file-format.html
[3]: https://www.loc.gov/preservation/digital/formats/fdd/fdd000325.shtml
[4]: https://www.clicketyclick.dk/databases/xbase/format/dbf.html
