├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst ├── opyenxes.classification.rst ├── opyenxes.data_in.rst ├── opyenxes.data_out.rst ├── opyenxes.extension.rst ├── opyenxes.extension.std.rst ├── opyenxes.factory.rst ├── opyenxes.id.rst ├── opyenxes.info.rst ├── opyenxes.log.rst ├── opyenxes.model.rst ├── opyenxes.rst ├── opyenxes.utils.rst ├── readme.rst └── usage.rst ├── example ├── AlphaAlgorithm.py ├── Anonymize_a_log.py ├── Cluster_a_log.py ├── Create_random_log.py ├── Csv_to_xes_file.py ├── Number_of_activity_done_by_people.py ├── Parse_log_with_new_extension.py ├── filter_compress_log.py └── xes_file │ ├── New_cluster_log_0.xes │ ├── New_cluster_log_1.xes │ ├── csv_file.csv │ ├── csv_log_in_xes_format.xes │ ├── example_compress_log.xes.gz │ ├── example_with_new_extension.xes │ ├── general_example.xes │ ├── general_example_anonymous.xes │ ├── log_to_cluster.xes │ ├── meta_general.xesext.xml │ ├── new_filter_and_compress_log.xes.gz │ └── random_log.xes ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── src └── opyenxes │ ├── __init__.py │ ├── classification │ ├── XEventAndClassifier.py │ ├── XEventAttributeClassifier.py │ ├── XEventClass.py │ ├── XEventClasses.py │ ├── XEventLifeTransClassifier.py │ ├── XEventNameClassifier.py │ ├── XEventResourceClassifier.py │ └── __init__.py │ ├── cli.py │ ├── data_in │ ├── XMxmlGZIPParser.py │ ├── XMxmlParser.py │ ├── XParserRegistry.py │ ├── XUniversalParser.py │ ├── XesXmlGZIPParser.py │ ├── XesXmlParser.py │ └── __init__.py │ ├── data_out │ ├── XMxmlGZIPSerializer.py │ ├── XMxmlSerializer.py │ ├── XSerializerRegistry.py │ ├── XesXmlGZIPSerializer.py │ ├── XesXmlSerializer.py │ └── __init__.py │ ├── extension │ ├── XExtension.py │ ├── XExtensionManager.py │ ├── XExtensionParser.py │ ├── __init__.py │ └── std │ │ ├── XAbstractNestedAttributeSupport.py │ │ ├── XConceptExtension.py │ │ ├── XCostExtension.py │ │ ├── XExtendedEvent.py │ │ ├── XIdentityExtension.py │ │ ├── XLifecycleExtension.py │ │ ├── XMicroExtension.py │ │ ├── XOrganizationalExtension.py │ │ ├── XSemanticExtension.py │ │ ├── XTimeExtension.py │ │ └── __init__.py │ ├── factory │ ├── XFactory.py │ ├── XFactoryRegistry.py │ └── __init__.py │ ├── id │ ├── XID.py │ ├── XIDFactory.py │ └── __init__.py │ ├── info │ ├── XAttributeInfo.py │ ├── XAttributeNameMap.py │ ├── XGlobalAttributeNameMap.py │ ├── XLogInfo.py │ ├── XLogInfoFactory.py │ ├── XTimeBounds.py │ └── __init__.py │ ├── log │ ├── XLogging.py │ ├── XStdoutLoggingListener.py │ └── __init__.py │ ├── model │ ├── XAttributable.py │ ├── XAttribute.py │ ├── XAttributeBoolean.py │ ├── XAttributeCollection.py │ ├── XAttributeContainer.py │ ├── XAttributeContinuous.py │ ├── XAttributeDiscrete.py │ ├── XAttributeID.py │ ├── XAttributeList.py │ ├── XAttributeLiteral.py │ ├── XAttributeMap.py │ ├── XAttributeTimestamp.py │ ├── XElement.py │ ├── XEvent.py │ ├── XLog.py │ ├── XTrace.py │ └── __init__.py │ └── utils │ ├── CompareUtils.py │ ├── SingletonClassGenerator.py │ ├── XAttributeUtils.py │ ├── XRegistry.py │ ├── XRuntimeUtils.py │ ├── XTimer.py │ ├── XTokenHelper.py │ ├── XsDateTimeConversion.py │ └── __init__.py ├── tests ├── __init__.py ├── data_in │ ├── __init__.py │ └── test_XesXmlParser.py ├── extension │ ├── __init__.py │ ├── std │ │ ├── __init__.py │ │ └── test_XConceptExtension.py │ ├── test_XExtension.py │ ├── test_XExtensionManager.py │ └── test_XExtensionParser.py └── test_opyenxes.py ├── tox.ini └── travis_pypi_setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- 1 | src 2 | === 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | opyenxes 8 | -------------------------------------------------------------------------------- /docs/opyenxes.classification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.classification.rst -------------------------------------------------------------------------------- /docs/opyenxes.data_in.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.data_in.rst -------------------------------------------------------------------------------- /docs/opyenxes.data_out.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.data_out.rst -------------------------------------------------------------------------------- /docs/opyenxes.extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.extension.rst -------------------------------------------------------------------------------- /docs/opyenxes.extension.std.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.extension.std.rst -------------------------------------------------------------------------------- /docs/opyenxes.factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.factory.rst -------------------------------------------------------------------------------- /docs/opyenxes.id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.id.rst -------------------------------------------------------------------------------- /docs/opyenxes.info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.info.rst -------------------------------------------------------------------------------- /docs/opyenxes.log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.log.rst -------------------------------------------------------------------------------- /docs/opyenxes.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.model.rst -------------------------------------------------------------------------------- /docs/opyenxes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.rst -------------------------------------------------------------------------------- /docs/opyenxes.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/opyenxes.utils.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /example/AlphaAlgorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/AlphaAlgorithm.py -------------------------------------------------------------------------------- /example/Anonymize_a_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/Anonymize_a_log.py -------------------------------------------------------------------------------- /example/Cluster_a_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/Cluster_a_log.py -------------------------------------------------------------------------------- /example/Create_random_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/Create_random_log.py -------------------------------------------------------------------------------- /example/Csv_to_xes_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/Csv_to_xes_file.py -------------------------------------------------------------------------------- /example/Number_of_activity_done_by_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/Number_of_activity_done_by_people.py -------------------------------------------------------------------------------- /example/Parse_log_with_new_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/Parse_log_with_new_extension.py -------------------------------------------------------------------------------- /example/filter_compress_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/filter_compress_log.py -------------------------------------------------------------------------------- /example/xes_file/New_cluster_log_0.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/New_cluster_log_0.xes -------------------------------------------------------------------------------- /example/xes_file/New_cluster_log_1.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/New_cluster_log_1.xes -------------------------------------------------------------------------------- /example/xes_file/csv_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/csv_file.csv -------------------------------------------------------------------------------- /example/xes_file/csv_log_in_xes_format.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/csv_log_in_xes_format.xes -------------------------------------------------------------------------------- /example/xes_file/example_compress_log.xes.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/example_compress_log.xes.gz -------------------------------------------------------------------------------- /example/xes_file/example_with_new_extension.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/example_with_new_extension.xes -------------------------------------------------------------------------------- /example/xes_file/general_example.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/general_example.xes -------------------------------------------------------------------------------- /example/xes_file/general_example_anonymous.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/general_example_anonymous.xes -------------------------------------------------------------------------------- /example/xes_file/log_to_cluster.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/log_to_cluster.xes -------------------------------------------------------------------------------- /example/xes_file/meta_general.xesext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/meta_general.xesext.xml -------------------------------------------------------------------------------- /example/xes_file/new_filter_and_compress_log.xes.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/new_filter_and_compress_log.xes.gz -------------------------------------------------------------------------------- /example/xes_file/random_log.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/example/xes_file/random_log.xes -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/setup.py -------------------------------------------------------------------------------- /src/opyenxes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/__init__.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventAndClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventAndClassifier.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventAttributeClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventAttributeClassifier.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventClass.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventClasses.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventLifeTransClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventLifeTransClassifier.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventNameClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventNameClassifier.py -------------------------------------------------------------------------------- /src/opyenxes/classification/XEventResourceClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/classification/XEventResourceClassifier.py -------------------------------------------------------------------------------- /src/opyenxes/classification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/cli.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/XMxmlGZIPParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_in/XMxmlGZIPParser.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/XMxmlParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_in/XMxmlParser.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/XParserRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_in/XParserRegistry.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/XUniversalParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_in/XUniversalParser.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/XesXmlGZIPParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_in/XesXmlGZIPParser.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/XesXmlParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_in/XesXmlParser.py -------------------------------------------------------------------------------- /src/opyenxes/data_in/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opyenxes/data_out/XMxmlGZIPSerializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_out/XMxmlGZIPSerializer.py -------------------------------------------------------------------------------- /src/opyenxes/data_out/XMxmlSerializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_out/XMxmlSerializer.py -------------------------------------------------------------------------------- /src/opyenxes/data_out/XSerializerRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_out/XSerializerRegistry.py -------------------------------------------------------------------------------- /src/opyenxes/data_out/XesXmlGZIPSerializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_out/XesXmlGZIPSerializer.py -------------------------------------------------------------------------------- /src/opyenxes/data_out/XesXmlSerializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/data_out/XesXmlSerializer.py -------------------------------------------------------------------------------- /src/opyenxes/data_out/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/extension/XExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/XExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/XExtensionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/XExtensionManager.py -------------------------------------------------------------------------------- /src/opyenxes/extension/XExtensionParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/XExtensionParser.py -------------------------------------------------------------------------------- /src/opyenxes/extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XAbstractNestedAttributeSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XAbstractNestedAttributeSupport.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XConceptExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XConceptExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XCostExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XCostExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XExtendedEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XExtendedEvent.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XIdentityExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XIdentityExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XLifecycleExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XLifecycleExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XMicroExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XMicroExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XOrganizationalExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XOrganizationalExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XSemanticExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XSemanticExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/XTimeExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/extension/std/XTimeExtension.py -------------------------------------------------------------------------------- /src/opyenxes/extension/std/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/factory/XFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/factory/XFactory.py -------------------------------------------------------------------------------- /src/opyenxes/factory/XFactoryRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/factory/XFactoryRegistry.py -------------------------------------------------------------------------------- /src/opyenxes/factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/id/XID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/id/XID.py -------------------------------------------------------------------------------- /src/opyenxes/id/XIDFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/id/XIDFactory.py -------------------------------------------------------------------------------- /src/opyenxes/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/info/XAttributeInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/info/XAttributeInfo.py -------------------------------------------------------------------------------- /src/opyenxes/info/XAttributeNameMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/info/XAttributeNameMap.py -------------------------------------------------------------------------------- /src/opyenxes/info/XGlobalAttributeNameMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/info/XGlobalAttributeNameMap.py -------------------------------------------------------------------------------- /src/opyenxes/info/XLogInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/info/XLogInfo.py -------------------------------------------------------------------------------- /src/opyenxes/info/XLogInfoFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/info/XLogInfoFactory.py -------------------------------------------------------------------------------- /src/opyenxes/info/XTimeBounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/info/XTimeBounds.py -------------------------------------------------------------------------------- /src/opyenxes/info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/log/XLogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/log/XLogging.py -------------------------------------------------------------------------------- /src/opyenxes/log/XStdoutLoggingListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/log/XStdoutLoggingListener.py -------------------------------------------------------------------------------- /src/opyenxes/log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributable.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttribute.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeBoolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeBoolean.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeCollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeCollection.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeContainer.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeContinuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeContinuous.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeDiscrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeDiscrete.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeID.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeList.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeLiteral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeLiteral.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeMap.py -------------------------------------------------------------------------------- /src/opyenxes/model/XAttributeTimestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XAttributeTimestamp.py -------------------------------------------------------------------------------- /src/opyenxes/model/XElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XElement.py -------------------------------------------------------------------------------- /src/opyenxes/model/XEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XEvent.py -------------------------------------------------------------------------------- /src/opyenxes/model/XLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XLog.py -------------------------------------------------------------------------------- /src/opyenxes/model/XTrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/model/XTrace.py -------------------------------------------------------------------------------- /src/opyenxes/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opyenxes/utils/CompareUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/CompareUtils.py -------------------------------------------------------------------------------- /src/opyenxes/utils/SingletonClassGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/SingletonClassGenerator.py -------------------------------------------------------------------------------- /src/opyenxes/utils/XAttributeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/XAttributeUtils.py -------------------------------------------------------------------------------- /src/opyenxes/utils/XRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/XRegistry.py -------------------------------------------------------------------------------- /src/opyenxes/utils/XRuntimeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/XRuntimeUtils.py -------------------------------------------------------------------------------- /src/opyenxes/utils/XTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/XTimer.py -------------------------------------------------------------------------------- /src/opyenxes/utils/XTokenHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/XTokenHelper.py -------------------------------------------------------------------------------- /src/opyenxes/utils/XsDateTimeConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/src/opyenxes/utils/XsDateTimeConversion.py -------------------------------------------------------------------------------- /src/opyenxes/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data_in/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/data_in/__init__.py -------------------------------------------------------------------------------- /tests/data_in/test_XesXmlParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/data_in/test_XesXmlParser.py -------------------------------------------------------------------------------- /tests/extension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/extension/__init__.py -------------------------------------------------------------------------------- /tests/extension/std/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/extension/std/__init__.py -------------------------------------------------------------------------------- /tests/extension/std/test_XConceptExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/extension/std/test_XConceptExtension.py -------------------------------------------------------------------------------- /tests/extension/test_XExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/extension/test_XExtension.py -------------------------------------------------------------------------------- /tests/extension/test_XExtensionManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/extension/test_XExtensionManager.py -------------------------------------------------------------------------------- /tests/extension/test_XExtensionParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/extension/test_XExtensionParser.py -------------------------------------------------------------------------------- /tests/test_opyenxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tests/test_opyenxes.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/tox.ini -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opyenxes/OpyenXes/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------