Metadata-Version: 2.1
Name: appwrite-typing
Version: 0.0
Summary: Type hints for Appwrite Python SDK
Home-page: https://github.com/yourusername/mypackage
Author: Bas Krahmer
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: Flask

# Type hints for your Appwrite Python functions

Whenever I develop an Appwrite function, I am left wondering what all these Flask abstractions mean since they are not from an installable package. Wonder no more!

```python
from appwrite_typing.py310.server import Context

def main(context: "Context"):  # <-- we actually know what this means now!
    return context.res.send("Hello World!")

def test_main():
    response = main(Context())  # <-- we can actually test with real objects
    assert response["body"] == "Hello World!"
```
