Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stubs! #136

Merged
merged 7 commits into from
Jul 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ Usage
# Un-flagged messages
inbox_unflagged_messages = imbox.messages(unflagged=True)

# Flagged messages
flagged_messages = imbox.messages(flagged=True)

# Un-flagged messages
unflagged_messages = imbox.messages(unflagged=True)

# Messages sent FROM
inbox_messages_from = imbox.messages(sent_from='sender@example.org')

Expand All @@ -73,6 +79,8 @@ Usage
# Messages whose subjects contain a string
inbox_messages_subject_christmas = imbox.messages(subject='Christmas')

# Messages from a specific folder
messages_in_folder_social = imbox.messages(folder='Social')

for uid, message in all_inbox_messages:
# Every message is an object with the following keys
Expand Down
13 changes: 13 additions & 0 deletions imbox/imap.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from imaplib import IMAP4, IMAP4_SSL
from ssl import SSLContext
from typing import Optional, Union, Tuple, List


class ImapTransport:

def __init__(self, hostname: str, port: Optional[int], ssl: bool,
ssl_context: Optional[SSLContext], starttls: bool) -> None: ...

def list_folders(self) -> Tuple[str, List[bytes]]: ...

def connect(self, username: str, password: str) -> Union[IMAP4, IMAP4_SSL]: ...
31 changes: 31 additions & 0 deletions imbox/imbox.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import datetime
from email._policybase import Policy
from inspect import Traceback
from ssl import SSLContext
from typing import Optional, Union, Tuple, List


class Imbox:

def __init__(self, hostname: str, username: Optional[str], password: Optional[str], ssl: bool,
port: Optional[int], ssl_context: Optional[SSLContext], policy: Optional[Policy], starttls: bool): ...

def __enter__(self) -> 'Imbox': ...

def __exit__(self, type: Exception, value: str, traceback: Traceback) -> None: ...

def logout(self) -> None: ...

def mark_seen(self, uid: bytes) -> None: ...

def mark_flag(self, uid: bytes) -> None: ...

def delete(self, uid: bytes) -> None: ...

def copy(self, uid: bytes, destination_folder: Union[bytes, str]) -> Tuple[str, Union[list, List[None, bytes]]]: ...

def move(self, uid: bytes, destination_folder: Union[bytes, str]) -> None: ...

def messages(self, **kwargs: Union[bool, str, datetime.date]) -> 'Messages': ...

def folders(self) -> Tuple[str, List[bytes]]: ...
28 changes: 28 additions & 0 deletions imbox/messages.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import datetime
from email._policybase import Policy
from imaplib import IMAP4, IMAP4_SSL
from typing import Union, List, Generator, Tuple


class Messages:

def __init__(self,
connection: Union[IMAP4, IMAP4_SSL],
parser_policy: Policy,
**kwargs: Union[bool, str, datetime.date]) -> None: ...

def _fetch_email(self, uid: bytes) -> 'Struct': ...

def _query_uids(self, **kwargs: Union[bool, str, datetime.date]) -> List[bytes]: ...

def _fetch_email_list(self) -> Generator[Tuple[bytes, 'Struct']]: ...

def __repr__(self) -> str: ...

def __iter__(self) -> Generator[Tuple[bytes, 'Struct']]: ...

def __next__(self) -> 'Messages': ...

def __len__(self) -> int: ...

def __getitem__(self, index) -> Union['Struct', List['Struct']]: ...
30 changes: 30 additions & 0 deletions imbox/parser.pyi
Original file line number Diff line number