Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CrashedBboy/Quick_SLPK_Server
/ functions
Functions
351 in github.com/CrashedBboy/Quick_SLPK_Server
⨍
Functions
351
◇
Types & classes
68
↳
Endpoints
15
Method
_rebase
(self, _env, _name=None, **kwargs)
bottlepy/bottle.py:3962
Method
_set_status
(self, status)
bottlepy/bottle.py:1701
Method
add_filter
Add a filter. The provided function is called with the configuration string as parameter and must return a (regexp, to_python, to_url) tuple.
bottlepy/bottle.py:342
Method
add_path
Add a new path to the list of search paths. Return False if the path does not exist. :param path: The new search path. Relat
bottlepy/bottle.py:2657
Method
address_string
(self)
bottlepy/bottle.py:3234
Method
app
Bottle application handling this request.
bottlepy/bottle.py:1173
Method
app
(environ, start_response)
bottlepy/bottle.py:3348
Method
append
(self, key, value)
bottlepy/bottle.py:2242
Method
apply
(self, other)
bottlepy/bottle.py:1944
Method
apply
(self, callback, route)
bottlepy/bottle.py:2027
Function
attribute_info
Attribute information JSON
quick_slpk_server.py:206
Method
auth
HTTP authentication data as a (user, password) tuple. This implementation currently supports basic (not digest) authentication
bottlepy/bottle.py:1503
Function
auth_basic
Callback decorator to require HTTP auth (basic). TODO: Add route(check_auth=...) parameter.
bottlepy/bottle.py:3136
Method
body
The HTTP request body as a seek-able file-like object. Depending on :attr:`MEMFILE_MAX`, this is either a temporary file or a
bottlepy/bottle.py:1369
Function
carte
Preview data on a 3d globe
quick_slpk_server.py:214
Method
charset
Return the charset specified in the content-type header (default: utf8).
bottlepy/bottle.py:1791
Method
chunked
True if Chunked transfer encoding was.
bottlepy/bottle.py:1379
Method
close
(self)
bottlepy/bottle.py:1687
Method
close
(self)
bottlepy/bottle.py:2632
Method
co
(self)
bottlepy/bottle.py:3944
Method
code
(self)
bottlepy/bottle.py:3948
Method
content_length
The request body length as an integer. The client is responsible to set this header. Otherwise, the real length of the body is unknown
bottlepy/bottle.py:1478
Method
content_type
The Content-Type header as a lowercase-string (default: empty).
bottlepy/bottle.py:1485
Function
cookie_decode
Verify and decode an encoded string. Return an object or None.
bottlepy/bottle.py:3052
Function
cookie_encode
Encode and sign a pickle-able object. Return a (byte) string
bottlepy/bottle.py:3042
Method
cookies
Cookies parsed into a :class:`FormsDict`. Signed cookies are NOT decoded. Use :meth:`get_cookie` if you expect signed cookies.
bottlepy/bottle.py:1209
Method
copy
Returns a copy of self.
bottlepy/bottle.py:1672
Function
debug
Change the debug level. There is only one debug level supported at the moment.
bottlepy/bottle.py:2930
Method
decorator
(func)
bottlepy/bottle.py:712
Method
default
(self)
bottlepy/bottle.py:2600
Method
default_error_handler
(self, res)
bottlepy/bottle.py:976
Method
delete
Equals :meth:`route` with a ``DELETE`` method parameter.
bottlepy/bottle.py:946
Method
delete_cookie
Delete a cookie. Be sure to use the same `domain` and `path` settings as used to create the cookie.
bottlepy/bottle.py:1880
Function
enable_cors
(fn)
quick_slpk_server.py:72
Method
error
Register an output handler for a HTTP error code. Can be used as a decorator or called directly :: def error_handler_500
bottlepy/bottle.py:954
Function
fdel
(_)
bottlepy/bottle.py:1906
Function
feature_info
Feature information JSON
quick_slpk_server.py:180
Function
fget
(_)
bottlepy/bottle.py:1897
Method
filename
Name of the file on the client file system, but normalized to ensure file system compatibility. An empty filename is returned as 'empty'.
bottlepy/bottle.py:2743
Method
files
File uploads parsed from `multipart/form-data` encoded POST or PUT request body. The values are instances of :class:`FileUpload`.
bottlepy/bottle.py:1269
Method
filter
(self, names)
bottlepy/bottle.py:2254
Method
find_module
(self, fullname, path=None)
bottlepy/bottle.py:2052
Method
fixed_environ
(environ, start_response)
bottlepy/bottle.py:3213
Method
forms
Form values parsed from an `url-encoded` or `multipart/form-data` encoded POST or PUT request body. The result is returned as a
bottlepy/bottle.py:1246
Function
fset
(_, value)
bottlepy/bottle.py:1903
Method
fullpath
Request path including :attr:`script_name` (if present).
bottlepy/bottle.py:1448
Function
geometry_info
Geometry information bin
quick_slpk_server.py:139
Method
get
(self, value, default=None)
bottlepy/bottle.py:1538
Method
get
Return the most recent value for a key. :param default: The default value to be returned if the key is not present or
bottlepy/bottle.py:2142
Method
get
(self, key, default=None, index=-1)
bottlepy/bottle.py:2251
Method
get_callback_args
Return a list of argument names the callback (most likely) accepts as keyword arguments. If the callback is a decorated function, try
bottlepy/bottle.py:599
Method
get_config
Lookup a config field and return its value, first checking the route.config, then route.app.config.
bottlepy/bottle.py:605
Method
get_cookie
Return the content of a cookie. To read a `Signed Cookie`, the `secret` must match the one used to create the cookie (see :me
bottlepy/bottle.py:1215
Method
get_event_loop
(self)
bottlepy/bottle.py:3496
Method
get_event_loop
(self)
bottlepy/bottle.py:3536
Method
get_header
Return the value of a request header, or a given default value.
bottlepy/bottle.py:1204
Method
get_header
Return the value of a previously defined header. If there is no header with that name, return a default value.
bottlepy/bottle.py:1746
Method
get_syntax
Tokens as a space separated string (default: <% %> % {{ }})
bottlepy/bottle.py:4070
Method
get_url
Return a string that matches a named route
bottlepy/bottle.py:871
Method
getall
Return a (possibly empty) list of values for a key.
bottlepy/bottle.py:2167
Method
getall
(self, key)
bottlepy/bottle.py:2248
Method
getargs
(path)
bottlepy/bottle.py:416
Method
global_config
This reads or sets the global settings stored in class.settings.
bottlepy/bottle.py:3833
Method
headerlist
WSGI conform list of (header, value) tuples.
bottlepy/bottle.py:1766
Method
headers
A :class:`WSGIHeaderDict` that provides case-insensitive access to HTTP request headers.
bottlepy/bottle.py:1199
Method
headers
An instance of :class:`HeaderDict`, a case-insensitive dict-like view on the response headers.
bottlepy/bottle.py:1727
Method
hook
Return a decorator that attaches a callback to a hook. See :meth:`add_hook` for details.
bottlepy/bottle.py:708
Function
html_quote
Escape and quote a string to be used as an HTTP attribute.
bottlepy/bottle.py:3079
Method
init
(self, parser, opts, args)
bottlepy/bottle.py:3439
Method
is_ajax
Alias for :attr:`is_xhr`. "Ajax" is not the right term.
bottlepy/bottle.py:1498
Method
is_xhr
True if the request was triggered by a XMLHttpRequest. This only works with JavaScript libraries that support the `X-Requested-With`
bottlepy/bottle.py:1490
Method
iter_headers
Yield (header, value) tuples, skipping headers that are not allowed with the current response status code.
bottlepy/bottle.py:1760
Method
iterallitems
(self)
bottlepy/bottle.py:2136
Method
iterkeys
(self)
bottlepy/bottle.py:2127
Method
itervalues
(self)
bottlepy/bottle.py:2130
Method
json
If the ``Content-Type`` header is ``application/json`` or ``application/json-rpc``, this property holds the parsed content of
bottlepy/bottle.py:1281
Method
keys
(self)
bottlepy/bottle.py:1554
Function
layer_info
Layer information JSON
quick_slpk_server.py:117
Function
list_services
List all available SLPK, with LINK to I3S service and Viewer page
quick_slpk_server.py:93
Method
load_module
(self, fullname)
bottlepy/bottle.py:2058
Method
load_module
Load values from a Python module. Example modue ``config.py``:: DEBUG = True SQLITE = {
bottlepy/bottle.py:2341
Method
loader
(self, name)
bottlepy/bottle.py:3920
Method
log_request
(*args, **kw)
bottlepy/bottle.py:3237
Method
match
Search for a matching route and return a (:class:`Route` , urlargs) tuple. The second value is a dictionary with parameters extracted
bottlepy/bottle.py:865
Method
merge
Merge the routes of another :class:`Bottle` application or a list of :class:`Route` objects into this application. The routes keep their
bottlepy/bottle.py:805
Method
meta_list
Return an iterable of meta field names defined for a key.
bottlepy/bottle.py:2527
Method
method
The ``REQUEST_METHOD`` value as an uppercase string.
bottlepy/bottle.py:1194
Method
mount
Mount an application (:class:`Bottle` or plain WSGI) to a specific URL prefix. Example:: parent_app.mount('/prefix/', ch
bottlepy/bottle.py:775
Method
mountpoint_wrapper
()
bottlepy/bottle.py:724
Function
node_info
Node information JSON
quick_slpk_server.py:128
Method
open
Find a resource and return a file object, or raise IOError.
bottlepy/bottle.py:2716
Method
params
A :class:`FormsDict` with the combined values of :attr:`query` and :attr:`forms`. File uploads are stored in :attr:`files`.
bottlepy/bottle.py:1258
Method
patch
Equals :meth:`route` with a ``PATCH`` method parameter.
bottlepy/bottle.py:950
Method
path
The value of ``PATH_INFO`` with exactly one prefixed slash (to fix broken clients and avoid the "empty path" edge case).
bottlepy/bottle.py:1188
Method
post
Equals :meth:`route` with a ``POST`` method parameter.
bottlepy/bottle.py:938
Method
prepare
(self, **options)
bottlepy/bottle.py:3859
Method
prepare
(self, **options)
bottlepy/bottle.py:3881
Method
prepare
(self, filters=None, tests=None, globals={}, **kwargs)
bottlepy/bottle.py:3902
Method
prepare
(self, escape_func=html_escape, noescape=False, syntax=None, *
bottlepy/bottle.py:3931
Method
put
Equals :meth:`route` with a ``PUT`` method parameter.
bottlepy/bottle.py:942
← previous
next →
201–300 of 351, ranked by callers