├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yaml │ └── feature_request.yaml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── lint_python.yaml │ └── pre-commit.yml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── autopublisher ├── README.md ├── __init__.py ├── autopublisher.py ├── dashboard_integration.py ├── info.json ├── utils.py └── view.py ├── counting ├── README.md ├── __init__.py ├── commands │ ├── admin.py │ └── user.py ├── counting.py ├── event_handlers.py ├── info.json ├── settings.py └── utils.py ├── currency ├── __init__.py ├── currency.py └── info.json ├── earthquake ├── __init__.py ├── earthquake.py └── info.json ├── easterhunt ├── README.md ├── __init__.py ├── achievements │ └── achievements.py ├── commands │ ├── owner.py │ └── user.py ├── db.py ├── easterhunt.py ├── info.json ├── utils.py └── view.py ├── forwarddeleter ├── __init__.py ├── forwarddeleter.py ├── info.json └── utils.py ├── github ├── __init__.py ├── converters.py ├── github.py └── info.json ├── heist ├── README.md ├── __init__.py ├── handlers.py ├── heist.py ├── info.json ├── utils.py └── views.py ├── history ├── __init__.py ├── history.py ├── info.json └── utils.py ├── honeycombs ├── __init__.py ├── bank_utils.py ├── honeycombs.py ├── info.json └── view.py ├── info.json ├── lockdown ├── __init__.py ├── info.json ├── lockdown.py └── view.py ├── nba ├── __init__.py ├── converter.py ├── info.json ├── nba.py └── view.py ├── nekosbest ├── __init__.py ├── core.py ├── info.json ├── nekosbest.py └── view.py ├── nospoiler ├── __init__.py ├── info.json └── nospoiler.py ├── plaguegame ├── __init__.py ├── converters.py ├── info.json └── plague.py ├── pokemon ├── __init__.py ├── converters.py ├── data │ └── template.webp ├── info.json ├── pokemon.py ├── utils.py └── views.py ├── redupdate ├── __init__.py ├── info.json ├── redupdate.py └── view.py ├── requirements.txt ├── restrictposts ├── __init__.py ├── info.json └── restrictposts.py └── themoviedb ├── README.md ├── __init__.py ├── info.json ├── themoviedb.py └── tmdb_utils.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ltzmax 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/ISSUE_TEMPLATE/config.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint_python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/workflows/lint_python.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/README.md -------------------------------------------------------------------------------- /autopublisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/README.md -------------------------------------------------------------------------------- /autopublisher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/__init__.py -------------------------------------------------------------------------------- /autopublisher/autopublisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/autopublisher.py -------------------------------------------------------------------------------- /autopublisher/dashboard_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/dashboard_integration.py -------------------------------------------------------------------------------- /autopublisher/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/info.json -------------------------------------------------------------------------------- /autopublisher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/utils.py -------------------------------------------------------------------------------- /autopublisher/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/autopublisher/view.py -------------------------------------------------------------------------------- /counting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/README.md -------------------------------------------------------------------------------- /counting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/__init__.py -------------------------------------------------------------------------------- /counting/commands/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/commands/admin.py -------------------------------------------------------------------------------- /counting/commands/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/commands/user.py -------------------------------------------------------------------------------- /counting/counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/counting.py -------------------------------------------------------------------------------- /counting/event_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/event_handlers.py -------------------------------------------------------------------------------- /counting/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/info.json -------------------------------------------------------------------------------- /counting/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/settings.py -------------------------------------------------------------------------------- /counting/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/counting/utils.py -------------------------------------------------------------------------------- /currency/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/currency/__init__.py -------------------------------------------------------------------------------- /currency/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/currency/currency.py -------------------------------------------------------------------------------- /currency/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/currency/info.json -------------------------------------------------------------------------------- /earthquake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/earthquake/__init__.py -------------------------------------------------------------------------------- /earthquake/earthquake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/earthquake/earthquake.py -------------------------------------------------------------------------------- /earthquake/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/earthquake/info.json -------------------------------------------------------------------------------- /easterhunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/README.md -------------------------------------------------------------------------------- /easterhunt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/__init__.py -------------------------------------------------------------------------------- /easterhunt/achievements/achievements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/achievements/achievements.py -------------------------------------------------------------------------------- /easterhunt/commands/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/commands/owner.py -------------------------------------------------------------------------------- /easterhunt/commands/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/commands/user.py -------------------------------------------------------------------------------- /easterhunt/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/db.py -------------------------------------------------------------------------------- /easterhunt/easterhunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/easterhunt.py -------------------------------------------------------------------------------- /easterhunt/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/info.json -------------------------------------------------------------------------------- /easterhunt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/utils.py -------------------------------------------------------------------------------- /easterhunt/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/easterhunt/view.py -------------------------------------------------------------------------------- /forwarddeleter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/forwarddeleter/__init__.py -------------------------------------------------------------------------------- /forwarddeleter/forwarddeleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/forwarddeleter/forwarddeleter.py -------------------------------------------------------------------------------- /forwarddeleter/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/forwarddeleter/info.json -------------------------------------------------------------------------------- /forwarddeleter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/forwarddeleter/utils.py -------------------------------------------------------------------------------- /github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/github/__init__.py -------------------------------------------------------------------------------- /github/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/github/converters.py -------------------------------------------------------------------------------- /github/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/github/github.py -------------------------------------------------------------------------------- /github/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/github/info.json -------------------------------------------------------------------------------- /heist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/README.md -------------------------------------------------------------------------------- /heist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/__init__.py -------------------------------------------------------------------------------- /heist/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/handlers.py -------------------------------------------------------------------------------- /heist/heist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/heist.py -------------------------------------------------------------------------------- /heist/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/info.json -------------------------------------------------------------------------------- /heist/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/utils.py -------------------------------------------------------------------------------- /heist/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/heist/views.py -------------------------------------------------------------------------------- /history/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/history/__init__.py -------------------------------------------------------------------------------- /history/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/history/history.py -------------------------------------------------------------------------------- /history/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/history/info.json -------------------------------------------------------------------------------- /history/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/history/utils.py -------------------------------------------------------------------------------- /honeycombs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/honeycombs/__init__.py -------------------------------------------------------------------------------- /honeycombs/bank_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/honeycombs/bank_utils.py -------------------------------------------------------------------------------- /honeycombs/honeycombs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/honeycombs/honeycombs.py -------------------------------------------------------------------------------- /honeycombs/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/honeycombs/info.json -------------------------------------------------------------------------------- /honeycombs/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/honeycombs/view.py -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/info.json -------------------------------------------------------------------------------- /lockdown/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/lockdown/__init__.py -------------------------------------------------------------------------------- /lockdown/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/lockdown/info.json -------------------------------------------------------------------------------- /lockdown/lockdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/lockdown/lockdown.py -------------------------------------------------------------------------------- /lockdown/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/lockdown/view.py -------------------------------------------------------------------------------- /nba/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nba/__init__.py -------------------------------------------------------------------------------- /nba/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nba/converter.py -------------------------------------------------------------------------------- /nba/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nba/info.json -------------------------------------------------------------------------------- /nba/nba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nba/nba.py -------------------------------------------------------------------------------- /nba/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nba/view.py -------------------------------------------------------------------------------- /nekosbest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nekosbest/__init__.py -------------------------------------------------------------------------------- /nekosbest/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nekosbest/core.py -------------------------------------------------------------------------------- /nekosbest/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nekosbest/info.json -------------------------------------------------------------------------------- /nekosbest/nekosbest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nekosbest/nekosbest.py -------------------------------------------------------------------------------- /nekosbest/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nekosbest/view.py -------------------------------------------------------------------------------- /nospoiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nospoiler/__init__.py -------------------------------------------------------------------------------- /nospoiler/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nospoiler/info.json -------------------------------------------------------------------------------- /nospoiler/nospoiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/nospoiler/nospoiler.py -------------------------------------------------------------------------------- /plaguegame/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/plaguegame/__init__.py -------------------------------------------------------------------------------- /plaguegame/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/plaguegame/converters.py -------------------------------------------------------------------------------- /plaguegame/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/plaguegame/info.json -------------------------------------------------------------------------------- /plaguegame/plague.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/plaguegame/plague.py -------------------------------------------------------------------------------- /pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/__init__.py -------------------------------------------------------------------------------- /pokemon/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/converters.py -------------------------------------------------------------------------------- /pokemon/data/template.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/data/template.webp -------------------------------------------------------------------------------- /pokemon/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/info.json -------------------------------------------------------------------------------- /pokemon/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/pokemon.py -------------------------------------------------------------------------------- /pokemon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/utils.py -------------------------------------------------------------------------------- /pokemon/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/pokemon/views.py -------------------------------------------------------------------------------- /redupdate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/redupdate/__init__.py -------------------------------------------------------------------------------- /redupdate/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/redupdate/info.json -------------------------------------------------------------------------------- /redupdate/redupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/redupdate/redupdate.py -------------------------------------------------------------------------------- /redupdate/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/redupdate/view.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Red-DiscordBot 2 | -------------------------------------------------------------------------------- /restrictposts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/restrictposts/__init__.py -------------------------------------------------------------------------------- /restrictposts/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/restrictposts/info.json -------------------------------------------------------------------------------- /restrictposts/restrictposts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/restrictposts/restrictposts.py -------------------------------------------------------------------------------- /themoviedb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/themoviedb/README.md -------------------------------------------------------------------------------- /themoviedb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/themoviedb/__init__.py -------------------------------------------------------------------------------- /themoviedb/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/themoviedb/info.json -------------------------------------------------------------------------------- /themoviedb/themoviedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/themoviedb/themoviedb.py -------------------------------------------------------------------------------- /themoviedb/tmdb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltzmax/maxcogs/HEAD/themoviedb/tmdb_utils.py --------------------------------------------------------------------------------