X-Git-Url: https://git.distorted.org.uk/~mdw/mLib-python/blobdiff_plain/a19eaede18c9176b382df01e4f6c6e5c04a87d0f..addc0c3760b565ead630bd67cc038b31954b9284:/url.pyx diff --git a/url.pyx b/url.pyx index ef7e36c..72467f1 100644 --- a/url.pyx +++ b/url.pyx @@ -24,6 +24,7 @@ ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. cdef class URLEncode: + """URLEncode([strictp = False], [laxp = False], [semip = False])""" cdef url_ectx ctx cdef dstr d @@ -41,12 +42,15 @@ cdef class URLEncode: f = f | URLF_SEMI me.ctx.f = f def encode(me, char *name, char *value): + """UE.encode(NAME, VALUE): encode a key/value pair""" url_enc(&me.ctx, &me.d, name, value) return me property result: + """UE.result -> STR: the encoded string""" def __get__(me): return PyString_FromStringAndSize(me.d.buf, me.d.len) property strictp: + """UE.strictp -> BOOL: strictly escape non-alphanumerics?""" def __get__(me): return _tobool(me.ctx.f & URLF_STRICT) def __set__(me, val): @@ -55,6 +59,7 @@ cdef class URLEncode: else: me.ctx.f = me.ctx.f & ~URLF_STRICT property laxp: + """UE.laxp -> BOOL: only escape obviously unsafe characters?""" def __get__(me): return _tobool(me.ctx.f & URLF_LAX) def __set__(me, val): @@ -63,6 +68,7 @@ cdef class URLEncode: else: me.ctx.f = me.ctx.f & ~URLF_LAX property semip: + """UE.semip -> BOOL: separate key/value pairs with semicolons?""" def __get__(me): return _tobool(me.ctx.f & URLF_SEMI) def __set__(me, val): @@ -74,6 +80,7 @@ cdef class URLEncode: dstr_destroy(&me.d) cdef class URLDecode: + """URLDecode(STR, [semip = False]): iterator over (KEY, VALUE) pairs""" cdef url_dctx ctx cdef char *p @@ -109,6 +116,7 @@ cdef class URLDecode: raise StopIteration return nn, vv property semip: + """UD.semip -> BOOL: key/value pairs separated with semicolons?""" def __get__(me): return _tobool(me.ctx.f & URLF_SEMI) def __set__(me, val):