├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── philINT ├── __init__.py ├── classes.py ├── credentials.conf ├── endpoints.conf ├── main.py ├── modules │ ├── __init__.py │ ├── cms │ │ ├── __init__.py │ │ ├── gravatar.py │ │ └── wordpress.py │ ├── education │ │ ├── __init__.py │ │ └── duolingo.py │ ├── games │ │ ├── __init__.py │ │ └── chess.py │ ├── programming │ │ ├── __init__.py │ │ └── github.py │ ├── social_media │ │ ├── __init__.py │ │ ├── imgur.py │ │ ├── mewe.py │ │ ├── myanimelist.py │ │ └── twitter.py │ └── software │ │ ├── __init__.py │ │ └── adobe.py └── utils.py └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/README.md -------------------------------------------------------------------------------- /philINT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/classes.py -------------------------------------------------------------------------------- /philINT/credentials.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/credentials.conf -------------------------------------------------------------------------------- /philINT/endpoints.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/endpoints.conf -------------------------------------------------------------------------------- /philINT/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/main.py -------------------------------------------------------------------------------- /philINT/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/cms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/cms/gravatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/cms/gravatar.py -------------------------------------------------------------------------------- /philINT/modules/cms/wordpress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/cms/wordpress.py -------------------------------------------------------------------------------- /philINT/modules/education/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/education/duolingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/education/duolingo.py -------------------------------------------------------------------------------- /philINT/modules/games/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/games/chess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/games/chess.py -------------------------------------------------------------------------------- /philINT/modules/programming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/programming/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/programming/github.py -------------------------------------------------------------------------------- /philINT/modules/social_media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/social_media/imgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/social_media/imgur.py -------------------------------------------------------------------------------- /philINT/modules/social_media/mewe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/social_media/mewe.py -------------------------------------------------------------------------------- /philINT/modules/social_media/myanimelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/social_media/myanimelist.py -------------------------------------------------------------------------------- /philINT/modules/social_media/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/social_media/twitter.py -------------------------------------------------------------------------------- /philINT/modules/software/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /philINT/modules/software/adobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/modules/software/adobe.py -------------------------------------------------------------------------------- /philINT/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/philINT/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajuelosemmanuel/philINT/HEAD/setup.py --------------------------------------------------------------------------------