├── .gitignore ├── Changelog.markdown ├── LICENSE ├── Makefile ├── README.md ├── diaspy ├── __init__.py ├── connection.py ├── conversations.py ├── errors.py ├── models.py ├── notifications.py ├── people.py ├── search.py ├── settings.py └── streams.py ├── docs ├── Makefile └── source │ ├── conf.py │ ├── connection.rst │ ├── conversations.rst │ ├── errors.rst │ ├── index.rst │ ├── models.rst │ ├── modules.rst │ ├── notifications.rst │ ├── people.rst │ ├── search.rst │ ├── settings.rst │ └── streams.rst ├── logger.py ├── manual ├── connection.markdown ├── models.markdown ├── notifications.markdown ├── people.markdown ├── posting.markdown ├── search.markdown └── streams.markdown ├── optional-requirements.txt ├── requirements.txt ├── setup.py ├── test-image.png ├── testconf.markdown ├── tests.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/Changelog.markdown -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/README.md -------------------------------------------------------------------------------- /diaspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/__init__.py -------------------------------------------------------------------------------- /diaspy/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/connection.py -------------------------------------------------------------------------------- /diaspy/conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/conversations.py -------------------------------------------------------------------------------- /diaspy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/errors.py -------------------------------------------------------------------------------- /diaspy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/models.py -------------------------------------------------------------------------------- /diaspy/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/notifications.py -------------------------------------------------------------------------------- /diaspy/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/people.py -------------------------------------------------------------------------------- /diaspy/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/search.py -------------------------------------------------------------------------------- /diaspy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/settings.py -------------------------------------------------------------------------------- /diaspy/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/diaspy/streams.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/connection.rst -------------------------------------------------------------------------------- /docs/source/conversations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/conversations.rst -------------------------------------------------------------------------------- /docs/source/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/errors.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/models.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/notifications.rst -------------------------------------------------------------------------------- /docs/source/people.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/people.rst -------------------------------------------------------------------------------- /docs/source/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/search.rst -------------------------------------------------------------------------------- /docs/source/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/settings.rst -------------------------------------------------------------------------------- /docs/source/streams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/docs/source/streams.rst -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/logger.py -------------------------------------------------------------------------------- /manual/connection.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/connection.markdown -------------------------------------------------------------------------------- /manual/models.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/models.markdown -------------------------------------------------------------------------------- /manual/notifications.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/notifications.markdown -------------------------------------------------------------------------------- /manual/people.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/people.markdown -------------------------------------------------------------------------------- /manual/posting.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/posting.markdown -------------------------------------------------------------------------------- /manual/search.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/search.markdown -------------------------------------------------------------------------------- /manual/streams.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/manual/streams.markdown -------------------------------------------------------------------------------- /optional-requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | diaspy 2 | requests==2.12.0 3 | python-dateutil>=2.2 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/setup.py -------------------------------------------------------------------------------- /test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/test-image.png -------------------------------------------------------------------------------- /testconf.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/testconf.markdown -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marekjm/diaspy/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore=E701,E226 3 | max-line-length=120 4 | --------------------------------------------------------------------------------