Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 3, 2020 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/5c0a9e1ba238ebf37170878fb1b135c7 to your computer and use it in GitHub Desktop.
Save r-ryantm/5c0a9e1ba238ebf37170878fb1b135c7 to your computer and use it in GitHub Desktop.
/nix/store/rsnxnxn3hh30gl1warm6q59mcp9x05n7-python3.7-python-gitlab-2.5.0
├── bin
│   └── gitlab
├── lib
│   └── python3.7
│   └── site-packages
│   ├── gitlab
│   │   ├── base.py
│   │   ├── cli.py
│   │   ├── config.py
│   │   ├── const.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── mixins.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── const.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── mixins.cpython-37.pyc
│   │   │   ├── types.cpython-37.pyc
│   │   │   └── utils.cpython-37.pyc
│   │   ├── tests
│   │   │   ├── conftest.py
│   │   │   ├── __init__.py
│   │   │   ├── objects
│   │   │   │   ├── conftest.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── conftest.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_appearance.cpython-37.pyc
│   │   │   │   │   ├── test_applications.cpython-37.pyc
│   │   │   │   │   ├── test_commits.cpython-37.pyc
│   │   │   │   │   ├── test_deployments.cpython-37.pyc
│   │   │   │   │   ├── test_deploy_tokens.cpython-37.pyc
│   │   │   │   │   ├── test_environments.cpython-37.pyc
│   │   │   │   │   ├── test_groups.cpython-37.pyc
│   │   │   │   │   ├── test_hooks.cpython-37.pyc
│   │   │   │   │   ├── test_issues.cpython-37.pyc
│   │   │   │   │   ├── test_job_artifacts.cpython-37.pyc
│   │   │   │   │   ├── test_packages.cpython-37.pyc
│   │   │   │   │   ├── test_pipeline_schedules.cpython-37.pyc
│   │   │   │   │   ├── test_project_import_export.cpython-37.pyc
│   │   │   │   │   ├── test_projects.cpython-37.pyc
│   │   │   │   │   ├── test_project_statistics.cpython-37.pyc
│   │   │   │   │   ├── test_remote_mirrors.cpython-37.pyc
│   │   │   │   │   ├── test_resource_milestone_events.cpython-37.pyc
│   │   │   │   │   ├── test_runners.cpython-37.pyc
│   │   │   │   │   ├── test_services.cpython-37.pyc
│   │   │   │   │   ├── test_snippets.cpython-37.pyc
│   │   │   │   │   ├── test_submodules.cpython-37.pyc
│   │   │   │   │   ├── test_todos.cpython-37.pyc
│   │   │   │   │   ├── test_users.cpython-37.pyc
│   │   │   │   │   └── test_variables.cpython-37.pyc
│   │   │   │   ├── test_appearance.py
│   │   │   │   ├── test_applications.py
│   │   │   │   ├── test_commits.py
│   │   │   │   ├── test_deployments.py
│   │   │   │   ├── test_deploy_tokens.py
│   │   │   │   ├── test_environments.py
│   │   │   │   ├── test_groups.py
│   │   │   │   ├── test_hooks.py
│   │   │   │   ├── test_issues.py
│   │   │   │   ├── test_job_artifacts.py
│   │   │   │   ├── test_packages.py
│   │   │   │   ├── test_pipeline_schedules.py
│   │   │   │   ├── test_project_import_export.py
│   │   │   │   ├── test_projects.py
│   │   │   │   ├── test_project_statistics.py
│   │   │   │   ├── test_remote_mirrors.py
│   │   │   │   ├── test_resource_milestone_events.py
│   │   │   │   ├── test_runners.py
│   │   │   │   ├── test_services.py
│   │   │   │   ├── test_snippets.py
│   │   │   │   ├── test_submodules.py
│   │   │   │   ├── test_todos.py
│   │   │   │   ├── test_users.py
│   │   │   │   └── test_variables.py
│   │   │   ├── __pycache__
│   │   │   │   ├── conftest.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_cli.cpython-37.pyc
│   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   ├── test_exceptions.cpython-37.pyc
│   │   │   │   ├── test_gitlab_auth.cpython-37.pyc
│   │   │   │   ├── test_gitlab.cpython-37.pyc
│   │   │   │   ├── test_gitlab_http_methods.cpython-37.pyc
│   │   │   │   ├── test_types.cpython-37.pyc
│   │   │   │   └── test_utils.cpython-37.pyc
│   │   │   ├── test_base.py
│   │   │   ├── test_cli.py
│   │   │   ├── test_config.py
│   │   │   ├── test_exceptions.py
│   │   │   ├── test_gitlab_auth.py
│   │   │   ├── test_gitlab_http_methods.py
│   │   │   ├── test_gitlab.py
│   │   │   ├── test_types.py
│   │   │   └── test_utils.py
│   │   ├── types.py
│   │   ├── utils.py
│   │   └── v4
│   │   ├── cli.py
│   │   ├── __init__.py
│   │   ├── objects
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── variables.cpython-37.pyc
│   │   │   └── variables.py
│   │   └── __pycache__
│   │   ├── cli.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   └── python_gitlab-2.5.0.dist-info
│   ├── AUTHORS
│   ├── COPYING
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
16 directories, 113 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment