We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89cdef0 commit 501f407Copy full SHA for 501f407
1 file changed
tempmail/__init__.py
@@ -1,8 +1,15 @@
1
"""tempmail-python is a Python library for generating and managing temporary email addresses using the 1secmail service.
2
3
-Example usage:
+## Example usage:
4
```python
5
-TODO
+from tempmail import EMail
6
+
7
+email = EMail()
8
9
+# ... request some email ...
10
11
+msg = email.wait_for_message()
12
+print(msg.body) # Hello World!\n
13
```
14
"""
15
0 commit comments