Python-gedcom

Latest version: v1.0.0

Safety actively analyzes 621688 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 2

1.0.0

The old way of importing the `gedcom` package was like this: `from gedcom import Gedcom`.

The new package code is separated into individual modules within the package. So `Parser` (the actual parser which was named `Gedcom`) would be imported like this:
`from gedcom.parser import Parser`, since the `Parser` class lies within the module `parser` within the package `gedcom`.

Same procedure for the `Element` class: `from gedcom.element.element import Element`, since the `Element` class lies
within the package `gedcom`, the subpackage `element` and the module `element`.

This allows for better maintainability and scalability.

If there are any questions or you encounter a bug please open an issue [here](https://github.com/nickreynke/python-gedcom/issues).

0.2.5dev

- Updated project structure ([18](https://github.com/nickreynke/python-gedcom/issues/18))
- Fixed `setup.py` outputting correct markdown when reading the `README.md` ([16](https://github.com/nickreynke/python-gedcom/issues/16))
- Applied Flake8 code style and **added explicit error handling**
- Set up test suite

0.2.4dev

- Made `surname_match` and `given_match` case insensitive ([10](https://github.com/nickreynke/python-gedcom/issues/10))
- Added new `is_child` method ([10](https://github.com/nickreynke/python-gedcom/issues/10))

0.2.3dev

- Assemble marriages properly ([9](https://github.com/nickreynke/python-gedcom/issues/9))
- Return the top NAME record instead of the last one ([9](https://github.com/nickreynke/python-gedcom/issues/9))

0.2.2dev

- Support BOM control characters ([5](https://github.com/nickreynke/python-gedcom/issues/5))
- Support the last line not having a CR and/or LF
- Support incorrect line splitting generated by Ancestry. Insert CONT/CONC tag as necessary ([6](https://github.com/nickreynke/python-gedcom/issues/6))

0.2.1dev

- Changed broken links to GEDCOM format specification ([2](https://github.com/nickreynke/python-gedcom/issues/2))

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.