gedcom-x 0.5.5__py3-none-any.whl → 0.5.7__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.
- gedcom_x-0.5.7.dist-info/METADATA +144 -0
- gedcom_x-0.5.7.dist-info/RECORD +49 -0
- gedcomx/Address.py +13 -13
- gedcomx/Agent.py +28 -16
- gedcomx/Attribution.py +34 -7
- gedcomx/Conclusion.py +24 -13
- gedcomx/Converter.py +1034 -0
- gedcomx/Coverage.py +7 -6
- gedcomx/Date.py +11 -4
- gedcomx/Document.py +2 -1
- gedcomx/Event.py +95 -20
- gedcomx/ExtensibleEnum.py +183 -0
- gedcomx/Extensions/__init__.py +1 -0
- gedcomx/Extensions/rs10/__init__.py +1 -0
- gedcomx/Extensions/rs10/rsLink.py +116 -0
- gedcomx/Fact.py +16 -13
- gedcomx/Gedcom5x.py +115 -77
- gedcomx/GedcomX.py +184 -1034
- gedcomx/Gender.py +7 -9
- gedcomx/Identifier.py +10 -13
- gedcomx/LoggingHub.py +207 -0
- gedcomx/Mutations.py +8 -8
- gedcomx/Name.py +207 -87
- gedcomx/Note.py +16 -9
- gedcomx/Person.py +39 -18
- gedcomx/PlaceDescription.py +70 -19
- gedcomx/PlaceReference.py +40 -8
- gedcomx/Qualifier.py +39 -12
- gedcomx/Relationship.py +5 -3
- gedcomx/Resource.py +38 -28
- gedcomx/Serialization.py +773 -358
- gedcomx/SourceDescription.py +133 -74
- gedcomx/SourceReference.py +10 -9
- gedcomx/Subject.py +5 -21
- gedcomx/Translation.py +976 -1
- gedcomx/URI.py +1 -1
- gedcomx/__init__.py +4 -2
- gedcom_x-0.5.5.dist-info/METADATA +0 -17
- gedcom_x-0.5.5.dist-info/RECORD +0 -43
- {gedcom_x-0.5.5.dist-info → gedcom_x-0.5.7.dist-info}/WHEEL +0 -0
- {gedcom_x-0.5.5.dist-info → gedcom_x-0.5.7.dist-info}/top_level.txt +0 -0
gedcomx/URI.py
CHANGED
gedcomx/__init__.py
CHANGED
@@ -2,11 +2,13 @@ from .Agent import Agent
|
|
2
2
|
from .Address import Address
|
3
3
|
from .Attribution import Attribution
|
4
4
|
from .Conclusion import Conclusion
|
5
|
+
from .Converter import GedcomConverter
|
5
6
|
from .Coverage import Coverage
|
6
7
|
from .Date import Date
|
7
8
|
from .Document import Document
|
8
9
|
from .Document import DocumentType
|
9
10
|
from .EvidenceReference import EvidenceReference
|
11
|
+
from .ExtensibleEnum import ExtensibleEnum
|
10
12
|
from .Event import Event
|
11
13
|
from .Event import EventType
|
12
14
|
from .Event import EventRole
|
@@ -14,8 +16,8 @@ from .Fact import Fact
|
|
14
16
|
from .Fact import FactQualifier
|
15
17
|
from .Fact import FactType
|
16
18
|
from .Gedcom import Gedcom
|
17
|
-
from .Gedcom5x import Gedcom5x
|
18
|
-
from .GedcomX import GedcomX
|
19
|
+
from .Gedcom5x import Gedcom5x, Gedcom5xRecord
|
20
|
+
from .GedcomX import GedcomX
|
19
21
|
from .Gender import Gender, GenderType
|
20
22
|
from .Group import Group, GroupRole
|
21
23
|
from .Identifier import Identifier, IdentifierType, IdentifierList
|
@@ -1,17 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: gedcom-x
|
3
|
-
Version: 0.5.5
|
4
|
-
Summary: Python implimentation of gedcom-x standard
|
5
|
-
Author-email: "David J. Cartwright" <davidcartwright@hotmail.com>
|
6
|
-
License: MIT
|
7
|
-
Keywords: gedcom,gedcomx,ged
|
8
|
-
Classifier: Development Status :: 4 - Beta
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
10
|
-
Classifier: Environment :: Console
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
12
|
-
Classifier: Operating System :: OS Independent
|
13
|
-
Classifier: Topic :: Utilities
|
14
|
-
Classifier: Topic :: Software Development :: User Interfaces
|
15
|
-
Requires-Python: >=3.6
|
16
|
-
Description-Content-Type: text/markdown
|
17
|
-
Dynamic: requires-python
|
gedcom_x-0.5.5.dist-info/RECORD
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
gedcomx/Address.py,sha256=FDBic6oQB30eKMWM7-6_YVPHaJdPhziU5LybwE5TY5Q,4855
|
2
|
-
gedcomx/Agent.py,sha256=C-tzfqcjuU22iJ2LjoatKdCbI_i0xskpmZsuj58K6WY,8555
|
3
|
-
gedcomx/Attribution.py,sha256=2bcl2UNsMPn10kDrA080qFRzxK-KYqZBgmPGNBZ2M4Y,2608
|
4
|
-
gedcomx/Conclusion.py,sha256=t8n8FuWwzinFTPHp9D2Umu93-4A12I9L5fCx510mfqA,8414
|
5
|
-
gedcomx/Coverage.py,sha256=BVlB3kWDoOP2j86j67hNJLC4LqoLwqs3N93z0ZbXYTw,1227
|
6
|
-
gedcomx/Date.py,sha256=cv2UeyOcTHuH2CVHq9EjTnj3FR-r4_OVuPiuc8sbOPc,2130
|
7
|
-
gedcomx/Document.py,sha256=32nWfDNVWkPK2_I0-hhcNQkrjH3ssdbtw-II3QMMelw,2957
|
8
|
-
gedcomx/Event.py,sha256=BHhmO2UlxbkSzB5htdMRf2h-WNuJQsWfrSC8tNGQ6Mg,10375
|
9
|
-
gedcomx/EvidenceReference.py,sha256=WXZpmcKzwb3lYQmGVf-TY2IsbNG3fIInPY1khRjtOSg,348
|
10
|
-
gedcomx/Exceptions.py,sha256=0OdPM3euhBMgX8o61ZwPuKeN8zPuSuuDcSBFflVGFqk,587
|
11
|
-
gedcomx/Fact.py,sha256=-Zz321xeFd93riaX4C4i7gIPwpqdArAYZDlWRoXA1Uk,24444
|
12
|
-
gedcomx/Gedcom.py,sha256=l_BuLBynQacDtpLjhs2Afrabfiqt2Opoo_5_7myI7Z4,1709
|
13
|
-
gedcomx/Gedcom5x.py,sha256=qkRmOI99N3SJEtxuzhL_IiICQIm5OyJwBkLEQIkNjUA,21223
|
14
|
-
gedcomx/GedcomX.py,sha256=u95GeBQGRgyEp_wBl7y-RjPnhF8wTciH8Wlief99g_8,63258
|
15
|
-
gedcomx/Gender.py,sha256=AV125vECC5JSgvNJRmotjDEt-A3cFzth6pcSLFwJBEE,2328
|
16
|
-
gedcomx/Group.py,sha256=VNI_cI_-YnJ9cHzwMmHD8qwDNMe89kEocPuQ67rwStA,1606
|
17
|
-
gedcomx/Identifier.py,sha256=MePkMgx0o2wzzSPGv4AJ6JklIWniEgl8XZSWKTLHXhs,8515
|
18
|
-
gedcomx/Logging.py,sha256=vBDOjawVXc4tCge1laYjy6_2Ves-fnGzG0m6NnLZejE,624
|
19
|
-
gedcomx/Mutations.py,sha256=idhQsnikCTovmNEGAhDsOe97V0L9AnFTRaufzUPm64w,6298
|
20
|
-
gedcomx/Name.py,sha256=en_VkGjpZPP_Dbl9HSq2h2JCtLS2NMzmLvis5RdBPeM,12913
|
21
|
-
gedcomx/Note.py,sha256=cvV4-fCZ0oh2zXfzD-YYoIM_WTox-fk2_bfl3i4CoNc,2251
|
22
|
-
gedcomx/OnlineAccount.py,sha256=P24o98IXo_8XQoICYZPgALjdzS0q8t2l4DU3Od9KxyI,291
|
23
|
-
gedcomx/Person.py,sha256=LyGPCZh6rZU_dE3GCJE92x1lLk41c_Edr_Po9smhPLc,7321
|
24
|
-
gedcomx/PlaceDescription.py,sha256=TRHIkDiErHa_mlx_x8gYCF6UnQ-XgT08uSmYmFNa4u0,3255
|
25
|
-
gedcomx/PlaceReference.py,sha256=3NyEYq0FaMI8m3l4H6-Ov-n9NUq_m751iYVxofqtv30,870
|
26
|
-
gedcomx/Qualifier.py,sha256=mZ_GWT3gca8g9nWidlXIRTN5dEtf_rmnLHYl1jJkQYs,728
|
27
|
-
gedcomx/Relationship.py,sha256=oyT501vR5jvWxqEYy3KvW9egD4CPL5JaAYWJmlNy9Ig,3599
|
28
|
-
gedcomx/Resource.py,sha256=bZ2dV-OdpvmDRCppyfHJXiarIKL7-OcofwvYRnpOJW0,2324
|
29
|
-
gedcomx/Serialization.py,sha256=ubtmrvi-nKmVUCK1XGwuLijrPMggNJe--kkCIC-87Ds,18580
|
30
|
-
gedcomx/SourceCitation.py,sha256=aW-lEb7bT9QU49GiBjJppFMBvtisR6fhVVuXjr5y4vQ,742
|
31
|
-
gedcomx/SourceDescription.py,sha256=zOkXo-fy-uCl_EGU8B-c6pzhlMk3nYNHn13ln1AkYk0,11914
|
32
|
-
gedcomx/SourceReference.py,sha256=swVzZ5A0jt5yFYJNJvMnQZtb7d-2YEAQPxp2a4lEY1k,5071
|
33
|
-
gedcomx/Subject.py,sha256=znee3SxYKk99JLP6KmZHkXs5hIOGu_jeLwxagENNfXs,3298
|
34
|
-
gedcomx/TextValue.py,sha256=6B0wMxL0nigFNzhXZDhbTONvFGbnM2t2NcDZiZuu4Zw,1112
|
35
|
-
gedcomx/TopLevelTypeCollection.py,sha256=nvTO6GwFwEZk9jX4fVqhy75ygsshomNb20tnlExKqyY,1495
|
36
|
-
gedcomx/Translation.py,sha256=NWa1NtTOC_VgQ-EGwWG06zUpddRxdKFSLPP6066JFaA,12485
|
37
|
-
gedcomx/URI.py,sha256=S2pFsu_VyKgOsRdHIj8pjnh6_tdA3OjAYiIugoEd70k,4271
|
38
|
-
gedcomx/Zip.py,sha256=lBxcv-Vip45884EHj56wZJJ5I36Q38UuHUidDxQBoS8,14
|
39
|
-
gedcomx/__init__.py,sha256=Et3E0lBdtrMjyposrQ0MeoaRilg0ShSDqXg0y15pPf4,1616
|
40
|
-
gedcom_x-0.5.5.dist-info/METADATA,sha256=cTARXUhB_6HIix2ih1I9ThdwN1OYGn4gQA0jF9pKepM,633
|
41
|
-
gedcom_x-0.5.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
42
|
-
gedcom_x-0.5.5.dist-info/top_level.txt,sha256=smVBF4nxSU-mzCd6idtRYTbYjPICMMi8pTqewEmqF8Y,8
|
43
|
-
gedcom_x-0.5.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|