├── .github └── dependabot.yml ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── docs ├── .gitignore ├── 404.html ├── Gemfile ├── _config.yml └── index.md ├── pyproject.toml ├── requirements.txt └── src └── gsan ├── __init__.py └── main.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/docs/index.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/gsan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/src/gsan/__init__.py -------------------------------------------------------------------------------- /src/gsan/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franccesco/getaltname/HEAD/src/gsan/main.py --------------------------------------------------------------------------------