Contents Menu Expand Light mode Dark mode Auto light/dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
python-gitlab v4.6.0
python-gitlab v4.6.0

Table of Contents

  • Getting started with the CLI
  • Getting started with the API
  • Advanced usage
  • CLI examples
  • API examples
    • Access requests
    • Appearance
    • Applications
    • Award Emojis
    • Badges
    • Branches
    • Migrations (Bulk Imports)
    • Broadcast messages
    • CI Lint
    • Commits
    • Deploy keys
    • Deploy tokens
    • Deployments
    • Discussions
    • Draft Notes
    • Environments
    • Events
    • Epics
    • Features flags
    • Geo nodes
    • Groups
    • Group Access Tokens
    • Invitations
    • Issues
    • Iterations
    • CI/CD job token scope
    • Keys
    • Issue boards
    • Labels
    • Notification settings
    • Merge Trains
    • Merge requests
    • Merge request approvals settings
    • Milestones
    • Namespaces
    • Notes
    • Packages
    • Pages domains
    • Personal Access Tokens
    • Pipelines and Jobs
    • Projects
    • Project Access Tokens
    • Protected branches
    • Protected environments
    • Releases
    • Runners
    • Project Remote Mirrors
    • Registry Repositories
    • Registry Repository Tags
    • Resource Groups
    • Search API
    • Secure Files
    • Settings
    • Snippets
    • Statistics
    • System hooks
    • Templates
    • Todos
    • Topics
    • Users and current user
    • CI/CD Variables
    • Sidekiq metrics
    • Wiki pages
    • Clusters (DEPRECATED)
  • API reference (gitlab package)
    • gitlab.v4 package
  • CLI reference (gitlab command)
  • Lower-level APIs
  • CHANGELOG
  • Release notes
  • FAQ
Back to top
View this page

Appearance¶

Reference¶

  • v4 API:

    • gitlab.v4.objects.ApplicationAppearance

    • gitlab.v4.objects.ApplicationAppearanceManager

    • gitlab.Gitlab.appearance

  • GitLab API: https://docs.gitlab.com/ce/api/appearance.html

Examples¶

Get the appearance:

appearance = gl.appearance.get()

Update the appearance:

appearance.title = "Test"
appearance.save()
Next
Applications
Previous
Access requests
Copyright © Copyright 2013-2019 Gauvain Pocentek, 2019-2023 python-gitlab team
Made with Sphinx and @pradyunsg's Furo
On this page
  • Appearance
    • Reference
    • Examples