view stubs/rdflib/plugins/serializers/nt.pyi @ 43:8d4822ae58bc

more types, as needed on light9 keyboardcomposer Ignore-this: 9bc5d28702e6684fcce62104fc50966d
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 27 May 2019 06:58:51 +0000
parents 4f71d2a7a8d1
children
line wrap: on
line source

# Stubs for rdflib.plugins.serializers.nt (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from rdflib.serializer import Serializer
from typing import Any, Optional

class NTSerializer(Serializer):
    encoding: str = ...
    def __init__(self, store: Any) -> None: ...
    def serialize(self, stream: Any, base: Optional[Any] = ..., encoding: Optional[Any] = ..., **args: Any) -> None: ...

class NT11Serializer(NTSerializer):
    def __init__(self, store: Any) -> None: ...

_quoteLiteral: Any