_id
stringlengths
2
7
title
stringlengths
1
88
partition
stringclasses
3 values
text
stringlengths
75
19.8k
language
stringclasses
1 value
meta_information
dict
q260400
ProfitBricksService.create_server
validation
def create_server(self, datacenter_id, server): """ Creates a server within the data center. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server: A dict of the server to be created. :type server: ``dic...
python
{ "resource": "" }
q260401
ProfitBricksService.update_server
validation
def update_server(self, datacenter_id, server_id, **kwargs): """ Updates a server with the parameters provided. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type ...
python
{ "resource": "" }
q260402
ProfitBricksService.get_attached_volumes
validation
def get_attached_volumes(self, datacenter_id, server_id, depth=1): """ Retrieves a list of volumes attached to the server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. ...
python
{ "resource": "" }
q260403
ProfitBricksService.get_attached_volume
validation
def get_attached_volume(self, datacenter_id, server_id, volume_id): """ Retrieves volume information. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_i...
python
{ "resource": "" }
q260404
ProfitBricksService.attach_volume
validation
def attach_volume(self, datacenter_id, server_id, volume_id): """ Attaches a volume to a server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_id: ``...
python
{ "resource": "" }
q260405
ProfitBricksService.get_attached_cdroms
validation
def get_attached_cdroms(self, datacenter_id, server_id, depth=1): """ Retrieves a list of CDROMs attached to the server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :...
python
{ "resource": "" }
q260406
ProfitBricksService.get_attached_cdrom
validation
def get_attached_cdrom(self, datacenter_id, server_id, cdrom_id): """ Retrieves an attached CDROM. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_id: ...
python
{ "resource": "" }
q260407
ProfitBricksService.attach_cdrom
validation
def attach_cdrom(self, datacenter_id, server_id, cdrom_id): """ Attaches a CDROM to a server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_id: ``str...
python
{ "resource": "" }
q260408
ProfitBricksService.start_server
validation
def start_server(self, datacenter_id, server_id): """ Starts the server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_id: ``str`` """ ...
python
{ "resource": "" }
q260409
ProfitBricksService.stop_server
validation
def stop_server(self, datacenter_id, server_id): """ Stops the server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_id: ``str`` """ ...
python
{ "resource": "" }
q260410
ProfitBricksService.reboot_server
validation
def reboot_server(self, datacenter_id, server_id): """ Reboots the server. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param server_id: The unique ID of the server. :type server_id: ``str`` """ ...
python
{ "resource": "" }
q260411
ProfitBricksService.create_snapshot
validation
def create_snapshot(self, datacenter_id, volume_id, name=None, description=None): """ Creates a snapshot of the specified volume. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param volume_id: The u...
python
{ "resource": "" }
q260412
ProfitBricksService.restore_snapshot
validation
def restore_snapshot(self, datacenter_id, volume_id, snapshot_id): """ Restores a snapshot to the specified volume. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param volume_id: The unique ID of the volume. :type ...
python
{ "resource": "" }
q260413
ProfitBricksService.remove_snapshot
validation
def remove_snapshot(self, snapshot_id): """ Removes a snapshot. :param snapshot_id: The ID of the snapshot you wish to remove. :type snapshot_id: ``str`` """ response = self._perform_request( url='/snapshots/' + sn...
python
{ "resource": "" }
q260414
ProfitBricksService.get_group
validation
def get_group(self, group_id, depth=1): """ Retrieves a single group by ID. :param group_id: The unique ID of the group. :type group_id: ``str`` :param depth: The depth of the response data. :type depth: ``int`` """ response = self...
python
{ "resource": "" }
q260415
ProfitBricksService.create_group
validation
def create_group(self, group): """ Creates a new group and set group privileges. :param group: The group object to be created. :type group: ``dict`` """ data = json.dumps(self._create_group_dict(group)) response = self._perform_request( u...
python
{ "resource": "" }
q260416
ProfitBricksService.update_group
validation
def update_group(self, group_id, **kwargs): """ Updates a group. :param group_id: The unique ID of the group. :type group_id: ``str`` """ properties = {} # make the key camel-case transformable if 'create_datacenter' in kwargs: kw...
python
{ "resource": "" }
q260417
ProfitBricksService.delete_group
validation
def delete_group(self, group_id): """ Removes a group. :param group_id: The unique ID of the group. :type group_id: ``str`` """ response = self._perform_request( url='/um/groups/%s' % group_id, method='DELETE') return response
python
{ "resource": "" }
q260418
ProfitBricksService.list_shares
validation
def list_shares(self, group_id, depth=1): """ Retrieves a list of all shares though a group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param depth: The depth of the response data. :type depth: ``int`` """ ...
python
{ "resource": "" }
q260419
ProfitBricksService.get_share
validation
def get_share(self, group_id, resource_id, depth=1): """ Retrieves a specific resource share available to a group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param resource_id: The unique ID of the resource. :type resourc...
python
{ "resource": "" }
q260420
ProfitBricksService.add_share
validation
def add_share(self, group_id, resource_id, **kwargs): """ Shares a resource through a group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param resource_id: The unique ID of the resource. :type resource_id: ``str`` ...
python
{ "resource": "" }
q260421
ProfitBricksService.delete_share
validation
def delete_share(self, group_id, resource_id): """ Removes a resource share from a group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param resource_id: The unique ID of the resource. :type resource_id: ``str`` ""...
python
{ "resource": "" }
q260422
ProfitBricksService.get_user
validation
def get_user(self, user_id, depth=1): """ Retrieves a single user by ID. :param user_id: The unique ID of the user. :type user_id: ``str`` :param depth: The depth of the response data. :type depth: ``int`` """ response = self._perf...
python
{ "resource": "" }
q260423
ProfitBricksService.create_user
validation
def create_user(self, user): """ Creates a new user. :param user: The user object to be created. :type user: ``dict`` """ data = self._create_user_dict(user=user) response = self._perform_request( url='/um/users', method='POST...
python
{ "resource": "" }
q260424
ProfitBricksService.update_user
validation
def update_user(self, user_id, **kwargs): """ Updates a user. :param user_id: The unique ID of the user. :type user_id: ``str`` """ properties = {} for attr, value in kwargs.items(): properties[self._underscore_to_camelcase(attr)] = value...
python
{ "resource": "" }
q260425
ProfitBricksService.delete_user
validation
def delete_user(self, user_id): """ Removes a user. :param user_id: The unique ID of the user. :type user_id: ``str`` """ response = self._perform_request( url='/um/users/%s' % user_id, method='DELETE') return response
python
{ "resource": "" }
q260426
ProfitBricksService.list_group_users
validation
def list_group_users(self, group_id, depth=1): """ Retrieves a list of all users that are members of a particular group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param depth: The depth of the response data. :type depth:...
python
{ "resource": "" }
q260427
ProfitBricksService.add_group_user
validation
def add_group_user(self, group_id, user_id): """ Adds an existing user to a group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param user_id: The unique ID of the user. :type user_id: ``str`` """ data = { ...
python
{ "resource": "" }
q260428
ProfitBricksService.remove_group_user
validation
def remove_group_user(self, group_id, user_id): """ Removes a user from a group. :param group_id: The unique ID of the group. :type group_id: ``str`` :param user_id: The unique ID of the user. :type user_id: ``str`` """ response = ...
python
{ "resource": "" }
q260429
ProfitBricksService.list_resources
validation
def list_resources(self, resource_type=None, depth=1): """ Retrieves a list of all resources. :param resource_type: The resource type: datacenter, image, snapshot or ipblock. Default is None, i.e., all resources are list...
python
{ "resource": "" }
q260430
ProfitBricksService.get_resource
validation
def get_resource(self, resource_type, resource_id, depth=1): """ Retrieves a single resource of a particular type. :param resource_type: The resource type: datacenter, image, snapshot or ipblock. :type resource_type: ``str`` :param ...
python
{ "resource": "" }
q260431
ProfitBricksService.get_volume
validation
def get_volume(self, datacenter_id, volume_id): """ Retrieves a single volume by ID. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param volume_id: The unique ID of the volume. :type volume_id: ``str`` ...
python
{ "resource": "" }
q260432
ProfitBricksService.list_volumes
validation
def list_volumes(self, datacenter_id, depth=1): """ Retrieves a list of volumes in the data center. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param depth: The depth of the response data. :type depth: ``in...
python
{ "resource": "" }
q260433
ProfitBricksService.delete_volume
validation
def delete_volume(self, datacenter_id, volume_id): """ Removes a volume from the data center. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param volume_id: The unique ID of the volume. :type volume_id: ``str...
python
{ "resource": "" }
q260434
ProfitBricksService.create_volume
validation
def create_volume(self, datacenter_id, volume): """ Creates a volume within the specified data center. :param datacenter_id: The unique ID of the data center. :type datacenter_id: ``str`` :param volume: A volume dict. :type volume: ``dict`` ...
python
{ "resource": "" }
q260435
ProfitBricksService.wait_for_completion
validation
def wait_for_completion(self, response, timeout=3600, initial_wait=5, scaleup=10): """ Poll resource request status until resource is provisioned. :param response: A response dict, which needs to have a 'requestId' item. :type response: ``dict`` :param timeout: ...
python
{ "resource": "" }
q260436
ProfitBricksService._b
validation
def _b(s, encoding='utf-8'): """ Returns the given string as a string of bytes. That means in Python2 as a str object, and in Python3 as a bytes object. Raises a TypeError, if it cannot be converted. """ if six.PY2: # This is Python2 if isinstance(...
python
{ "resource": "" }
q260437
ProfitBricksService._underscore_to_camelcase
validation
def _underscore_to_camelcase(value): """ Convert Python snake case back to mixed case. """ def camelcase(): yield str.lower while True: yield str.capitalize c = camelcase() return "".join(next(c)(x) if x else '_' for x in value.spl...
python
{ "resource": "" }
q260438
find_item_by_name
validation
def find_item_by_name(list_, namegetter, name): """ Find a item a given list by a matching name. The search for the name is done in this relaxing way: - exact name match - case-insentive name match - attribute starts with the name - attribute starts with the name (case insensitive) - n...
python
{ "resource": "" }
q260439
getServerInfo
validation
def getServerInfo(pbclient=None, dc_id=None): ''' gets info of servers of a data center''' if pbclient is None: raise ValueError("argument 'pbclient' must not be None") if dc_id is None: raise ValueError("argument 'dc_id' must not be None") # list of all found server's info server_in...
python
{ "resource": "" }
q260440
getServerStates
validation
def getServerStates(pbclient=None, dc_id=None, serverid=None, servername=None): ''' gets states of a server''' if pbclient is None: raise ValueError("argument 'pbclient' must not be None") if dc_id is None: raise ValueError("argument 'dc_id' must not be None") server = None if server...
python
{ "resource": "" }
q260441
get_self
validation
def get_self(session, user_details=None): """ Get details about the currently authenticated user """ # Set compact to true if user_details: user_details['compact'] = True response = make_get_request(session, 'self', params_data=user_details) json_data = response.json() if respons...
python
{ "resource": "" }
q260442
get_user_by_id
validation
def get_user_by_id(session, user_id, user_details=None): """ Get details about specific user """ if user_details: user_details['compact'] = True response = make_get_request( session, 'users/{}'.format(user_id), params_data=user_details) json_data = response.json() if response...
python
{ "resource": "" }
q260443
get_self_user_id
validation
def get_self_user_id(session): """ Get the currently authenticated user ID """ response = make_get_request(session, 'self') if response.status_code == 200: return response.json()['result']['id'] else: raise UserIdNotRetrievedException( 'Error retrieving user id: %s' %...
python
{ "resource": "" }
q260444
add_user_jobs
validation
def add_user_jobs(session, job_ids): """ Add a list of jobs to the currently authenticated user """ jobs_data = { 'jobs[]': job_ids } response = make_post_request(session, 'self/jobs', json_data=jobs_data) json_data = response.json() if response.status_code == 200: return...
python
{ "resource": "" }
q260445
set_user_jobs
validation
def set_user_jobs(session, job_ids): """ Replace the currently authenticated user's list of jobs with a new list of jobs """ jobs_data = { 'jobs[]': job_ids } response = make_put_request(session, 'self/jobs', json_data=jobs_data) json_data = response.json() if response.status...
python
{ "resource": "" }
q260446
delete_user_jobs
validation
def delete_user_jobs(session, job_ids): """ Remove a list of jobs from the currently authenticated user """ jobs_data = { 'jobs[]': job_ids } response = make_delete_request(session, 'self/jobs', json_data=jobs_data) json_data = response.json() if response.status_code == 200: ...
python
{ "resource": "" }
q260447
get_users
validation
def get_users(session, query): """ Get one or more users """ # GET /api/users/0.1/users response = make_get_request(session, 'users', params_data=query) json_data = response.json() if response.status_code == 200: return json_data['result'] else: raise UsersNotFoundExcepti...
python
{ "resource": "" }
q260448
create_project
validation
def create_project(session, title, description, currency, budget, jobs): """ Create a project """ project_data = {'title': title, 'description': description, 'currency': currency, 'budget': budget, 'jobs':...
python
{ "resource": "" }
q260449
create_hireme_project
validation
def create_hireme_project(session, title, description, currency, budget, jobs, hireme_initial_bid): """ Create a fixed project """ jobs.append(create_job_object(id=417)) # Hire Me job, required project_data = {'title': title, 'description': description...
python
{ "resource": "" }
q260450
get_projects
validation
def get_projects(session, query): """ Get one or more projects """ # GET /api/projects/0.1/projects response = make_get_request(session, 'projects', params_data=query) json_data = response.json() if response.status_code == 200: return json_data['result'] else: raise Proje...
python
{ "resource": "" }
q260451
get_project_by_id
validation
def get_project_by_id(session, project_id, project_details=None, user_details=None): """ Get a single project by ID """ # GET /api/projects/0.1/projects/<int:project_id> query = {} if project_details: query.update(project_details) if user_details: query.update(user_details) ...
python
{ "resource": "" }
q260452
search_projects
validation
def search_projects(session, query, search_filter=None, project_details=None, user_details=None, limit=10, offset=0, active_only=None): """ Search for all projects """ ...
python
{ "resource": "" }
q260453
place_project_bid
validation
def place_project_bid(session, project_id, bidder_id, description, amount, period, milestone_percentage): """ Place a bid on a project """ bid_data = { 'project_id': project_id, 'bidder_id': bidder_id, 'description': description, 'amount': amount, ...
python
{ "resource": "" }
q260454
get_bids
validation
def get_bids(session, project_ids=[], bid_ids=[], limit=10, offset=0): """ Get the list of bids """ get_bids_data = {} if bid_ids: get_bids_data['bids[]'] = bid_ids if project_ids: get_bids_data['projects[]'] = project_ids get_bids_data['limit'] = limit get_bids_data['off...
python
{ "resource": "" }
q260455
get_milestones
validation
def get_milestones(session, project_ids=[], milestone_ids=[], user_details=None, limit=10, offset=0): """ Get the list of milestones """ get_milestones_data = {} if milestone_ids: get_milestones_data['milestones[]'] = milestone_ids if project_ids: get_milestones_data['projects[]'...
python
{ "resource": "" }
q260456
get_milestone_by_id
validation
def get_milestone_by_id(session, milestone_id, user_details=None): """ Get a specific milestone """ # GET /api/projects/0.1/milestones/{milestone_id}/ endpoint = 'milestones/{}'.format(milestone_id) response = make_get_request(session, endpoint, params_data=user_details) json_data = respons...
python
{ "resource": "" }
q260457
award_project_bid
validation
def award_project_bid(session, bid_id): """ Award a bid on a project """ headers = { 'Content-Type': 'application/x-www-form-urlencoded' } bid_data = { 'action': 'award' } # POST /api/projects/0.1/bids/{bid_id}/?action=award endpoint = 'bids/{}'.format(bid_id) res...
python
{ "resource": "" }
q260458
revoke_project_bid
validation
def revoke_project_bid(session, bid_id): """ Revoke a bid on a project """ headers = { 'Content-Type': 'application/x-www-form-urlencoded' } bid_data = { 'action': 'revoke' } # POST /api/projects/0.1/bids/{bid_id}/?action=revoke endpoint = 'bids/{}'.format(bid_id) ...
python
{ "resource": "" }
q260459
accept_project_bid
validation
def accept_project_bid(session, bid_id): """ Accept a bid on a project """ headers = { 'Content-Type': 'application/x-www-form-urlencoded' } bid_data = { 'action': 'accept' } # POST /api/projects/0.1/bids/{bid_id}/?action=revoke endpoint = 'bids/{}'.format(bid_id) ...
python
{ "resource": "" }
q260460
retract_project_bid
validation
def retract_project_bid(session, bid_id): """ Retract a bid on a project """ headers = { 'Content-Type': 'application/x-www-form-urlencoded' } bid_data = { 'action': 'retract' } # POST /api/projects/0.1/bids/{bid_id}/?action=revoke endpoint = 'bids/{}'.format(bid_id) ...
python
{ "resource": "" }
q260461
highlight_project_bid
validation
def highlight_project_bid(session, bid_id): """ Highlight a bid on a project """ headers = { 'Content-Type': 'application/x-www-form-urlencoded' } bid_data = { 'action': 'highlight' } # POST /api/projects/0.1/bids/{bid_id}/?action=revoke endpoint = 'bids/{}'.format(bi...
python
{ "resource": "" }
q260462
create_milestone_payment
validation
def create_milestone_payment(session, project_id, bidder_id, amount, reason, description): """ Create a milestone payment """ milestone_data = { 'project_id': project_id, 'bidder_id': bidder_id, 'amount': amount, 'reason': reason, 'des...
python
{ "resource": "" }
q260463
post_track
validation
def post_track(session, user_id, project_id, latitude, longitude): """ Start tracking a project by creating a track """ tracking_data = { 'user_id': user_id, 'project_id': project_id, 'track_point': { 'latitude': latitude, 'longitude': longitude } ...
python
{ "resource": "" }
q260464
update_track
validation
def update_track(session, track_id, latitude, longitude, stop_tracking=False): """ Updates the current location by creating a new track point and appending it to the given track """ tracking_data = { 'track_point': { 'latitude': latitude, 'longitude': longitude, ...
python
{ "resource": "" }
q260465
get_track_by_id
validation
def get_track_by_id(session, track_id, track_point_limit=None, track_point_offset=None): """ Gets a specific track """ tracking_data = {} if track_point_limit: tracking_data['track_point_limit'] = track_point_limit if track_point_offset: tracking_data['track_point_offset'] = tra...
python
{ "resource": "" }
q260466
create_milestone_request
validation
def create_milestone_request(session, project_id, bid_id, description, amount): """ Create a milestone request """ milestone_request_data = { 'project_id': project_id, 'bid_id': bid_id, 'description': description, 'amount': amount, } # POST /api/projects/0.1/miles...
python
{ "resource": "" }
q260467
accept_milestone_request
validation
def accept_milestone_request(session, milestone_request_id): """ Accept a milestone request """ params_data = { 'action': 'accept', } # POST /api/projects/0.1/milestone_requests/{milestone_request_id}/?action= # accept endpoint = 'milestone_requests/{}'.format(milestone_request_i...
python
{ "resource": "" }
q260468
reject_milestone_request
validation
def reject_milestone_request(session, milestone_request_id): """ Reject a milestone request """ params_data = { 'action': 'reject', } # POST /api/projects/0.1/milestone_requests/{milestone_request_id}/?action= # reject endpoint = 'milestone_requests/{}'.format(milestone_request_i...
python
{ "resource": "" }
q260469
delete_milestone_request
validation
def delete_milestone_request(session, milestone_request_id): """ Delete a milestone request """ params_data = { 'action': 'delete', } # POST /api/projects/0.1/milestone_requests/{milestone_request_id}/?action= # delete endpoint = 'milestone_requests/{}'.format(milestone_request_i...
python
{ "resource": "" }
q260470
post_review
validation
def post_review(session, review): """ Post a review """ # POST /api/projects/0.1/reviews/ response = make_post_request(session, 'reviews', json_data=review) json_data = response.json() if response.status_code == 200: return json_data['status'] else: raise ReviewNotPostedE...
python
{ "resource": "" }
q260471
get_jobs
validation
def get_jobs(session, job_ids, seo_details, lang): """ Get a list of jobs """ get_jobs_data = { 'jobs[]': job_ids, 'seo_details': seo_details, 'lang': lang, } # GET /api/projects/0.1/jobs/ response = make_get_request(session, 'jobs', params_data=get_jobs_data) jso...
python
{ "resource": "" }
q260472
create_thread
validation
def create_thread(session, member_ids, context_type, context, message): """ Create a thread """ headers = { 'Content-Type': 'application/x-www-form-urlencoded' } thread_data = { 'members[]': member_ids, 'context_type': context_type, 'context': context, 'me...
python
{ "resource": "" }
q260473
create_project_thread
validation
def create_project_thread(session, member_ids, project_id, message): """ Create a project thread """ return create_thread(session, member_ids, 'project', project_id, message)
python
{ "resource": "" }
q260474
get_messages
validation
def get_messages(session, query, limit=10, offset=0): """ Get one or more messages """ query['limit'] = limit query['offset'] = offset # GET /api/messages/0.1/messages response = make_get_request(session, 'messages', params_data=query) json_data = response.json() if response.status_...
python
{ "resource": "" }
q260475
search_messages
validation
def search_messages(session, thread_id, query, limit=20, offset=0, message_context_details=None, window_above=None, window_below=None): """ Search for messages """ query = { 'thread_id': thread_id, 'query': query, 'limit': limit, 'o...
python
{ "resource": "" }
q260476
get_threads
validation
def get_threads(session, query): """ Get one or more threads """ # GET /api/messages/0.1/threads response = make_get_request(session, 'threads', params_data=query) json_data = response.json() if response.status_code == 200: return json_data['result'] else: raise ThreadsNo...
python
{ "resource": "" }
q260477
_clean
validation
def _clean(zipcode, valid_length=_valid_zipcode_length): """ Assumes zipcode is of type `str` """ zipcode = zipcode.split("-")[0] # Convert #####-#### to ##### if len(zipcode) != valid_length: raise ValueError( 'Invalid format, zipcode must be of the format: "#####" or "#####-####"' ...
python
{ "resource": "" }
q260478
similar_to
validation
def similar_to(partial_zipcode, zips=_zips): """ List of zipcode dicts where zipcode prefix matches `partial_zipcode` """ return [z for z in zips if z["zip_code"].startswith(partial_zipcode)]
python
{ "resource": "" }
q260479
filter_by
validation
def filter_by(zips=_zips, **kwargs): """ Use `kwargs` to select for desired attributes from list of zipcode dicts """ return [z for z in zips if all([k in z and z[k] == v for k, v in kwargs.items()])]
python
{ "resource": "" }
q260480
is_valid_identifier
validation
def is_valid_identifier(name): """Pedantic yet imperfect. Test to see if "name" is a valid python identifier """ if not isinstance(name, str): return False if '\n' in name: return False if name.strip() != name: return False try: code = compile('\n{0}=None'.format(...
python
{ "resource": "" }
q260481
PaletteEntry.from_config
validation
def from_config( cls, cfg, default_fg=DEFAULT_FG_16, default_bg=DEFAULT_BG_16, default_fg_hi=DEFAULT_FG_256, default_bg_hi=DEFAULT_BG_256, max_colors=2**24 ): """ Build a palette definition from either a simple string or a dictionary, filling i...
python
{ "resource": "" }
q260482
migrate
validation
def migrate(src_path, src_passphrase, src_backend, dst_path, dst_passphrase, dst_backend): """Migrate all keys in a source stash to a destination stash The migration process will decrypt all keys using the source stash's passphrase and then encryp...
python
{ "resource": "" }
q260483
generate_passphrase
validation
def generate_passphrase(size=12): """Return a generate string `size` long based on lowercase, uppercase, and digit chars """ chars = string.ascii_lowercase + string.ascii_uppercase + string.digits return str(''.join(random.choice(chars) for _ in range(size)))
python
{ "resource": "" }
q260484
_build_dict_from_key_value
validation
def _build_dict_from_key_value(keys_and_values): """Return a dict from a list of key=value pairs """ key_dict = {} for key_value in keys_and_values: if '=' not in key_value: raise GhostError('Pair {0} is not of `key=value` format'.format( key_value)) key, valu...
python
{ "resource": "" }
q260485
_prettify_list
validation
def _prettify_list(items): """Return a human readable format of a list. Example: Available Keys: - my_first_key - my_second_key """ assert isinstance(items, list) keys_list = 'Available Keys:' for item in items: keys_list += '\n - {0}'.format(item) return keys_lis...
python
{ "resource": "" }
q260486
init_stash
validation
def init_stash(stash_path, passphrase, passphrase_size, backend): r"""Init a stash `STASH_PATH` is the path to the storage endpoint. If this isn't supplied, a default path will be used. In the path, you can specify a name for the stash (which, if omitted, will default to `ghost`) like so: `ghost in...
python
{ "resource": "" }
q260487
put_key
validation
def put_key(key_name, value, description, meta, modify, add, lock, key_type, stash, passphrase, backend): """Insert a key to the stash `KEY_NAME` is the name of the key to insert `VALUE`...
python
{ "resource": "" }
q260488
lock_key
validation
def lock_key(key_name, stash, passphrase, backend): """Lock a key to prevent it from being deleted, purged or modified `KEY_NAME` is the name of the key to lock """ stash = _get_stash(backend, stash, passphrase) try: click.echo('Locking key...') ...
python
{ "resource": "" }
q260489
unlock_key
validation
def unlock_key(key_name, stash, passphrase, backend): """Unlock a key to allow it to be modified, deleted or purged `KEY_NAME` is the name of the key to unlock """ stash = _get_stash(backend, stash, passphrase) try: click.echo('Unlocking key...'...
python
{ "resource": "" }
q260490
get_key
validation
def get_key(key_name, value_name, jsonify, no_decrypt, stash, passphrase, backend): """Retrieve a key from the stash \b `KEY_NAME` is the name of the key to retrieve `VALUE_NAME` is a single value to retrieve e.g. if the value ...
python
{ "resource": "" }
q260491
delete_key
validation
def delete_key(key_name, stash, passphrase, backend): """Delete a key from the stash `KEY_NAME` is the name of the key to delete You can provide that multiple times to delete multiple keys at once """ stash = _get_stash(backend, stash, passphrase) for key in key_name: try: ...
python
{ "resource": "" }
q260492
list_keys
validation
def list_keys(key_name, max_suggestions, cutoff, jsonify, locked, key_type, stash, passphrase, backend): """List all keys in the stash If `KEY_NAME` is provided, will look for keys containing `KEY_NA...
python
{ "resource": "" }
q260493
purge_stash
validation
def purge_stash(force, stash, passphrase, backend): """Purge the stash from all of its keys """ stash = _get_stash(backend, stash, passphrase) try: click.echo('Purging stash...') stash.purge(force) # Maybe we should verify that the list is empty # afterwards? cli...
python
{ "resource": "" }
q260494
export_keys
validation
def export_keys(output_path, stash, passphrase, backend): """Export all keys to a file """ stash = _get_stash(backend, stash, passphrase) try: click.echo('Exporting stash to {0}...'.format(output_path)) stash.export(output_path=output_path) click.echo('Export complete!') exc...
python
{ "resource": "" }
q260495
load_keys
validation
def load_keys(key_file, origin_passphrase, stash, passphrase, backend): """Load all keys from an exported key file to the stash `KEY_FILE` is the exported stash file to load keys from """ stash = _get_stash(backend, stash, passphrase) click.echo('Importing all keys from {0}...'.format(key_file)) ...
python
{ "resource": "" }
q260496
migrate_stash
validation
def migrate_stash(source_stash_path, source_passphrase, source_backend, destination_stash_path, destination_passphrase, destination_backend): """Migrate all keys from a source stash to a destination stash. `SOURCE_STASH_P...
python
{ "resource": "" }
q260497
ssh
validation
def ssh(key_name, no_tunnel, stash, passphrase, backend): """Use an ssh type key to connect to a machine via ssh Note that trying to use a key of the wrong type (e.g. `secret`) will result in an error. `KEY_NAME` is the key to use. For additional information on the different configuration options...
python
{ "resource": "" }
q260498
Stash.put
validation
def put(self, name, value=None, modify=False, metadata=None, description='', encrypt=True, lock=False, key_type='secret', add=False): """Put a key inside the stash if key exists and modify true: ...
python
{ "resource": "" }
q260499
Stash.get
validation
def get(self, key_name, decrypt=True): """Return a key with its parameters if it was found. """ self._assert_valid_stash() key = self._storage.get(key_name).copy() if not key.get('value'): return None if decrypt: key['value'] = self._decrypt(key['...
python
{ "resource": "" }