DeleteCommunityRequest¶
- class wwt_api_client.communities.DeleteCommunityRequest(communities_client)[source]¶
Bases:
CommunitiesAPIRequestDelete a community.
Returns True if the community was successfully deleted, False otherwise.
Attributes Summary
The ID number of the community to delete
Methods Summary
Check whether the parameters of this request are valid.
Generate a
requests.Requestfrom the current parameters.Attributes Documentation
- id = None¶
The ID number of the community to delete
Methods Documentation
- invalidity_reason()[source]¶
Check whether the parameters of this request are valid.
- Returns:
- reasonstring or None
If None, indicates that this request is valid. Otherwise, the returned string explains what about the request’ parameters is invalid.
Examples
You can manually check if a request is correctly set up:
>>> from wwt_api_client import Client >>> req = Client().show_image('http://example.com/space.jpg', 'My Image') >>> assert req.invalidity_reason() is None
- make_request()[source]¶
Generate a
requests.Requestfrom the current parameters.This method returns a
requests.Requestobject ready for sending to the API server.- Returns:
- request
requests.Requestobject The HTTP request.
- request
Examples
Get the URL that will be accessed for a request:
>>> from urllib.parse import urlparse >>> from wwt_api_client import Client >>> req = Client().show_image('http://example.com/space.jpg', 'My Image') >>> parsed_url = urlparse(req.make_request().prepare().url) >>> print(parsed_url.path) /WWTWeb/ShowImage.aspx