robyn 0.76.0__cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- robyn/__init__.py +782 -0
- robyn/__main__.py +4 -0
- robyn/ai.py +308 -0
- robyn/argument_parser.py +129 -0
- robyn/authentication.py +96 -0
- robyn/cli.py +136 -0
- robyn/dependency_injection.py +71 -0
- robyn/env_populator.py +35 -0
- robyn/events.py +6 -0
- robyn/exceptions.py +32 -0
- robyn/jsonify.py +13 -0
- robyn/logger.py +80 -0
- robyn/mcp.py +461 -0
- robyn/openapi.py +448 -0
- robyn/processpool.py +226 -0
- robyn/py.typed +0 -0
- robyn/reloader.py +164 -0
- robyn/responses.py +208 -0
- robyn/robyn.cpython-314-x86_64-linux-gnu.so +0 -0
- robyn/robyn.pyi +562 -0
- robyn/router.py +426 -0
- robyn/scaffold/mongo/Dockerfile +12 -0
- robyn/scaffold/mongo/app.py +43 -0
- robyn/scaffold/mongo/requirements.txt +2 -0
- robyn/scaffold/no-db/Dockerfile +12 -0
- robyn/scaffold/no-db/app.py +12 -0
- robyn/scaffold/no-db/requirements.txt +1 -0
- robyn/scaffold/postgres/Dockerfile +32 -0
- robyn/scaffold/postgres/app.py +31 -0
- robyn/scaffold/postgres/requirements.txt +3 -0
- robyn/scaffold/postgres/supervisord.conf +14 -0
- robyn/scaffold/prisma/Dockerfile +15 -0
- robyn/scaffold/prisma/app.py +32 -0
- robyn/scaffold/prisma/requirements.txt +2 -0
- robyn/scaffold/prisma/schema.prisma +13 -0
- robyn/scaffold/sqlalchemy/Dockerfile +12 -0
- robyn/scaffold/sqlalchemy/__init__.py +0 -0
- robyn/scaffold/sqlalchemy/app.py +13 -0
- robyn/scaffold/sqlalchemy/models.py +21 -0
- robyn/scaffold/sqlalchemy/requirements.txt +2 -0
- robyn/scaffold/sqlite/Dockerfile +12 -0
- robyn/scaffold/sqlite/app.py +22 -0
- robyn/scaffold/sqlite/requirements.txt +1 -0
- robyn/scaffold/sqlmodel/Dockerfile +11 -0
- robyn/scaffold/sqlmodel/app.py +46 -0
- robyn/scaffold/sqlmodel/models.py +10 -0
- robyn/scaffold/sqlmodel/requirements.txt +2 -0
- robyn/status_codes.py +137 -0
- robyn/swagger.html +32 -0
- robyn/templating.py +30 -0
- robyn/types.py +44 -0
- robyn/ws.py +67 -0
- robyn-0.76.0.dist-info/METADATA +303 -0
- robyn-0.76.0.dist-info/RECORD +57 -0
- robyn-0.76.0.dist-info/WHEEL +5 -0
- robyn-0.76.0.dist-info/entry_points.txt +3 -0
- robyn-0.76.0.dist-info/licenses/LICENSE +25 -0
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: robyn
|
|
3
|
+
Version: 0.76.0
|
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
|
5
|
+
Classifier: Environment :: Web Environment
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
17
|
+
Requires-Dist: inquirerpy==0.3.4
|
|
18
|
+
Requires-Dist: multiprocess==0.70.14
|
|
19
|
+
Requires-Dist: orjson>=3.11.5,<4.0.0
|
|
20
|
+
Requires-Dist: rustimport==1.3.4
|
|
21
|
+
Requires-Dist: uvloop~=0.22.1 ; platform_machine != 'armv7l' and platform_python_implementation == 'CPython' and sys_platform != 'win32'
|
|
22
|
+
Requires-Dist: watchdog==4.0.1
|
|
23
|
+
Requires-Dist: jinja2==3.0.1 ; extra == 'templating'
|
|
24
|
+
Provides-Extra: templating
|
|
25
|
+
License-File: LICENSE
|
|
26
|
+
Summary: A Super Fast Async Python Web Framework with a Rust runtime.
|
|
27
|
+
Home-Page: https://github.com/sparckles/robyn
|
|
28
|
+
Author-email: Sanskar Jethi <sansyrox@gmail.com>
|
|
29
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
30
|
+
Project-URL: Changelog, https://github.com/sparckles/robyn/blob/main/CHANGELOG.md
|
|
31
|
+
Project-URL: Documentation, https://robyn.tech/
|
|
32
|
+
Project-URL: Issues, https://github.com/sparckles/robyn/issues
|
|
33
|
+
Project-URL: Repository, https://github.com/sparckles/robyn
|
|
34
|
+
|
|
35
|
+
<p align="center"><img alt="Robyn Logo" src="https://user-images.githubusercontent.com/29942790/140995889-5d91dcff-3aa7-4cfb-8a90-2cddf1337dca.png" width="250" /><p>
|
|
36
|
+
|
|
37
|
+
# Robyn
|
|
38
|
+
|
|
39
|
+
[](https://twitter.com/Robyn_oss)
|
|
40
|
+
[](https://pepy.tech/project/Robyn)
|
|
41
|
+
[](https://github.com/sparckles/Robyn/releases/)
|
|
42
|
+
[](https://github.com/sparckles/Robyn/blob/main/LICENSE)
|
|
43
|
+

|
|
44
|
+
[](https://deepwiki.com/sparckles/Robyn)
|
|
45
|
+
|
|
46
|
+
[](https://robyn.tech/documentation)
|
|
47
|
+
[](https://discord.gg/rkERZ5eNU8)
|
|
48
|
+
[](https://gurubase.io/g/robyn)
|
|
49
|
+
|
|
50
|
+
Robyn is a High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime. You can learn more by checking our [community resources](https://robyn.tech/documentation/en/community-resources#talks)!
|
|
51
|
+
|
|
52
|
+
<img width="652" alt="image" src="https://github.com/sparckles/Robyn/assets/29942790/4a2bba61-24e7-4ee2-8884-19b40204bfcd">
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
Source: [TechEmpower Round 22](https://www.techempower.com/benchmarks/#section=data-r22&test=plaintext)
|
|
56
|
+
|
|
57
|
+
## 📦 Installation
|
|
58
|
+
|
|
59
|
+
You can simply use Pip for installation.
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
pip install robyn
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Or, with [conda-forge](https://conda-forge.org/)
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
conda install -c conda-forge robyn
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## 🤔 Usage
|
|
72
|
+
|
|
73
|
+
### 🚀 Define your API
|
|
74
|
+
|
|
75
|
+
To define your API, you can add the following code in an `app.py` file.
|
|
76
|
+
|
|
77
|
+
```python
|
|
78
|
+
from robyn import Robyn
|
|
79
|
+
|
|
80
|
+
app = Robyn(__file__)
|
|
81
|
+
|
|
82
|
+
@app.get("/")
|
|
83
|
+
async def h(request):
|
|
84
|
+
return "Hello, world!"
|
|
85
|
+
|
|
86
|
+
app.start(port=8080)
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### 🏃 Run your code
|
|
90
|
+
|
|
91
|
+
Simply run the app.py file you created. You will then have access to a server on the `localhost:8080`, that you can request from an other program. Robyn provides several options to customize your web server.
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
$ python3 app.py
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
To see the usage
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
usage: app.py [-h] [--processes PROCESSES] [--workers WORKERS] [--dev] [--log-level LOG_LEVEL]
|
|
101
|
+
|
|
102
|
+
Robyn, a fast async web framework with a rust runtime.
|
|
103
|
+
|
|
104
|
+
options:
|
|
105
|
+
-h, --help show this help message and exit
|
|
106
|
+
--processes PROCESSES
|
|
107
|
+
Choose the number of processes. [Default: 1]
|
|
108
|
+
--workers WORKERS Choose the number of workers. [Default: 1]
|
|
109
|
+
--dev Development mode. It restarts the server based on file changes.
|
|
110
|
+
--log-level LOG_LEVEL
|
|
111
|
+
Set the log level name
|
|
112
|
+
--create Create a new project template.
|
|
113
|
+
--docs Open the Robyn documentation.
|
|
114
|
+
--open-browser Open the browser on successful start.
|
|
115
|
+
--version Show the Robyn version.
|
|
116
|
+
--compile-rust-path COMPILE_RUST_PATH
|
|
117
|
+
Compile rust files in the given path.
|
|
118
|
+
--create-rust-file CREATE_RUST_FILE
|
|
119
|
+
Create a rust file with the given name.
|
|
120
|
+
--disable-openapi Disable the OpenAPI documentation.
|
|
121
|
+
--fast Enable the fast mode.
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Log level can be `DEBUG`, `INFO`, `WARNING`, or `ERROR`.
|
|
125
|
+
|
|
126
|
+
When running the app using `--open-browser` a new browser window will open at the app location, e.g:
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
$ python3 app.py --open-browser
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### 💻 Add more routes
|
|
133
|
+
|
|
134
|
+
You can add more routes to your API. Check out the routes in [this file](https://github.com/sparckles/Robyn/blob/main/integration_tests/base_routes.py) as examples.
|
|
135
|
+
|
|
136
|
+
### 🐍 Python Version Support
|
|
137
|
+
|
|
138
|
+
Robyn is compatible with the following Python versions:
|
|
139
|
+
|
|
140
|
+
> Python >= 3.10
|
|
141
|
+
|
|
142
|
+
It is recommended to use the latest version of Python for the best performances.
|
|
143
|
+
|
|
144
|
+
Please make sure you have the correct version of Python installed before starting to use
|
|
145
|
+
this project. You can check your Python version by running the following command in your
|
|
146
|
+
terminal:
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
python --version
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
## 💡 Features
|
|
153
|
+
|
|
154
|
+
- Under active development!
|
|
155
|
+
- Written in Rust, btw xD
|
|
156
|
+
- A multithreaded Runtime
|
|
157
|
+
- Extensible
|
|
158
|
+
- Automatic OpenAPI generation
|
|
159
|
+
- A simple API
|
|
160
|
+
- Sync and Async Function Support
|
|
161
|
+
- Dynamic URL Routing
|
|
162
|
+
- Multi Core Scaling
|
|
163
|
+
- WebSockets!
|
|
164
|
+
- Middlewares
|
|
165
|
+
- Built in form data handling
|
|
166
|
+
- Dependency Injection
|
|
167
|
+
- Hot Reloading
|
|
168
|
+
- Direct Rust Integration
|
|
169
|
+
- **🤖 AI Agent Support** - Built-in agent routing and execution
|
|
170
|
+
- **🔌 MCP (Model Context Protocol)** - Connect to AI applications as a server
|
|
171
|
+
- Community First and truly FOSS!
|
|
172
|
+
|
|
173
|
+
## 🗒️ How to contribute
|
|
174
|
+
|
|
175
|
+
### 🏁 Get started
|
|
176
|
+
|
|
177
|
+
Please read the [code of conduct](https://github.com/sparckles/Robyn/blob/main/CODE_OF_CONDUCT.md) and go through [CONTRIBUTING.md](https://github.com/sparckles/Robyn/blob/main/CONTRIBUTING.md) before contributing to Robyn.
|
|
178
|
+
Feel free to open an issue for any clarifications or suggestions.
|
|
179
|
+
|
|
180
|
+
If you're feeling curious. You can take a look at a more detailed architecture [here](https://robyn.tech/documentation/architecture).
|
|
181
|
+
|
|
182
|
+
If you still need help to get started, feel free to reach out on our [community discord](https://discord.gg/rkERZ5eNU8).
|
|
183
|
+
|
|
184
|
+
### ⚙️ To Develop Locally
|
|
185
|
+
|
|
186
|
+
#### Prerequisites
|
|
187
|
+
|
|
188
|
+
Before starting, ensure you have the following installed:
|
|
189
|
+
- Python >= 3.10, <= 3.14
|
|
190
|
+
- Rust (latest stable)
|
|
191
|
+
- C compiler (gcc/clang)
|
|
192
|
+
|
|
193
|
+
#### Setup
|
|
194
|
+
|
|
195
|
+
- Clone the repository:
|
|
196
|
+
|
|
197
|
+
```
|
|
198
|
+
git clone https://github.com/sparckles/Robyn.git
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
- Setup a virtual environment:
|
|
202
|
+
```
|
|
203
|
+
python3 -m venv .venv
|
|
204
|
+
source .venv/bin/activate
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
- Install required packages
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
pip install pre-commit poetry maturin
|
|
211
|
+
```
|
|
212
|
+
- Install development dependencies
|
|
213
|
+
```
|
|
214
|
+
poetry install --with dev --with test
|
|
215
|
+
```
|
|
216
|
+
- Install pre-commit git hooks
|
|
217
|
+
```
|
|
218
|
+
pre-commit install
|
|
219
|
+
```
|
|
220
|
+
- Build & install Robyn Rust package
|
|
221
|
+
```
|
|
222
|
+
maturin develop
|
|
223
|
+
```
|
|
224
|
+
- Build & install Robyn Rust package (**experimental**)
|
|
225
|
+
```
|
|
226
|
+
maturin develop --cargo-extra-args="--features=io-uring"
|
|
227
|
+
```
|
|
228
|
+
- Run!
|
|
229
|
+
```
|
|
230
|
+
poetry run test_server
|
|
231
|
+
```
|
|
232
|
+
- Run all tests
|
|
233
|
+
```
|
|
234
|
+
pytest
|
|
235
|
+
```
|
|
236
|
+
- Run only the integration tests
|
|
237
|
+
```
|
|
238
|
+
pytest integration_tests
|
|
239
|
+
```
|
|
240
|
+
- Run only the unit tests (you don't need to be running the test_server for these)
|
|
241
|
+
```
|
|
242
|
+
pytest unit_tests
|
|
243
|
+
```
|
|
244
|
+
- Test (refer to `integration_tests/base_routes.py` for more endpoints)
|
|
245
|
+
```
|
|
246
|
+
curl http://localhost:8080/sync/str
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
- **tip:** One liners for testing changes!
|
|
250
|
+
```
|
|
251
|
+
maturin develop && poetry run test_server
|
|
252
|
+
|
|
253
|
+
maturin develop && pytest
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
- **tip:** For IO-uring support, you can use the following command:
|
|
257
|
+
```
|
|
258
|
+
maturin develop --cargo-extra-args="--features=io-uring"
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
- **tip:** To use your local Robyn version in other projects, you can install it using pip:
|
|
262
|
+
```
|
|
263
|
+
pip install -e path/to/robyn/target/wheels/robyn-<version>-<python_version>-<platform>.whl
|
|
264
|
+
```
|
|
265
|
+
e.g.
|
|
266
|
+
```
|
|
267
|
+
pip install -e /repos/Robyn/target/wheels/robyn-0.63.0-cp312-cp312-macosx_10_15_universal2.whl
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
#### Troubleshooting
|
|
271
|
+
If you face any issues, here are some common fixes:
|
|
272
|
+
- install `patchelf` with `pip install patchelf` if you face `patchelf` not found issue during `maturin develop` (esp. on Arch Linux)
|
|
273
|
+
- If you get Rust compilation errors, ensure you have a C compiler installed:
|
|
274
|
+
- Ubuntu/Debian: `sudo apt install build-essential`
|
|
275
|
+
- Fedora: `sudo dnf install gcc`
|
|
276
|
+
- macOS: Install Xcode Command Line Tools
|
|
277
|
+
- Windows: Install Visual Studio Build Tools
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
## ✨ Special thanks
|
|
281
|
+
|
|
282
|
+
### ✨ Contributors/Supporters
|
|
283
|
+
|
|
284
|
+
Thanks to all the contributors of the project. Robyn will not be what it is without all your support :heart:.
|
|
285
|
+
|
|
286
|
+
<a href="https://github.com/sparckles/Robyn/graphs/contributors">
|
|
287
|
+
<img src="https://contrib.rocks/image?repo=sparckles/Robyn" />
|
|
288
|
+
</a>
|
|
289
|
+
|
|
290
|
+
Special thanks to the [PyO3](https://pyo3.rs/v0.13.2/) community and [Andrew from PyO3-asyncio](https://github.com/awestlake87/pyo3-asyncio) for their amazing libraries and their support for my queries. 💖
|
|
291
|
+
|
|
292
|
+
### ✨ Sponsors
|
|
293
|
+
|
|
294
|
+
These sponsors help us make the magic happen!
|
|
295
|
+
|
|
296
|
+
[](https://www.digitalocean.com/?refcode=3f2b9fd4968d&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge)
|
|
297
|
+
[](https://github.com/appwrite)
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
## Star History
|
|
301
|
+
|
|
302
|
+
[](https://star-history.com/#sparckles/Robyn&Date)
|
|
303
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
robyn/__init__.py,sha256=56G0tjO4ynoFLfzGGS3V8YglNG5RT2gTknQ9bjKpb6c,31442
|
|
2
|
+
robyn/__main__.py,sha256=kpXJC6Zhn63mMPoRtX0ufk4XgPix8eqYXTKz4ju87FQ,64
|
|
3
|
+
robyn/ai.py,sha256=hhd_U8SQuNnlzRIi8wtURe9wdCeck5ck2W0aR5V_Gv8,10023
|
|
4
|
+
robyn/argument_parser.py,sha256=ftg_t9ZriK5S1yKw6a3E7Y9O3q9pg5Gw5mSgLDI2WSU,4251
|
|
5
|
+
robyn/authentication.py,sha256=iQy4AFB3iASKTYEs3WNBQCTTKwLZmh2Y4WFeXt6RwGM,3061
|
|
6
|
+
robyn/cli.py,sha256=WjBoFPoPDEUaPlD2gmRAy_citD8F_vuigVbxAuZhA-Y,3938
|
|
7
|
+
robyn/dependency_injection.py,sha256=so4u-_gZVnbut6z-MvwJv5deg5QJhUGJN4qqhr9tK9o,2450
|
|
8
|
+
robyn/env_populator.py,sha256=Ig5LVQGcGehzy4gislnFvTfIr-htHgi-YyYcTSSIsx8,1094
|
|
9
|
+
robyn/events.py,sha256=y5NxCIUZq0AGBzA6u-VYhuy5ew6SMTHvy2TRmSvJykQ,94
|
|
10
|
+
robyn/exceptions.py,sha256=VsvUp1VS1PSyJI3b5FbZDDTx4ZLwWObhjHUQN_lEmp8,965
|
|
11
|
+
robyn/jsonify.py,sha256=6_oAwg1p3LocMMs1vB9uyd_iL3MV5tOISwaU0HUznNo,308
|
|
12
|
+
robyn/logger.py,sha256=JGlQUhVUTdqIWPiiZ3KdGMP7uPofpcPSzNqcvisVt78,1829
|
|
13
|
+
robyn/mcp.py,sha256=qLtycnKmQectAAgM1jIVWOkNbUcnAEIMBLJp9sX_cnM,17691
|
|
14
|
+
robyn/openapi.py,sha256=EDdxO9oqTjQAXFPIXkL7bhaeLlJDVg0aV7Jy6QFMzIA,17092
|
|
15
|
+
robyn/processpool.py,sha256=5_mBAO6OZHL_Ox55ziOPCB4Mjm8aAjF2FdyglsxczOM,7163
|
|
16
|
+
robyn/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
robyn/reloader.py,sha256=XkJTCKwdA7hXfLn-EWBB-6i87dYpbZFkAY_uG4Pansk,5340
|
|
18
|
+
robyn/responses.py,sha256=5e13wMNEJuUfh33S7o4yUTeX6WWT_ErcXbW0FYn3Fns,6874
|
|
19
|
+
robyn/robyn.cpython-314-x86_64-linux-gnu.so,sha256=u11uVoSc22hUpFB-4QJETablbnszEs0ya5vZwbbPuuk,4482928
|
|
20
|
+
robyn/robyn.pyi,sha256=fIJ1jvAhjRuxAXUnxwIKr_2gCX75sqccNzPxhkpjIGc,15254
|
|
21
|
+
robyn/router.py,sha256=8XMP7Wu_2nMdFJEXe5h3Z9lYohiXvq2Xc7iO6FAlilc,15967
|
|
22
|
+
robyn/scaffold/mongo/Dockerfile,sha256=x6eziI8D0kD82_RVCXXFHwzsgT_3lRaSKxJDHts4ETI,180
|
|
23
|
+
robyn/scaffold/mongo/app.py,sha256=28deIh6zHpMtOM8BnCEfruk7TOg0OrcZ7lF4n5Jhhv0,955
|
|
24
|
+
robyn/scaffold/mongo/requirements.txt,sha256=fuGINWbfo4Bjt_GdxfdLB6l9f7xW6nF0pVAiA1v3h6E,14
|
|
25
|
+
robyn/scaffold/no-db/Dockerfile,sha256=x6eziI8D0kD82_RVCXXFHwzsgT_3lRaSKxJDHts4ETI,180
|
|
26
|
+
robyn/scaffold/no-db/app.py,sha256=6KubIayK0ORo1Ub0dP1Z3YFzhARFtILkO26t5ujsres,172
|
|
27
|
+
robyn/scaffold/no-db/requirements.txt,sha256=BJV_VLg3Mq_o2LKLH7ChOefXHSUyO6SNdcLkwGDiGrM,6
|
|
28
|
+
robyn/scaffold/postgres/Dockerfile,sha256=46DpFsrFtcGoTxg7Pw2VDGMisKJPFRdDzHEQ0MFLn-I,832
|
|
29
|
+
robyn/scaffold/postgres/app.py,sha256=nSyLqW70tT82YRAS1stDgOu7kwRBJ0LkpkdhaqFIlos,606
|
|
30
|
+
robyn/scaffold/postgres/requirements.txt,sha256=SKmqzrnIdxwMqEoqiALn1vayNkjLjReuF0TVQ_KeNsA,87
|
|
31
|
+
robyn/scaffold/postgres/supervisord.conf,sha256=nX0H7VxpXTbahC6CZcHh4jvv4uemr7tO6bD2_NtIM7Q,294
|
|
32
|
+
robyn/scaffold/prisma/Dockerfile,sha256=VKhiSjrNggnex1-Cf5yO6inWa-FC2NhTdhdNi7lT7TY,258
|
|
33
|
+
robyn/scaffold/prisma/app.py,sha256=0Od3LdpxLTBEcoJXSk-vltTj-NV8yFKRiowMC2oSy8E,587
|
|
34
|
+
robyn/scaffold/prisma/requirements.txt,sha256=GQGHHGDP8-2UpEoW6yi6j27F3EAwBdXgR4cDX-RA5lY,13
|
|
35
|
+
robyn/scaffold/prisma/schema.prisma,sha256=ovojRZQYgR0yfhOq9I3VXD3wKngpRaR1LoVqpUakj74,181
|
|
36
|
+
robyn/scaffold/sqlalchemy/Dockerfile,sha256=x6eziI8D0kD82_RVCXXFHwzsgT_3lRaSKxJDHts4ETI,180
|
|
37
|
+
robyn/scaffold/sqlalchemy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
robyn/scaffold/sqlalchemy/app.py,sha256=4QVcVnchRd-lTOgj1qTr2mGB0frlXCN-4Dl6tx2-a7o,214
|
|
39
|
+
robyn/scaffold/sqlalchemy/models.py,sha256=GXtuWrKjZRld708SGvf0URIkmgy3rT2EhfbGQWjsuzo,661
|
|
40
|
+
robyn/scaffold/sqlalchemy/requirements.txt,sha256=O1_v5ca0c0Qo7BJISAsweOZRMY9s-PmiMHkrTRS8Uow,17
|
|
41
|
+
robyn/scaffold/sqlite/Dockerfile,sha256=x6eziI8D0kD82_RVCXXFHwzsgT_3lRaSKxJDHts4ETI,180
|
|
42
|
+
robyn/scaffold/sqlite/app.py,sha256=GYzbwqZFdQYBOvXnL0EZh6tW3HJOal1VnFxJx5LYiI0,491
|
|
43
|
+
robyn/scaffold/sqlite/requirements.txt,sha256=BJV_VLg3Mq_o2LKLH7ChOefXHSUyO6SNdcLkwGDiGrM,6
|
|
44
|
+
robyn/scaffold/sqlmodel/Dockerfile,sha256=swNsbRAjZuep8JOnMHsRSKmxjR6OszxJpeD_3WgJDOg,178
|
|
45
|
+
robyn/scaffold/sqlmodel/app.py,sha256=fjBkh35jVIreVLz5Do7L_YKko2wtMcyB9QOAeAMddIs,1089
|
|
46
|
+
robyn/scaffold/sqlmodel/models.py,sha256=_PN35KWIe9Mj5ufM4dIhxJJ7vvBBSo9O7kALWykMLPU,229
|
|
47
|
+
robyn/scaffold/sqlmodel/requirements.txt,sha256=iekxnkTUDPsiGZxNXtgjXcn6f9FKO4gF3lMiG1ILOUk,14
|
|
48
|
+
robyn/status_codes.py,sha256=BtVTWpdRB21V3ucvMWv7jq0ygM-3fbYZneldaYQxPZE,4222
|
|
49
|
+
robyn/swagger.html,sha256=uEolnRMaYidTmrUUkxYXPAmsGFxz993qXSFBoO76Sto,938
|
|
50
|
+
robyn/templating.py,sha256=8CkPWnZZ31FCZO3qLDmY5eeaUlFvSaIajv2KKbLDc5Q,942
|
|
51
|
+
robyn/types.py,sha256=B47NTCgCbvWqnhWKGKiOjX7SnQegNW2IP9xvcUVXt6E,979
|
|
52
|
+
robyn/ws.py,sha256=N0CFULHywF3BJMFv8wtYUNnCx1hnkQ6rf7z1JyZXshY,2347
|
|
53
|
+
robyn-0.76.0.dist-info/METADATA,sha256=O9PpclbE1Y8iEdfmhupW7o0YJ_wrygDaLtq4gsXk-24,10480
|
|
54
|
+
robyn-0.76.0.dist-info/WHEEL,sha256=1GO8NDKTfrlRkgVXFQ5KJDUbdgIfejZHnbKJV8XeeSw,147
|
|
55
|
+
robyn-0.76.0.dist-info/entry_points.txt,sha256=Rla8T60GbwNh4BH5vu3h8eXoi_iTlrSmSYeVMVx-KI0,85
|
|
56
|
+
robyn-0.76.0.dist-info/licenses/LICENSE,sha256=j_4yGGMoPbscB-1KxkoiGhFAk5Esl7Vq-gKqmygvnWo,1323
|
|
57
|
+
robyn-0.76.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
BSD 2-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021, Sanskar Jethi
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
17
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
18
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
19
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
20
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
21
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
22
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
23
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
24
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
25
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|