python-edl icon indicating copy to clipboard operation
python-edl copied to clipboard

A python EDL parsing library

Results 6 python-edl issues
Sort by recently updated
recently updated
newest added

* adds ToNameMatcher for identify destination name (TO CLIP NAME) in a transition event. While (TO FROM NAME) Name is pushed to the previous entry on the list. * Update...

This fixes #5 -- the typical way around this sort of chicken-and-egg problem is to use `exec()` to slurp up the version name from another plain Python file.

Steps to reproduce: - Read and then write an EDL file as follows: ``` with open("020_Test.edl") as read_file: test_edl = parser.parse(read_file) with open("outfile.edl", "w") as write_file: write_file.write(test_edl.to_string()) ``` What should...

Steps to reproduce: - Run `pip install edl` What should happen: - Installs `edl` library and dependencies (namely, `timecode`) What happens instead: ``` pip install edl Downloading/unpacking edl Downloading edl-0.1.11.tar.gz...

Swich from collection to collection.abc to work with newer python release

From a short bit of experimenting, to get this running on python3, this line just needs updating: https://github.com/simonh10/python-edl/blob/a7185fc6b3e9b554fb802cc63853981823125a72/edl/__init__.py#LL567C18-L567C18 ```python if isinstance(input_, collections.Iterable): ``` to ```python if isinstance(input_, collections.abc.Iterable): ```