gitextract_7ujg68vi/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.rst ├── docs/ │ ├── Makefile │ ├── api.rst │ ├── conf.py │ ├── html/ │ │ ├── _modules/ │ │ │ ├── asyncio/ │ │ │ │ └── unix_events.html │ │ │ ├── eventkit/ │ │ │ │ ├── event.html │ │ │ │ ├── ops/ │ │ │ │ │ ├── aggregate.html │ │ │ │ │ ├── array.html │ │ │ │ │ ├── combine.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── misc.html │ │ │ │ │ ├── op.html │ │ │ │ │ ├── select.html │ │ │ │ │ ├── timing.html │ │ │ │ │ └── transform.html │ │ │ │ └── util.html │ │ │ ├── index.html │ │ │ └── logging.html │ │ ├── _sources/ │ │ │ ├── api.rst.txt │ │ │ └── index.rst.txt │ │ ├── _static/ │ │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ │ ├── basic.css │ │ │ ├── css/ │ │ │ │ ├── badge_only.css │ │ │ │ └── theme.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── jquery-3.2.1.js │ │ │ ├── jquery-3.5.1.js │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery.js │ │ │ ├── js/ │ │ │ │ ├── badge_only.js │ │ │ │ └── theme.js │ │ │ ├── language_data.js │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── sphinx_highlight.js │ │ │ ├── underscore-1.12.0.js │ │ │ ├── underscore-1.13.1.js │ │ │ ├── underscore-1.3.1.js │ │ │ ├── underscore.js │ │ │ └── websupport.js │ │ ├── api.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ └── searchindex.js │ ├── index.rst │ ├── make.bat │ └── requirements.txt ├── eventkit/ │ ├── __init__.py │ ├── event.py │ ├── ops/ │ │ ├── __init__.py │ │ ├── aggregate.py │ │ ├── array.py │ │ ├── combine.py │ │ ├── create.py │ │ ├── misc.py │ │ ├── op.py │ │ ├── select.py │ │ ├── timing.py │ │ └── transform.py │ ├── util.py │ └── version.py ├── notebooks/ │ └── eventkit_introduction.ipynb ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── aggregate_test.py ├── combine_test.py ├── create_test.py ├── event_test.py ├── select_test.py ├── timing_test.py └── transform_test.py