mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-04 10:19:16 +02:00

Travis is getting slower and was already hard to debug. This commit: - moves from travis to Circle-CI - has a ci-scripts/README.md which explains what is contained there - puts all build and CI scripts into "ci_scripts" directory - allows to run full ci runs locally - trims down the base Docker image where tests/docs/wheels are run from 4.4GB to 1.7GB - fixes #628 Using circle-ci also means that we can probably integrate Mac-OS build steps more easily. I am sure that my initial circle-ci config (helped by kind hints from @dignifiedquire ) can be improved.
54 lines
883 B
ReStructuredText
54 lines
883 B
ReStructuredText
|
|
high level API reference
|
|
========================
|
|
|
|
.. note::
|
|
|
|
This API is work in progress and may change in versions prior to 1.0.
|
|
|
|
- :class:`deltachat.account.Account` (your main entry point, creates the
|
|
other classes)
|
|
- :class:`deltachat.chatting.Contact`
|
|
- :class:`deltachat.chatting.Chat`
|
|
- :class:`deltachat.message.Message`
|
|
- :class:`deltachat.message.MessageType`
|
|
- :class:`deltachat.message.MessageState`
|
|
|
|
Account
|
|
-------
|
|
|
|
.. autoclass:: deltachat.account.Account
|
|
:members:
|
|
|
|
|
|
Contact
|
|
-------
|
|
|
|
.. autoclass:: deltachat.chatting.Contact
|
|
:members:
|
|
|
|
Chat
|
|
----
|
|
|
|
.. autoclass:: deltachat.chatting.Chat
|
|
:members:
|
|
|
|
Message
|
|
-------
|
|
|
|
.. autoclass:: deltachat.message.Message
|
|
:members:
|
|
|
|
MessageType
|
|
------------
|
|
|
|
.. autoclass:: deltachat.message.MessageType
|
|
:members:
|
|
|
|
MessageState
|
|
------------
|
|
|
|
.. autoclass:: deltachat.message.MessageState
|
|
:members:
|
|
|
|
|