mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
We will need it soon for all url parameters not yet used
This reverts commit 9fa4e8ff5e.
Conflicts:
codegen/templates/GithubObject.MethodBody.DoRequest.py
src/github/Organization.py
68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
# WARNING: this file is generated automaticaly.
|
|
# Do not modify it manually, your work would be lost.
|
|
|
|
import urllib
|
|
import PaginatedList
|
|
from GithubObject import *
|
|
|
|
class Label( object ):
|
|
def __init__( self, requester, attributes, completion ):
|
|
self.__requester = requester
|
|
self.__initAttributes()
|
|
self.__useAttributes( attributes )
|
|
|
|
@property
|
|
def color( self ):
|
|
return self.__color
|
|
|
|
@property
|
|
def name( self ):
|
|
return self.__name
|
|
|
|
@property
|
|
def url( self ):
|
|
return self.__url
|
|
|
|
def delete( self ):
|
|
status, headers, data = self.__requester.request(
|
|
"DELETE",
|
|
str( self.url ),
|
|
None,
|
|
None
|
|
)
|
|
|
|
def edit( self, name, color ):
|
|
assert isinstance( name, ( str, unicode ) ), name
|
|
assert isinstance( color, ( str, unicode ) ), color
|
|
post_parameters = {
|
|
"name": name,
|
|
"color": color,
|
|
}
|
|
status, headers, data = self.__requester.request(
|
|
"PATCH",
|
|
str( self.url ),
|
|
None,
|
|
post_parameters
|
|
)
|
|
self.__useAttributes( data )
|
|
|
|
@property
|
|
def _identity( self ):
|
|
return urllib.quote( str( self.name ) )
|
|
|
|
def __initAttributes( self ):
|
|
self.__color = None
|
|
self.__name = None
|
|
self.__url = None
|
|
|
|
def __useAttributes( self, attributes ):
|
|
if "color" in attributes and attributes[ "color" ] is not None: # pragma no branch
|
|
assert isinstance( attributes[ "color" ], ( str, unicode ) ), attributes[ "color" ]
|
|
self.__color = attributes[ "color" ]
|
|
if "name" in attributes and attributes[ "name" ] is not None: # pragma no branch
|
|
assert isinstance( attributes[ "name" ], ( str, unicode ) ), attributes[ "name" ]
|
|
self.__name = attributes[ "name" ]
|
|
if "url" in attributes and attributes[ "url" ] is not None: # pragma no branch
|
|
assert isinstance( attributes[ "url" ], ( str, unicode ) ), attributes[ "url" ]
|
|
self.__url = attributes[ "url" ]
|