├── .gitignore ├── .readthedocs.yaml ├── Docker ├── dockerfile ├── unit3dup.ps1 └── unit3dup.sh ├── LICENSE ├── README.rst ├── common ├── __init__.py ├── bdinfo_string.py ├── bittorrent.py ├── command.py ├── constants.py ├── database.py ├── external_services │ ├── __init__.py │ ├── ftpx │ │ ├── __init__.py │ │ ├── client.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── ftpx_service.py │ │ │ ├── ftpx_session.py │ │ │ ├── menu.py │ │ │ └── models │ │ │ ├── __init__.py │ │ │ └── list.py │ ├── igdb │ │ ├── __init__.py │ │ ├── client.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── search.py │ │ │ ├── platformid.py │ │ │ └── tags.py │ ├── imageHost.py │ ├── imdb.py │ ├── mediaresult.py │ ├── sessions │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── exceptions.py │ │ └── session.py │ ├── theMovieDB │ │ ├── __init__.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── keywords.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── movie │ │ │ │ ├── __init__.py │ │ │ │ ├── alternative_titles.py │ │ │ │ ├── details.py │ │ │ │ ├── movie.py │ │ │ │ ├── nowplaying.py │ │ │ │ └── release_info.py │ │ │ └── tvshow │ │ │ │ ├── __init__.py │ │ │ │ ├── alternative.py │ │ │ │ ├── details.py │ │ │ │ ├── on_the_air.py │ │ │ │ ├── translations.py │ │ │ │ └── tvshow.py │ │ │ └── videos.py │ └── trailers │ │ ├── __init__.py │ │ ├── api.py │ │ └── response.py ├── extractor.py ├── frames.py ├── mediainfo.py ├── mediainfo_string.py ├── settings.py ├── title.py ├── torrent_clients.py ├── trackers │ ├── __init__.py │ ├── data.py │ ├── itt.py │ ├── sis.py │ └── trackers.py └── utility.py ├── docs ├── .nojekyll ├── Makefile ├── conf.py ├── config.rst ├── docker.rst ├── index.rst ├── main.rst ├── make.bat ├── requirements.txt └── watcher.rst ├── mypy.ini ├── pyproject.toml ├── requirements.txt ├── tests ├── __init__.py ├── contents.py ├── dbonline.py ├── faketitle.py ├── game.py ├── movieshow.py ├── video.py └── watcher.py ├── unit3dup ├── __init__.py ├── __main__.py ├── automode.py ├── bot.py ├── duplicate.py ├── exceptions.py ├── media.py ├── media_manager │ ├── ContentManager.py │ ├── DocuManager.py │ ├── GameManager.py │ ├── MediaInfoManager.py │ ├── SeedManager.py │ ├── TorrentManager.py │ ├── VideoManager.py │ ├── __init__.py │ └── common.py ├── pvtDocu.py ├── pvtTorrent.py ├── pvtTracker.py ├── pvtVideo.py ├── torrent.py └── upload.py └── view ├── __init__.py └── custom_console.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Docker/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/Docker/dockerfile -------------------------------------------------------------------------------- /Docker/unit3dup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/Docker/unit3dup.ps1 -------------------------------------------------------------------------------- /Docker/unit3dup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/Docker/unit3dup.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/README.rst -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/bdinfo_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/bdinfo_string.py -------------------------------------------------------------------------------- /common/bittorrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/bittorrent.py -------------------------------------------------------------------------------- /common/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/command.py -------------------------------------------------------------------------------- /common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/constants.py -------------------------------------------------------------------------------- /common/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/database.py -------------------------------------------------------------------------------- /common/external_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/__init__.py -------------------------------------------------------------------------------- /common/external_services/ftpx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/ftpx/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/ftpx/client.py -------------------------------------------------------------------------------- /common/external_services/ftpx/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/ftpx/core/ftpx_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/ftpx/core/ftpx_service.py -------------------------------------------------------------------------------- /common/external_services/ftpx/core/ftpx_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/ftpx/core/ftpx_session.py -------------------------------------------------------------------------------- /common/external_services/ftpx/core/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/ftpx/core/menu.py -------------------------------------------------------------------------------- /common/external_services/ftpx/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/ftpx/core/models/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/ftpx/core/models/list.py -------------------------------------------------------------------------------- /common/external_services/igdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/igdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/igdb/client.py -------------------------------------------------------------------------------- /common/external_services/igdb/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/igdb/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/igdb/core/api.py -------------------------------------------------------------------------------- /common/external_services/igdb/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/igdb/core/models/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/igdb/core/models/search.py -------------------------------------------------------------------------------- /common/external_services/igdb/core/platformid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/igdb/core/platformid.py -------------------------------------------------------------------------------- /common/external_services/igdb/core/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/igdb/core/tags.py -------------------------------------------------------------------------------- /common/external_services/imageHost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/imageHost.py -------------------------------------------------------------------------------- /common/external_services/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/imdb.py -------------------------------------------------------------------------------- /common/external_services/mediaresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/mediaresult.py -------------------------------------------------------------------------------- /common/external_services/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/sessions/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/sessions/agents.py -------------------------------------------------------------------------------- /common/external_services/sessions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/sessions/exceptions.py -------------------------------------------------------------------------------- /common/external_services/sessions/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/sessions/session.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/__init__.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/__init__.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/api.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/keywords.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/movie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/movie/alternative_titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/movie/alternative_titles.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/movie/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/movie/details.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/movie/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/movie/movie.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/movie/nowplaying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/movie/nowplaying.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/movie/release_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/movie/release_info.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/tvshow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/tvshow/alternative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/tvshow/alternative.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/tvshow/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/tvshow/details.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/tvshow/on_the_air.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/tvshow/on_the_air.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/tvshow/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/tvshow/translations.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/models/tvshow/tvshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/models/tvshow/tvshow.py -------------------------------------------------------------------------------- /common/external_services/theMovieDB/core/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/theMovieDB/core/videos.py -------------------------------------------------------------------------------- /common/external_services/trailers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /common/external_services/trailers/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/trailers/api.py -------------------------------------------------------------------------------- /common/external_services/trailers/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/external_services/trailers/response.py -------------------------------------------------------------------------------- /common/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/extractor.py -------------------------------------------------------------------------------- /common/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/frames.py -------------------------------------------------------------------------------- /common/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/mediainfo.py -------------------------------------------------------------------------------- /common/mediainfo_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/mediainfo_string.py -------------------------------------------------------------------------------- /common/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/settings.py -------------------------------------------------------------------------------- /common/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/title.py -------------------------------------------------------------------------------- /common/torrent_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/torrent_clients.py -------------------------------------------------------------------------------- /common/trackers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/trackers/__init__.py -------------------------------------------------------------------------------- /common/trackers/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/trackers/data.py -------------------------------------------------------------------------------- /common/trackers/itt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/trackers/itt.py -------------------------------------------------------------------------------- /common/trackers/sis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/trackers/sis.py -------------------------------------------------------------------------------- /common/trackers/trackers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/trackers/trackers.py -------------------------------------------------------------------------------- /common/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/common/utility.py -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/config.rst -------------------------------------------------------------------------------- /docs/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/docker.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/main.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/watcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/docs/watcher.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/contents.py -------------------------------------------------------------------------------- /tests/dbonline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/dbonline.py -------------------------------------------------------------------------------- /tests/faketitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/faketitle.py -------------------------------------------------------------------------------- /tests/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/game.py -------------------------------------------------------------------------------- /tests/movieshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/movieshow.py -------------------------------------------------------------------------------- /tests/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/video.py -------------------------------------------------------------------------------- /tests/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/tests/watcher.py -------------------------------------------------------------------------------- /unit3dup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/__init__.py -------------------------------------------------------------------------------- /unit3dup/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/__main__.py -------------------------------------------------------------------------------- /unit3dup/automode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/automode.py -------------------------------------------------------------------------------- /unit3dup/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/bot.py -------------------------------------------------------------------------------- /unit3dup/duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/duplicate.py -------------------------------------------------------------------------------- /unit3dup/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/exceptions.py -------------------------------------------------------------------------------- /unit3dup/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media.py -------------------------------------------------------------------------------- /unit3dup/media_manager/ContentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/ContentManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/DocuManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/DocuManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/GameManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/GameManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/MediaInfoManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/MediaInfoManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/SeedManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/SeedManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/TorrentManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/TorrentManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/VideoManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/VideoManager.py -------------------------------------------------------------------------------- /unit3dup/media_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unit3dup/media_manager/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/media_manager/common.py -------------------------------------------------------------------------------- /unit3dup/pvtDocu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/pvtDocu.py -------------------------------------------------------------------------------- /unit3dup/pvtTorrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/pvtTorrent.py -------------------------------------------------------------------------------- /unit3dup/pvtTracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/pvtTracker.py -------------------------------------------------------------------------------- /unit3dup/pvtVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/pvtVideo.py -------------------------------------------------------------------------------- /unit3dup/torrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/torrent.py -------------------------------------------------------------------------------- /unit3dup/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/unit3dup/upload.py -------------------------------------------------------------------------------- /view/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/view/__init__.py -------------------------------------------------------------------------------- /view/custom_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/31December99/Unit3Dup/HEAD/view/custom_console.py --------------------------------------------------------------------------------