CreateCommunityRequest¶
- class wwt_api_client.communities.CreateCommunityRequest(communities_client)[source]¶
Bases:
CommunitiesAPIRequestCreate a new community.
The response gives the ID of the new community.
Attributes Summary
The request payload is JSON resembling.
Methods Summary
Check whether the parameters of this request are valid.
Generate a
requests.Requestfrom the current parameters.Attributes Documentation
- payload = None¶
The request payload is JSON resembling:
{ "communityJson": { "CategoryID": 20, "ParentID": "610131", "AccessTypeID": 2, "IsOffensive":false, "IsLink": false, "CommunityType": "Community", "Name": "Community name", "Description": "Community description", "Tags": "tag1,tag2" } }
(It doesn’t feel worthwhile to implement this payload as a fully-fledged data structure at the moment.)
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