Class PyDialect

java.lang.Object
org.python.core.PyObject
org.python.modules._csv.PyDialect
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
PyDialectDerived

public class PyDialect extends PyObject
The Python CSV Dialect type.
See Also:
  • Field Details

    • TYPE

      public static final PyType TYPE
    • Dialect_doc

      public static final String Dialect_doc
      See Also:
    • doublequote

      public boolean doublequote
      Whether " is represented by "".
    • delimiter

      public char delimiter
      Field separator.
    • quotechar

      public char quotechar
      Quote character.
    • escapechar

      public char escapechar
      Escape character.
    • skipinitialspace

      public boolean skipinitialspace
      Ignore spaces following delimiter?
    • lineterminator

      public String lineterminator
      String to write between records.
    • quoting

      public QuoteStyle quoting
      Style of quoting to write.
    • strict

      public boolean strict
      Whether an exception is raised on bad CSV.
  • Constructor Details

    • PyDialect

      public PyDialect()
    • PyDialect

      public PyDialect(PyType subType)
  • Method Details

    • getEscapechar

      public PyObject getEscapechar()
    • getQuotechar

      public PyObject getQuotechar()
    • getQuoting

      public PyObject getQuoting()
    • setQuoting

      public void setQuoting(PyObject obj)
    • delQuoting

      public void delQuoting()