├── .github ├── ISSUE_TEMPLATE │ └── report-a-bug.md └── workflows │ ├── python-pyinstaller-docker-test.yml │ ├── python-pyinstaller-multi-versatile.yml │ ├── python-test-ubuntu.yml │ └── python-test-windows.yml ├── .gitignore ├── LICENSE ├── README.md ├── ReleaseNotes.md ├── RewriteNotes.md ├── api ├── __init__.py └── fansly.py ├── config.sample.ini ├── config ├── __init__.py ├── args.py ├── browser.py ├── config.py ├── fanslyconfig.py ├── metadatahandling.py ├── modes.py └── validation.py ├── docs ├── Elements-of-the-H.264-VideoAAC-Audio-MP4-Movie-v2_0.pdf ├── MP4Links.md └── mp4-layout.txt ├── download ├── __init__.py ├── account.py ├── collections.py ├── common.py ├── core.py ├── downloadstate.py ├── globalstate.py ├── m3u8.py ├── media.py ├── messages.py ├── single.py ├── timeline.py └── types.py ├── errors ├── __init__.py └── mp4.py ├── fansly_downloader_ng.py ├── fileio ├── dedupe.py ├── fnmanip.py └── mp4.py ├── media ├── __init__.py ├── media.py └── mediaitem.py ├── mp4hash.py ├── pathio ├── __init__.py └── pathio.py ├── requirements-dev.txt ├── requirements.txt ├── resources ├── fansly_ng.ico └── fansly_ng_screenshot.png ├── tests └── crypto.py ├── textio ├── __init__.py └── textio.py ├── updater ├── __init__.py └── utils.py └── utils ├── common.py ├── datetime.py ├── ffmpeg.py ├── metadata_manager.py_old ├── statistics.py ├── timer.py └── web.py /.github/ISSUE_TEMPLATE/report-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/.github/ISSUE_TEMPLATE/report-a-bug.md -------------------------------------------------------------------------------- /.github/workflows/python-pyinstaller-docker-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/.github/workflows/python-pyinstaller-docker-test.yml -------------------------------------------------------------------------------- /.github/workflows/python-pyinstaller-multi-versatile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/.github/workflows/python-pyinstaller-multi-versatile.yml -------------------------------------------------------------------------------- /.github/workflows/python-test-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/.github/workflows/python-test-ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/python-test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/.github/workflows/python-test-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /RewriteNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/RewriteNotes.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/fansly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/api/fansly.py -------------------------------------------------------------------------------- /config.sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config.sample.ini -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/args.py -------------------------------------------------------------------------------- /config/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/browser.py -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/config.py -------------------------------------------------------------------------------- /config/fanslyconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/fanslyconfig.py -------------------------------------------------------------------------------- /config/metadatahandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/metadatahandling.py -------------------------------------------------------------------------------- /config/modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/modes.py -------------------------------------------------------------------------------- /config/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/config/validation.py -------------------------------------------------------------------------------- /docs/Elements-of-the-H.264-VideoAAC-Audio-MP4-Movie-v2_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/docs/Elements-of-the-H.264-VideoAAC-Audio-MP4-Movie-v2_0.pdf -------------------------------------------------------------------------------- /docs/MP4Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/docs/MP4Links.md -------------------------------------------------------------------------------- /docs/mp4-layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/docs/mp4-layout.txt -------------------------------------------------------------------------------- /download/__init__.py: -------------------------------------------------------------------------------- 1 | """Download Module""" 2 | 3 | 4 | __all__: list[str] = [ 5 | ] 6 | -------------------------------------------------------------------------------- /download/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/account.py -------------------------------------------------------------------------------- /download/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/collections.py -------------------------------------------------------------------------------- /download/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/common.py -------------------------------------------------------------------------------- /download/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/core.py -------------------------------------------------------------------------------- /download/downloadstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/downloadstate.py -------------------------------------------------------------------------------- /download/globalstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/globalstate.py -------------------------------------------------------------------------------- /download/m3u8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/m3u8.py -------------------------------------------------------------------------------- /download/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/media.py -------------------------------------------------------------------------------- /download/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/messages.py -------------------------------------------------------------------------------- /download/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/single.py -------------------------------------------------------------------------------- /download/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/timeline.py -------------------------------------------------------------------------------- /download/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/download/types.py -------------------------------------------------------------------------------- /errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/errors/__init__.py -------------------------------------------------------------------------------- /errors/mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/errors/mp4.py -------------------------------------------------------------------------------- /fansly_downloader_ng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/fansly_downloader_ng.py -------------------------------------------------------------------------------- /fileio/dedupe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/fileio/dedupe.py -------------------------------------------------------------------------------- /fileio/fnmanip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/fileio/fnmanip.py -------------------------------------------------------------------------------- /fileio/mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/fileio/mp4.py -------------------------------------------------------------------------------- /media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/media/__init__.py -------------------------------------------------------------------------------- /media/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/media/media.py -------------------------------------------------------------------------------- /media/mediaitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/media/mediaitem.py -------------------------------------------------------------------------------- /mp4hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/mp4hash.py -------------------------------------------------------------------------------- /pathio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/pathio/__init__.py -------------------------------------------------------------------------------- /pathio/pathio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/pathio/pathio.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/fansly_ng.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/resources/fansly_ng.ico -------------------------------------------------------------------------------- /resources/fansly_ng_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/resources/fansly_ng_screenshot.png -------------------------------------------------------------------------------- /tests/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/tests/crypto.py -------------------------------------------------------------------------------- /textio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/textio/__init__.py -------------------------------------------------------------------------------- /textio/textio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/textio/textio.py -------------------------------------------------------------------------------- /updater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/updater/__init__.py -------------------------------------------------------------------------------- /updater/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/updater/utils.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/datetime.py -------------------------------------------------------------------------------- /utils/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/ffmpeg.py -------------------------------------------------------------------------------- /utils/metadata_manager.py_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/metadata_manager.py_old -------------------------------------------------------------------------------- /utils/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/statistics.py -------------------------------------------------------------------------------- /utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/timer.py -------------------------------------------------------------------------------- /utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prof79/fansly-downloader-ng/HEAD/utils/web.py --------------------------------------------------------------------------------