├── .gitignore ├── README.md ├── demresult.jpg ├── docs ├── demotivator.md ├── errors.md └── quote.md ├── setline_example.jpg ├── setup.py └── simpledemotivators ├── Demotivator.py ├── Quote.py ├── __init__.py └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/README.md -------------------------------------------------------------------------------- /demresult.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/demresult.jpg -------------------------------------------------------------------------------- /docs/demotivator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/docs/demotivator.md -------------------------------------------------------------------------------- /docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/docs/errors.md -------------------------------------------------------------------------------- /docs/quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/docs/quote.md -------------------------------------------------------------------------------- /setline_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/setline_example.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/setup.py -------------------------------------------------------------------------------- /simpledemotivators/Demotivator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/simpledemotivators/Demotivator.py -------------------------------------------------------------------------------- /simpledemotivators/Quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/simpledemotivators/Quote.py -------------------------------------------------------------------------------- /simpledemotivators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infqq/simpledemotivators/HEAD/simpledemotivators/__init__.py -------------------------------------------------------------------------------- /simpledemotivators/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | Добавлены docstrings к функциям и классам 3 | --------------------------------------------------------------------------------