├── .github ├── dependabot.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── examples.rst │ ├── index.rst │ ├── installation.rst │ └── luscious │ ├── Album and Video.rst │ ├── Dataclasses.rst │ ├── Enumerators.rst │ ├── GraphQL API Queries.rst │ ├── Luscious.rst │ ├── Request handler.rst │ └── classes.rst ├── luscious ├── __init__.py ├── luscious.py └── queries.py ├── requirements.txt └── setup.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/luscious/Album and Video.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/Album and Video.rst -------------------------------------------------------------------------------- /docs/source/luscious/Dataclasses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/Dataclasses.rst -------------------------------------------------------------------------------- /docs/source/luscious/Enumerators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/Enumerators.rst -------------------------------------------------------------------------------- /docs/source/luscious/GraphQL API Queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/GraphQL API Queries.rst -------------------------------------------------------------------------------- /docs/source/luscious/Luscious.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/Luscious.rst -------------------------------------------------------------------------------- /docs/source/luscious/Request handler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/Request handler.rst -------------------------------------------------------------------------------- /docs/source/luscious/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/docs/source/luscious/classes.rst -------------------------------------------------------------------------------- /luscious/__init__.py: -------------------------------------------------------------------------------- 1 | from .luscious import * 2 | __version__ = "1.1.4" -------------------------------------------------------------------------------- /luscious/luscious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/luscious/luscious.py -------------------------------------------------------------------------------- /luscious/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/luscious/queries.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyporn-san/Luscious/HEAD/setup.py --------------------------------------------------------------------------------