├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── README.rst ├── badgetools ├── __init__.py ├── badgetools.py └── info.json ├── country ├── __init__.py ├── api.py ├── country.py ├── info.json └── iso3166.py ├── info.json ├── ipinfo ├── __init__.py ├── core.py ├── info.json ├── models │ ├── __init__.py │ ├── ipdata.py │ └── ipinfo.py └── utils.py ├── jsk ├── __init__.py ├── info.json └── jsk_cog.py ├── kickstarter ├── __init__.py ├── api.py ├── info.json └── kickstarter.py ├── manim ├── LICENSE ├── README.md ├── __init__.py ├── info.json └── manim.py ├── maps ├── __init__.py ├── converter.py ├── info.json └── maps.py ├── moviedb ├── __init__.py ├── api │ ├── __init__.py │ ├── base.py │ ├── details.py │ ├── person.py │ ├── search.py │ └── suggestions.py ├── converter.py ├── embed_utils.py ├── info.json ├── moviedb.py └── utils.py ├── ocr ├── LICENSE.txt ├── __init__.py ├── converter.py ├── info.json ├── iso639.py ├── models.py ├── ocr.py └── utils.py ├── phonefinder ├── __init__.py ├── converter.py ├── info.json └── phonefinder.py ├── pokebase ├── __init__.py ├── data │ └── template.webp ├── info.json ├── pokebase.py └── utils.py ├── pyproject.toml ├── redditinfo ├── __init__.py ├── handles.py ├── info.json └── redditinfo.py ├── roleplay ├── __init__.py ├── constants.py ├── info.json └── roleplay.py ├── steamcog ├── __init__.py ├── converter.py ├── info.json ├── steamcog.py └── stores.py └── yugioh ├── __init__.py ├── api.py ├── info.json └── yugioh.py /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/README.rst -------------------------------------------------------------------------------- /badgetools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/badgetools/__init__.py -------------------------------------------------------------------------------- /badgetools/badgetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/badgetools/badgetools.py -------------------------------------------------------------------------------- /badgetools/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/badgetools/info.json -------------------------------------------------------------------------------- /country/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/country/__init__.py -------------------------------------------------------------------------------- /country/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/country/api.py -------------------------------------------------------------------------------- /country/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/country/country.py -------------------------------------------------------------------------------- /country/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/country/info.json -------------------------------------------------------------------------------- /country/iso3166.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/country/iso3166.py -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/info.json -------------------------------------------------------------------------------- /ipinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/__init__.py -------------------------------------------------------------------------------- /ipinfo/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/core.py -------------------------------------------------------------------------------- /ipinfo/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/info.json -------------------------------------------------------------------------------- /ipinfo/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/models/__init__.py -------------------------------------------------------------------------------- /ipinfo/models/ipdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/models/ipdata.py -------------------------------------------------------------------------------- /ipinfo/models/ipinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/models/ipinfo.py -------------------------------------------------------------------------------- /ipinfo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ipinfo/utils.py -------------------------------------------------------------------------------- /jsk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/jsk/__init__.py -------------------------------------------------------------------------------- /jsk/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/jsk/info.json -------------------------------------------------------------------------------- /jsk/jsk_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/jsk/jsk_cog.py -------------------------------------------------------------------------------- /kickstarter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/kickstarter/__init__.py -------------------------------------------------------------------------------- /kickstarter/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/kickstarter/api.py -------------------------------------------------------------------------------- /kickstarter/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/kickstarter/info.json -------------------------------------------------------------------------------- /kickstarter/kickstarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/kickstarter/kickstarter.py -------------------------------------------------------------------------------- /manim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/manim/LICENSE -------------------------------------------------------------------------------- /manim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/manim/README.md -------------------------------------------------------------------------------- /manim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/manim/__init__.py -------------------------------------------------------------------------------- /manim/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/manim/info.json -------------------------------------------------------------------------------- /manim/manim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/manim/manim.py -------------------------------------------------------------------------------- /maps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/maps/__init__.py -------------------------------------------------------------------------------- /maps/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/maps/converter.py -------------------------------------------------------------------------------- /maps/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/maps/info.json -------------------------------------------------------------------------------- /maps/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/maps/maps.py -------------------------------------------------------------------------------- /moviedb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/__init__.py -------------------------------------------------------------------------------- /moviedb/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moviedb/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/api/base.py -------------------------------------------------------------------------------- /moviedb/api/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/api/details.py -------------------------------------------------------------------------------- /moviedb/api/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/api/person.py -------------------------------------------------------------------------------- /moviedb/api/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/api/search.py -------------------------------------------------------------------------------- /moviedb/api/suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/api/suggestions.py -------------------------------------------------------------------------------- /moviedb/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/converter.py -------------------------------------------------------------------------------- /moviedb/embed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/embed_utils.py -------------------------------------------------------------------------------- /moviedb/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/info.json -------------------------------------------------------------------------------- /moviedb/moviedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/moviedb.py -------------------------------------------------------------------------------- /moviedb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/moviedb/utils.py -------------------------------------------------------------------------------- /ocr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/LICENSE.txt -------------------------------------------------------------------------------- /ocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/__init__.py -------------------------------------------------------------------------------- /ocr/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/converter.py -------------------------------------------------------------------------------- /ocr/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/info.json -------------------------------------------------------------------------------- /ocr/iso639.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/iso639.py -------------------------------------------------------------------------------- /ocr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/models.py -------------------------------------------------------------------------------- /ocr/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/ocr.py -------------------------------------------------------------------------------- /ocr/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/ocr/utils.py -------------------------------------------------------------------------------- /phonefinder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/phonefinder/__init__.py -------------------------------------------------------------------------------- /phonefinder/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/phonefinder/converter.py -------------------------------------------------------------------------------- /phonefinder/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/phonefinder/info.json -------------------------------------------------------------------------------- /phonefinder/phonefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/phonefinder/phonefinder.py -------------------------------------------------------------------------------- /pokebase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/pokebase/__init__.py -------------------------------------------------------------------------------- /pokebase/data/template.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/pokebase/data/template.webp -------------------------------------------------------------------------------- /pokebase/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/pokebase/info.json -------------------------------------------------------------------------------- /pokebase/pokebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/pokebase/pokebase.py -------------------------------------------------------------------------------- /pokebase/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/pokebase/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /redditinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/redditinfo/__init__.py -------------------------------------------------------------------------------- /redditinfo/handles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/redditinfo/handles.py -------------------------------------------------------------------------------- /redditinfo/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/redditinfo/info.json -------------------------------------------------------------------------------- /redditinfo/redditinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/redditinfo/redditinfo.py -------------------------------------------------------------------------------- /roleplay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/roleplay/__init__.py -------------------------------------------------------------------------------- /roleplay/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/roleplay/constants.py -------------------------------------------------------------------------------- /roleplay/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/roleplay/info.json -------------------------------------------------------------------------------- /roleplay/roleplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/roleplay/roleplay.py -------------------------------------------------------------------------------- /steamcog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/steamcog/__init__.py -------------------------------------------------------------------------------- /steamcog/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/steamcog/converter.py -------------------------------------------------------------------------------- /steamcog/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/steamcog/info.json -------------------------------------------------------------------------------- /steamcog/steamcog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/steamcog/steamcog.py -------------------------------------------------------------------------------- /steamcog/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/steamcog/stores.py -------------------------------------------------------------------------------- /yugioh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/yugioh/__init__.py -------------------------------------------------------------------------------- /yugioh/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/yugioh/api.py -------------------------------------------------------------------------------- /yugioh/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/yugioh/info.json -------------------------------------------------------------------------------- /yugioh/yugioh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owocado/cogs/HEAD/yugioh/yugioh.py --------------------------------------------------------------------------------