Metadata-Version: 2.1
Name: multi_data_loader
Version: 0.0.2
Summary: Multi Data Loader
Project-URL: Homepage, https://git.linker.cc/research/misc/multi_data_loader.git
Author-email: KeleiJiang <18852088031@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: fastapi==0.88.0
Requires-Dist: opencv-python
Requires-Dist: pathlib
Requires-Dist: pillow
Requires-Dist: tqdm
Description-Content-Type: text/markdown

# Multi Data Loader

```python
from multi_data_loader.data_loader import load_data

loader = load_data(data=["https://airesources.oss-cn-hangzhou.aliyuncs.com/jkl/nj/%E6%96%87%E7%A8%BF1.mp4"],
          type="url")

for res, ret_timestamp, img_size in loader:
    print(res)

```