Name | TMDBTraktSyncer JSON |
Version |
2.2.6
JSON |
| download |
home_page | None |
Summary | A python script that syncs user watchlist and ratings for Movies, TV Shows and Episodes both ways between Trakt and TMDB. |
upload_time | 2025-02-07 20:48:23 |
maintainer | None |
docs_url | None |
author | RileyXX |
requires_python | >=3.6 |
license | MIT License
Copyright (c) 2025 TMDBTraktSyncer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
requests
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# TMDB-Trakt-Syncer
This Python script syncs user watchlist and ratings for Movies, TV Shows, and Episodes both ways between [Trakt](https://trakt.tv/) and [TMDB](https://www.themoviedb.org/). Data already set will not be overwritten. Ratings and watchlist sync are both optional. The user will be prompted to enter their settings and api keys on first run.
The script is compatible on any operating system that supports Python v3.6 or later, including Windows, Linux, Mac, and ChromeOS. If you're interested in syncing ratings between Trakt, Plex, IMDB, and TMDB, I recommend the following projects: [PlexTraktSync](https://github.com/Taxel/PlexTraktSync), [IMDB-Trakt-Syncer](https://github.com/RileyXX/IMDB-Trakt-Syncer), and [TMDB-Trakt-Syncer](https://github.com/RileyXX/TMDB-Trakt-Syncer). See below for my other [recommended projects](https://github.com/RileyXX/TMDB-Trakt-Syncer?tab=readme-ov-file#other-recommended-projects).
## Installation Instructions:
1. Install [Python](https://www.python.org/downloads/) (v3.6 or later). During installation, tick the box for adding Python to your PATH variable.
2. Install the script by running `python -m pip install TMDBTraktSyncer` in command line.
3. Login to [Trakt](https://trakt.tv/oauth/applications) and create a new API application named `TMDbTraktSyncer`. In the "Redirect uri" field, enter `urn:ietf:wg:oauth:2.0:oob`, then save the application.
4. Login to [TMDB](https://www.themoviedb.org/settings/api/) and create a new API application. Choose "Developer" and accept the terms. Fill out the application form as follows:
- Type of use: `Personal`
- Application name: `TMDB-Trakt-Sync`
- Application URL: `https://github.com/RileyXX/TMDB-Trakt-Syncer`
- Application summary: `Use TMDB API and Trakt API to sync user watchlists and ratings between platforms.`
- Fill in the rest of the fields as desired and submit the form. Your API keys will be generated instantly.
5. Run the script by running `TMDBTraktSyncer` in the command line.
6. Follow the prompts during the first run. You will need to enter your Trakt `client ID` and `client secret` from step 3, as well as your `tmdb_v4_token` from step 4. Please note that these details are saved insecurely as `credentials.txt` in the same folder as the script.
7. Setup is complete. The script will continue running and syncing your ratings. You can monitor its progress in the command line. See below for [setting up automation](https://github.com/RileyXX/TMDB-Trakt-Syncer?tab=readme-ov-file#for-setting-up-automation-see-the-following-wiki-pages).
## Installing the Script:
```
python -m pip install TMDBTraktSyncer
```
_Run in your operating system's native command line._
## Running the Script:
```
TMDBTraktSyncer
```
_Run in your operating system's native command line._
## Updating the Script:
```
python -m pip install TMDBTraktSyncer --upgrade
```
_Run in your operating system's native command line._
## Uninstalling the Script:
```
TMDBTraktSyncer --uninstall
```
_Clears cached data except user entered credentials before uninstalling. Run in your operating system's native command line._
## Installing a Specific Version:
```
python -m pip install TMDBTraktSyncer==VERSION_NUMBER
```
_Replace `VERSION_NUMBER` with your [desired version](https://github.com/RileyXX/TMDB-Trakt-Syncer/releases) (e.g. 2.0.0) and run in your operating system's native command line._
## Performing a Clean Uninstall:
```
TMDBTraktSyncer --clean-uninstall
```
_Clears all cached data, inluding user credentials and error logs before uninstalling. Run in your operating system's native command line._
## Uninstall With Native Python Method:
```
python -m pip uninstall TMDBTraktSyncer
```
_Not recommended unless other uninstall methods failed. This method leaves behind any cached data such as user entered credentials and error logs which can be deleted manually from your install directory. Run in your operating system's native command line._
# Commands for TMDBTraktSyncer
Below is a list of available commands for this package, along with a brief description of their functionality. You can copy and paste them directly into your terminal.
## Available Commands
| **Command** | **Description** |
|---------------------------|---------------------------------------------------------------------------------------------------|
| `--help` | List available commands |
| `--clear-user-data` | Clears user-entered credentials. |
| `--clear-cache` | Clears error logs and other cached data. |
| `--uninstall` | Clears cached data except user entered credentials before uninstalling. |
| `--clean-uninstall` | Clears all cached data, inluding user credentials before uninstalling. |
| `--directory` | Prints the package install directory. |
## Usage Example
Run the following commands as needed:
```bash
# List available commands
TMDBTraktSyncer --help
# To clear user data
TMDBTraktSyncer --clear-user-data
# To clear cache
TMDBTraktSyncer --clear-cache
# To uninstall
TMDBTraktSyncer --uninstall
# To perform a clean uninstall
TMDBTraktSyncer --clean-uninstall
# To get the installation directory
TMDBTraktSyncer --directory
# Use multiple commands at once
TMDBTraktSyncer --clear-user-data --clear-cache
```
## Alternative Manual Installation Method (without pip install):
1. Install [Python](https://www.python.org/downloads/) (v3.6 or later). During installation, tick the box for adding Python to your PATH variable.
2. Download the latest .zip from the [releases page](https://github.com/RileyXX/TMDB-Trakt-Syncer/releases) and extract it to the desired directory.
3. Open your operating systems native command line interface, use it to navigate to the extracted folder and run `python -m pip install requirements.txt`.
4. Login to [Trakt](https://trakt.tv/oauth/applications) and create a new API application named `TMDBTraktSyncer`. In the "Redirect uri" field, enter `urn:ietf:wg:oauth:2.0:oob`, then save the application.
5. Login to [TMDB](https://www.themoviedb.org/settings/api/) and create a new API application. Choose "Developer" and accept the terms. Fill out the application form as follows:
- Type of use: `Personal`
- Application name: `TMDB-Trakt-Sync`
- Application URL: `https://github.com/RileyXX/TMDB-Trakt-Syncer`
- Application summary: `Use TMDB API and Trakt API to sync user watchlists and ratings between platforms.`
- Fill in the rest of the fields as desired and submit the form. Your API keys will be generated instantly.
6. Run `TMDBTraktSyncer.py` or open the terminal and navigate to the folder where `TMDBTraktSyncer.py` is located, then run `TMDBTraktSyncer.py` in the terminal.
7. Follow the prompts during the first run. You will need to enter your Trakt `client ID` and `client secret` from step 3, as well as your `tmdb_v4_token` from step 4. Please note that these details are saved insecurely as `credentials.txt` in the same folder as the script.
8. Setup is complete. The script will continue running and syncing your ratings. You can monitor its progress in the command line. See below for [setting up automation](https://github.com/RileyXX/TMDB-Trakt-Syncer#for-setting-up-automation-see-the-following-wiki-pages).
## For Setting Up Automation See the Following Wiki Pages:
- Setup Automation for:
- [Windows](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Setting-Up-Automation-on-Windows)
- [Linux](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Setting-Up-Automation-on-Linux)
- [macOS](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Setting-Up-Automation-on-macOS)
- Python Script to Update all Packages with Pip (Windows, Linux, Mac, ChromeOS, etc.) [Link #1](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Python-Script-to-Update-all-Packages-with-Pip-\(Windows,-Linux,-Mac,-ChromeOS,-etc\))
## Troubleshooting, Known Issues, Workarounds & Future Outlook:
* If any of your details change (passwords, logins, API keys, etc.), simply run `TMDBTraktSyncer --clear-user-data` to reset your credentials. Alternatively, open `credentials.txt`, modify your details, save it and then run the script again. You can also simply delete `credentials.txt` to reset the script and it will prompt you to enter your new details on the next run.
## Screenshot:

## Sponsorships, Donations, and Custom Projects:
If you find my scripts helpful, you can become a [sponsor](https://github.com/sponsors/RileyXX) and support my projects! If you need help with a project, open an issue, and I'll do my best to assist you. For other inquiries and custom projects, you can contact me on [Twitter](https://twitter.com/RileyxBell).
#### More Donation Options:
- Cashapp: [$rileyxx](https://cash.app/$rileyxx/)
- Venmo: [@rileyxx](https://account.venmo.com/u/rileyxx)
- Bitcoin: `bc1qrjevwqv49z8y77len3azqfghxrjmrjvhy5zqau`
## Also Posted on:
* [PyPi](https://pypi.org/project/TMDBTraktSyncer/)
* [Reddit](https://www.reddit.com/r/trakt/comments/13jlu4r/tmdb_trakt_rating_syncer_tool_2_way_sync/)
<br>
[](https://opensource.org/licenses/MIT)
## Other Recommended Projects:
| Project Name | Description |
|--------------|-------------|
| [PlexTraktSync](https://github.com/Taxel/PlexTraktSync) | A script that syncs user watch history and ratings between Trakt and Plex (without needing a PlexPass or Trakt VIP subscription). |
| [IMDB-Trakt-Syncer](https://github.com/RileyXX/IMDB-Trakt-Syncer) | A script that syncs user watchlist, ratings, reviews and watch history both ways between Trakt and IMDB. |
| [TMDB-Trakt-Syncer](https://github.com/RileyXX/TMDB-Trakt-Syncer) | A script that syncs user watchlist and ratings both ways between Trakt and TMDB. |
| [PlexPreferNonForcedSubs](https://github.com/RileyXX/PlexPreferNonForcedSubs) | A script that sets all movies and shows in your local Plex library to English non-forced subtitles by default. |
| [Casvt / AudioSubChanger](https://github.com/Casvt/Plex-scripts/blob/main/media_management/audio_sub_changer.py) | A script with advanced options for changing audio & subtitle tracks in Plex. |
| [Casvt / PlexAutoDelete](https://github.com/Casvt/Plex-scripts/blob/main/media_management/plex_auto_delete.py) | A script for automatically deleting watched content from Plex. |
| [universal-trakt-scrobbler](https://github.com/trakt-tools/universal-trakt-scrobbler) | An extension that automatically scrobbles TV shows and Movies from several streaming services to Trakt. |
| [Netflix-to-Trakt-Import](https://github.com/jensb89/Netflix-to-Trakt-Import) | A tool to import your Netflix viewing history into Trakt. |
| [trakt-tv-backup](https://darekkay.com/blog/trakt-tv-backup/) | A command-line tool for backing up your Trakt.tv data. |
| [blacktwin / JBOPS](https://github.com/blacktwin/JBOPS) | A collection of scripts and tools for enhancing and automating tasks in Plex. |
| [Casvt / Plex-scripts](https://github.com/Casvt/Plex-scripts) | A collection of useful scripts for Plex automation and management. |
| [trakt---letterboxd-import](https://github.com/jensb89/trakt---letterboxd-import) | A tool to import your Letterboxd ratings and watchlist into Trakt. |
| [TraktRater](https://github.com/damienhaynes/TraktRater/) | A tool to help users transfer user episode, show, and movie user ratings and watchlists from multiple media database sites around the web. |
| [TvTimeToTrakt](https://github.com/lukearran/TvTimeToTrakt) | A tool to sync your TV Time watch history with Trakt.tv. |
| [Plex Media Server](https://www.plex.tv/media-server-downloads/#plex-app) | A media server software to organize and stream your personal media collection. |
| [Radarr](https://github.com/Radarr/Radarr) | A movie collection manager and downloader for various platforms. |
| [Sonarr](https://github.com/Sonarr/Sonarr) | A TV show collection manager and downloader for various platforms. |
| [Jackett](https://github.com/Jackett/Jackett) | A proxy server that provides API support for various torrent trackers commonly used with Radarr and Sonarr. |
| [qBittorrent](https://github.com/qbittorrent/qBittorrent) | A free and open-source BitTorrent client. |
| [AirVPN](https://airvpn.org/) | A VPN client with port forwarding support. Great VPN for torrents. |
| [Overseerr](https://github.com/sct/overseerr) | A request management and media discovery tool for your home media server. |
| [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) | A reverse proxy solution to bypass Cloudflare protection and access websites commonly used with Jackett. |
| [yt-dlp](https://github.com/yt-dlp/yt-dlp) | A command-line program to download videos from YouTube and other sites. |
| [th-ch/youtube-music](https://github.com/th-ch/youtube-music) | A lightweight and feature-rich desktop client for YouTube Music, offering additional features like ad-blocking, sponsorblock and customizable themes. |
| [ReVanced](https://github.com/revanced) | A community-driven project to modify and enhance YouTube and other apps on Android, offering features such as ad-blocking, background playback, and other advanced customization options. |
| uBlock Origin [Chrome](https://chromewebstore.google.com/detail/ublock-origin-lite/ddkjiahejlhfcafbddmgiahcphecmpfh) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) | A powerful, open-source browser extension for blocking ads, trackers, and other unwanted content. |
| SponsorBlock [Chrome](https://chromewebstore.google.com/detail/sponsorblock-for-youtube/mnjggcdmjocbbbhaepdhchncahnbgone) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/sponsorblock/) | A browser extension that automatically skips sponsored segments in YouTube videos. |
| Enhancer for YouTube [Chrome](https://chromewebstore.google.com/detail/enhancer-for-youtube/ponfpcnoihfmfllpaingbgckeeldkhle) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/enhancer-for-youtube/) | A browser extension that adds a wide range of customization options and playback enhancements for YouTube, including the ability to force playback resolution. |
| Return YouTube Dislike [Chrome](https://chromewebstore.google.com/detail/return-youtube-dislike/gebbhagfogifgggkldgodflihgfeippi) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/) | A browser extension that restores the dislike count on YouTube videos. |
Raw data
{
"_id": null,
"home_page": null,
"name": "TMDBTraktSyncer",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "RileyXX",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/d3/e7/569077aa685fdc90d702069e0bb039907d16189fe67a9da96dd4f6a87626/tmdbtraktsyncer-2.2.6.tar.gz",
"platform": null,
"description": "# TMDB-Trakt-Syncer\r\n\r\nThis Python script syncs user watchlist and ratings for Movies, TV Shows, and Episodes both ways between [Trakt](https://trakt.tv/) and [TMDB](https://www.themoviedb.org/). Data already set will not be overwritten. Ratings and watchlist sync are both optional. The user will be prompted to enter their settings and api keys on first run.\r\n\r\nThe script is compatible on any operating system that supports Python v3.6 or later, including Windows, Linux, Mac, and ChromeOS. If you're interested in syncing ratings between Trakt, Plex, IMDB, and TMDB, I recommend the following projects: [PlexTraktSync](https://github.com/Taxel/PlexTraktSync), [IMDB-Trakt-Syncer](https://github.com/RileyXX/IMDB-Trakt-Syncer), and [TMDB-Trakt-Syncer](https://github.com/RileyXX/TMDB-Trakt-Syncer). See below for my other [recommended projects](https://github.com/RileyXX/TMDB-Trakt-Syncer?tab=readme-ov-file#other-recommended-projects).\r\n\r\n## Installation Instructions:\r\n1. Install [Python](https://www.python.org/downloads/) (v3.6 or later). During installation, tick the box for adding Python to your PATH variable.\r\n2. Install the script by running `python -m pip install TMDBTraktSyncer` in command line.\r\n3. Login to [Trakt](https://trakt.tv/oauth/applications) and create a new API application named `TMDbTraktSyncer`. In the \"Redirect uri\" field, enter `urn:ietf:wg:oauth:2.0:oob`, then save the application.\r\n4. Login to [TMDB](https://www.themoviedb.org/settings/api/) and create a new API application. Choose \"Developer\" and accept the terms. Fill out the application form as follows: \r\n - Type of use: `Personal`\r\n - Application name: `TMDB-Trakt-Sync`\r\n - Application URL: `https://github.com/RileyXX/TMDB-Trakt-Syncer`\r\n - Application summary: `Use TMDB API and Trakt API to sync user watchlists and ratings between platforms.`\r\n - Fill in the rest of the fields as desired and submit the form. Your API keys will be generated instantly.\r\n5. Run the script by running `TMDBTraktSyncer` in the command line.\r\n6. Follow the prompts during the first run. You will need to enter your Trakt `client ID` and `client secret` from step 3, as well as your `tmdb_v4_token` from step 4. Please note that these details are saved insecurely as `credentials.txt` in the same folder as the script.\r\n7. Setup is complete. The script will continue running and syncing your ratings. You can monitor its progress in the command line. See below for [setting up automation](https://github.com/RileyXX/TMDB-Trakt-Syncer?tab=readme-ov-file#for-setting-up-automation-see-the-following-wiki-pages).\r\n\r\n## Installing the Script:\r\n```\r\npython -m pip install TMDBTraktSyncer\r\n```\r\n_Run in your operating system's native command line._\r\n## Running the Script:\r\n```\r\nTMDBTraktSyncer\r\n```\r\n_Run in your operating system's native command line._\r\n## Updating the Script:\r\n```\r\npython -m pip install TMDBTraktSyncer --upgrade\r\n```\r\n_Run in your operating system's native command line._\r\n## Uninstalling the Script:\r\n```\r\nTMDBTraktSyncer --uninstall\r\n```\r\n_Clears cached data except user entered credentials before uninstalling. Run in your operating system's native command line._\r\n## Installing a Specific Version:\r\n```\r\npython -m pip install TMDBTraktSyncer==VERSION_NUMBER\r\n```\r\n_Replace `VERSION_NUMBER` with your [desired version](https://github.com/RileyXX/TMDB-Trakt-Syncer/releases) (e.g. 2.0.0) and run in your operating system's native command line._\r\n## Performing a Clean Uninstall:\r\n```\r\nTMDBTraktSyncer --clean-uninstall\r\n```\r\n_Clears all cached data, inluding user credentials and error logs before uninstalling. Run in your operating system's native command line._\r\n## Uninstall With Native Python Method:\r\n```\r\npython -m pip uninstall TMDBTraktSyncer\r\n```\r\n_Not recommended unless other uninstall methods failed. This method leaves behind any cached data such as user entered credentials and error logs which can be deleted manually from your install directory. Run in your operating system's native command line._\r\n\r\n# Commands for TMDBTraktSyncer\r\n\r\nBelow is a list of available commands for this package, along with a brief description of their functionality. You can copy and paste them directly into your terminal.\r\n\r\n## Available Commands\r\n\r\n| **Command** | **Description** |\r\n|---------------------------|---------------------------------------------------------------------------------------------------|\r\n| `--help` | List available commands |\r\n| `--clear-user-data` | Clears user-entered credentials. |\r\n| `--clear-cache` | Clears error logs and other cached data. |\r\n| `--uninstall` | Clears cached data except user entered credentials before uninstalling. |\r\n| `--clean-uninstall` | Clears all cached data, inluding user credentials before uninstalling. |\r\n| `--directory` | Prints the package install directory. |\r\n\r\n## Usage Example\r\n\r\nRun the following commands as needed:\r\n\r\n```bash\r\n# List available commands\r\nTMDBTraktSyncer --help\r\n\r\n# To clear user data\r\nTMDBTraktSyncer --clear-user-data\r\n\r\n# To clear cache\r\nTMDBTraktSyncer --clear-cache\r\n\r\n# To uninstall\r\nTMDBTraktSyncer --uninstall\r\n\r\n# To perform a clean uninstall\r\nTMDBTraktSyncer --clean-uninstall\r\n\r\n# To get the installation directory\r\nTMDBTraktSyncer --directory\r\n\r\n# Use multiple commands at once\r\nTMDBTraktSyncer --clear-user-data --clear-cache\r\n```\r\n\r\n## Alternative Manual Installation Method (without pip install):\r\n1. Install [Python](https://www.python.org/downloads/) (v3.6 or later). During installation, tick the box for adding Python to your PATH variable.\r\n2. Download the latest .zip from the [releases page](https://github.com/RileyXX/TMDB-Trakt-Syncer/releases) and extract it to the desired directory.\r\n3. Open your operating systems native command line interface, use it to navigate to the extracted folder and run `python -m pip install requirements.txt`.\r\n4. Login to [Trakt](https://trakt.tv/oauth/applications) and create a new API application named `TMDBTraktSyncer`. In the \"Redirect uri\" field, enter `urn:ietf:wg:oauth:2.0:oob`, then save the application.\r\n5. Login to [TMDB](https://www.themoviedb.org/settings/api/) and create a new API application. Choose \"Developer\" and accept the terms. Fill out the application form as follows: \r\n - Type of use: `Personal`\r\n - Application name: `TMDB-Trakt-Sync`\r\n - Application URL: `https://github.com/RileyXX/TMDB-Trakt-Syncer`\r\n - Application summary: `Use TMDB API and Trakt API to sync user watchlists and ratings between platforms.`\r\n - Fill in the rest of the fields as desired and submit the form. Your API keys will be generated instantly.\r\n6. Run `TMDBTraktSyncer.py` or open the terminal and navigate to the folder where `TMDBTraktSyncer.py` is located, then run `TMDBTraktSyncer.py` in the terminal.\r\n7. Follow the prompts during the first run. You will need to enter your Trakt `client ID` and `client secret` from step 3, as well as your `tmdb_v4_token` from step 4. Please note that these details are saved insecurely as `credentials.txt` in the same folder as the script.\r\n8. Setup is complete. The script will continue running and syncing your ratings. You can monitor its progress in the command line. See below for [setting up automation](https://github.com/RileyXX/TMDB-Trakt-Syncer#for-setting-up-automation-see-the-following-wiki-pages).\r\n\r\n## For Setting Up Automation See the Following Wiki Pages:\r\n- Setup Automation for:\r\n - [Windows](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Setting-Up-Automation-on-Windows)\r\n - [Linux](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Setting-Up-Automation-on-Linux)\r\n - [macOS](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Setting-Up-Automation-on-macOS)\r\n- Python Script to Update all Packages with Pip (Windows, Linux, Mac, ChromeOS, etc.) [Link #1](https://github.com/RileyXX/TMDB-Trakt-Syncer/wiki/Python-Script-to-Update-all-Packages-with-Pip-\\(Windows,-Linux,-Mac,-ChromeOS,-etc\\))\r\n\r\n## Troubleshooting, Known Issues, Workarounds & Future Outlook:\r\n* If any of your details change (passwords, logins, API keys, etc.), simply run `TMDBTraktSyncer --clear-user-data` to reset your credentials. Alternatively, open `credentials.txt`, modify your details, save it and then run the script again. You can also simply delete `credentials.txt` to reset the script and it will prompt you to enter your new details on the next run.\r\n\r\n## Screenshot:\r\n\r\n\r\n## Sponsorships, Donations, and Custom Projects:\r\nIf you find my scripts helpful, you can become a [sponsor](https://github.com/sponsors/RileyXX) and support my projects! If you need help with a project, open an issue, and I'll do my best to assist you. For other inquiries and custom projects, you can contact me on [Twitter](https://twitter.com/RileyxBell).\r\n\r\n#### More Donation Options:\r\n- Cashapp: [$rileyxx](https://cash.app/$rileyxx/)\r\n- Venmo: [@rileyxx](https://account.venmo.com/u/rileyxx)\r\n- Bitcoin: `bc1qrjevwqv49z8y77len3azqfghxrjmrjvhy5zqau`\r\n\r\n## Also Posted on:\r\n* [PyPi](https://pypi.org/project/TMDBTraktSyncer/)\r\n* [Reddit](https://www.reddit.com/r/trakt/comments/13jlu4r/tmdb_trakt_rating_syncer_tool_2_way_sync/)\r\n\r\n<br>\r\n\r\n[](https://opensource.org/licenses/MIT)\r\n\r\n## Other Recommended Projects:\r\n\r\n| Project Name | Description |\r\n|--------------|-------------|\r\n| [PlexTraktSync](https://github.com/Taxel/PlexTraktSync) | A script that syncs user watch history and ratings between Trakt and Plex (without needing a PlexPass or Trakt VIP subscription). |\r\n| [IMDB-Trakt-Syncer](https://github.com/RileyXX/IMDB-Trakt-Syncer) | A script that syncs user watchlist, ratings, reviews and watch history both ways between Trakt and IMDB. |\r\n| [TMDB-Trakt-Syncer](https://github.com/RileyXX/TMDB-Trakt-Syncer) | A script that syncs user watchlist and ratings both ways between Trakt and TMDB. |\r\n| [PlexPreferNonForcedSubs](https://github.com/RileyXX/PlexPreferNonForcedSubs) | A script that sets all movies and shows in your local Plex library to English non-forced subtitles by default. |\r\n| [Casvt / AudioSubChanger](https://github.com/Casvt/Plex-scripts/blob/main/media_management/audio_sub_changer.py) | A script with advanced options for changing audio & subtitle tracks in Plex. |\r\n| [Casvt / PlexAutoDelete](https://github.com/Casvt/Plex-scripts/blob/main/media_management/plex_auto_delete.py) | A script for automatically deleting watched content from Plex. |\r\n| [universal-trakt-scrobbler](https://github.com/trakt-tools/universal-trakt-scrobbler) | An extension that automatically scrobbles TV shows and Movies from several streaming services to Trakt. |\r\n| [Netflix-to-Trakt-Import](https://github.com/jensb89/Netflix-to-Trakt-Import) | A tool to import your Netflix viewing history into Trakt. |\r\n| [trakt-tv-backup](https://darekkay.com/blog/trakt-tv-backup/) | A command-line tool for backing up your Trakt.tv data. |\r\n| [blacktwin / JBOPS](https://github.com/blacktwin/JBOPS) | A collection of scripts and tools for enhancing and automating tasks in Plex. |\r\n| [Casvt / Plex-scripts](https://github.com/Casvt/Plex-scripts) | A collection of useful scripts for Plex automation and management. |\r\n| [trakt---letterboxd-import](https://github.com/jensb89/trakt---letterboxd-import) | A tool to import your Letterboxd ratings and watchlist into Trakt. |\r\n| [TraktRater](https://github.com/damienhaynes/TraktRater/) | A tool to help users transfer user episode, show, and movie user ratings and watchlists from multiple media database sites around the web. |\r\n| [TvTimeToTrakt](https://github.com/lukearran/TvTimeToTrakt) | A tool to sync your TV Time watch history with Trakt.tv. |\r\n| [Plex Media Server](https://www.plex.tv/media-server-downloads/#plex-app) | A media server software to organize and stream your personal media collection. |\r\n| [Radarr](https://github.com/Radarr/Radarr) | A movie collection manager and downloader for various platforms. |\r\n| [Sonarr](https://github.com/Sonarr/Sonarr) | A TV show collection manager and downloader for various platforms. |\r\n| [Jackett](https://github.com/Jackett/Jackett) | A proxy server that provides API support for various torrent trackers commonly used with Radarr and Sonarr. |\r\n| [qBittorrent](https://github.com/qbittorrent/qBittorrent) | A free and open-source BitTorrent client. |\r\n| [AirVPN](https://airvpn.org/) | A VPN client with port forwarding support. Great VPN for torrents. |\r\n| [Overseerr](https://github.com/sct/overseerr) | A request management and media discovery tool for your home media server. |\r\n| [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) | A reverse proxy solution to bypass Cloudflare protection and access websites commonly used with Jackett. |\r\n| [yt-dlp](https://github.com/yt-dlp/yt-dlp) | A command-line program to download videos from YouTube and other sites. |\r\n| [th-ch/youtube-music](https://github.com/th-ch/youtube-music) | A lightweight and feature-rich desktop client for YouTube Music, offering additional features like ad-blocking, sponsorblock and customizable themes. |\r\n| [ReVanced](https://github.com/revanced) | A community-driven project to modify and enhance YouTube and other apps on Android, offering features such as ad-blocking, background playback, and other advanced customization options. |\r\n| uBlock Origin [Chrome](https://chromewebstore.google.com/detail/ublock-origin-lite/ddkjiahejlhfcafbddmgiahcphecmpfh) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) | A powerful, open-source browser extension for blocking ads, trackers, and other unwanted content. |\r\n| SponsorBlock [Chrome](https://chromewebstore.google.com/detail/sponsorblock-for-youtube/mnjggcdmjocbbbhaepdhchncahnbgone) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/sponsorblock/) | A browser extension that automatically skips sponsored segments in YouTube videos. |\r\n| Enhancer for YouTube [Chrome](https://chromewebstore.google.com/detail/enhancer-for-youtube/ponfpcnoihfmfllpaingbgckeeldkhle) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/enhancer-for-youtube/) | A browser extension that adds a wide range of customization options and playback enhancements for YouTube, including the ability to force playback resolution. |\r\n| Return YouTube Dislike [Chrome](https://chromewebstore.google.com/detail/return-youtube-dislike/gebbhagfogifgggkldgodflihgfeippi) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/) | A browser extension that restores the dislike count on YouTube videos. |\r\n",
"bugtrack_url": null,
"license": "MIT License\r\n \r\n Copyright (c) 2025 TMDBTraktSyncer\r\n \r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n \r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n \r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE.\r\n ",
"summary": "A python script that syncs user watchlist and ratings for Movies, TV Shows and Episodes both ways between Trakt and TMDB.",
"version": "2.2.6",
"project_urls": {
"changelog": "https://github.com/RileyXX/TMDB-Trakt-Syncer/releases",
"documentation": "https://github.com/RileyXX/TMDB-Trakt-Syncer",
"funding": "https://github.com/sponsors/RileyXX",
"homepage": "https://github.com/RileyXX/TMDB-Trakt-Syncer",
"issues": "https://github.com/RileyXX/TMDB-Trakt-Syncer/issues",
"repository": "https://github.com/RileyXX/TMDB-Trakt-Syncer"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9cba2bb6ad3891d95a28d95087add3448bda5ba056b26c9c30a390620525ee9d",
"md5": "ee9cb8c94206a0181d4eb7676b228940",
"sha256": "0a4d9574be873957ab4e8cfd0e4a854821331758654ab2fa1803c219c3baef4c"
},
"downloads": -1,
"filename": "TMDBTraktSyncer-2.2.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ee9cb8c94206a0181d4eb7676b228940",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 27041,
"upload_time": "2025-02-07T20:48:22",
"upload_time_iso_8601": "2025-02-07T20:48:22.224674Z",
"url": "https://files.pythonhosted.org/packages/9c/ba/2bb6ad3891d95a28d95087add3448bda5ba056b26c9c30a390620525ee9d/TMDBTraktSyncer-2.2.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3e7569077aa685fdc90d702069e0bb039907d16189fe67a9da96dd4f6a87626",
"md5": "3585089f1352cf371c0adf4d7791e227",
"sha256": "8fc53717382b397fe189859597a4255a1d3a35d028153e321c67faae3221b9ae"
},
"downloads": -1,
"filename": "tmdbtraktsyncer-2.2.6.tar.gz",
"has_sig": false,
"md5_digest": "3585089f1352cf371c0adf4d7791e227",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 28503,
"upload_time": "2025-02-07T20:48:23",
"upload_time_iso_8601": "2025-02-07T20:48:23.410923Z",
"url": "https://files.pythonhosted.org/packages/d3/e7/569077aa685fdc90d702069e0bb039907d16189fe67a9da96dd4f6a87626/tmdbtraktsyncer-2.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-07 20:48:23",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "RileyXX",
"github_project": "TMDB-Trakt-Syncer",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "requests",
"specs": [
[
">=",
"2.32.3"
]
]
}
],
"lcname": "tmdbtraktsyncer"
}