Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dolphinorg/pydolphin

a convenient solution to heroku web apps / APIs.
https://github.com/dolphinorg/pydolphin

Last synced: 3 months ago
JSON representation

a convenient solution to heroku web apps / APIs.

Awesome Lists containing this project

README

        

# pydolphin

a convenient solution to heroku web apps / APIs.

# installation.

```text
pip3 install pydolphin

or

pip3 install --no-cache git+https://github.com/dolphinorg/pydolphin.git
```

# basic example.
```py

import os
from flask import Flask
from pydolphin import dolphin

PORT = int(os.environ.get("PORT", 6969))

app = Flask(__name__)

@app.before_first_request
def dolphin_start():
dolphin.swim()

@app.route('/')
def index():
return 'hello'

app.run(host='0.0.0.0', port=PORT)
```
# alternatively

you can make a folder with `__init__.py`
with

```py
from pydolphin import dolphin

dolphin.swim()
```

# note.

=> i am currently learning js and node-js but
if you want to contribute to make dolphin
packages for them,
you can contact me t.me/midnightmadwalk.
=> use it in any python web framework and
report bug or contribute.