-
Notifications
You must be signed in to change notification settings - Fork 662
Labels
Description
- Summary
Lingo.dev currently provides integration examples for JavaScript frameworks (Next.js, Vue, etc.), but there is no example for Python users.
- Proposal
Add a simple Python example that demonstrates how to:
-
Load translation JSON files exported from Lingo.dev
-
Access translations inside a backend / CLI environment
-
Switch languages dynamically
-
Why this is useful
Many backend developers (especially beginners) use Python without any frontend framework. Having a basic example will help them adopt Lingo.dev without needing to learn React or TypeScript.
- Planned Folder Structure
examples/python-basic/
├── translations/
│ ├── en.json
│ └── hi.json
├── translator.py
├── app.py
└── README.md
#Request
Please confirm if I can proceed with implementing this example. I will open a PR once approved.