|
pycrossword
0.3
Pure-Python implementation of a crossword puzzle generator and editor
|
A simple structure to hold crossword meta information, such as title, author, etc. More...
Public Member Functions | |
| def | __init__ (self, title='', author='', editor='', publisher='', cpyright='', date=None) |
| def | __str__ (self) |
Python str() overload for handy console output. More... | |
Public Attributes | |
| title | |
str title More... | |
| author | |
str author name More... | |
| editor | |
str editor name More... | |
| publisher | |
str publisher name More... | |
| cpyright | |
str copyright info More... | |
| date | |
datetime creation date More... | |
A simple structure to hold crossword meta information, such as title, author, etc.
| def pycross.crossword.CWInfo.__init__ | ( | self, | |
title = '', |
|||
author = '', |
|||
editor = '', |
|||
publisher = '', |
|||
cpyright = '', |
|||
date = None |
|||
| ) |
| def pycross.crossword.CWInfo.__str__ | ( | self | ) |
Python str() overload for handy console output.
| pycross.crossword.CWInfo.author |
str author name
| pycross.crossword.CWInfo.cpyright |
str copyright info
| pycross.crossword.CWInfo.date |
datetime creation date
| pycross.crossword.CWInfo.editor |
str editor name
| pycross.crossword.CWInfo.publisher |
str publisher name
| pycross.crossword.CWInfo.title |
str title
1.8.17