mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-31 08:08:12 +00:00
14 lines
218 B
Python
Executable File
14 lines
218 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Name: Video2X package main
|
|
Author: K4YT3X
|
|
Date Created: July 3, 2021
|
|
Last Modified: July 3, 2021
|
|
"""
|
|
|
|
from .video2x import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|