├── .coveragerc ├── .flake8 ├── .gemini └── config.yaml ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── deploy.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE.txt ├── README.md ├── RELEASING.md ├── pypinfo ├── __init__.py ├── __main__.py ├── cli.py ├── core.py ├── db.py ├── fields.py └── py.typed ├── pyproject.toml ├── tests ├── data │ └── sample-credentials.json ├── test_core.py └── test_db.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.gemini/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.gemini/config.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/RELEASING.md -------------------------------------------------------------------------------- /pypinfo/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '23.0.0' 2 | -------------------------------------------------------------------------------- /pypinfo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/pypinfo/__main__.py -------------------------------------------------------------------------------- /pypinfo/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/pypinfo/cli.py -------------------------------------------------------------------------------- /pypinfo/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/pypinfo/core.py -------------------------------------------------------------------------------- /pypinfo/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/pypinfo/db.py -------------------------------------------------------------------------------- /pypinfo/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/pypinfo/fields.py -------------------------------------------------------------------------------- /pypinfo/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/data/sample-credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/tests/data/sample-credentials.json -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofek/pypinfo/HEAD/tox.ini --------------------------------------------------------------------------------