Skip to main content

framework, CMS and CRM for aiohttp

Project description


# Introduction.
This asynchronous framework with a modular structure like Django. But with mongodb, jinja2, websocket out of the box,
and more than a simple barrier to entry.

Built on the basis of asyncio and aiohttp.

#Framework Installation
```python
$ pip install tao1
```
#Getting Started

Create a project anywhere:
```python
$ utils.py -p name
```
Create an application in the folder of the project apps:
```python
$ utils.py -a name
```
Run server:
```python
$ python3 index.py
```
#License

It's *MIT* licensed and freely available.

#Deploy
When you develop enough to run the file `python3 index.py`.
For production to run `index.py`, is better to use the `supervisor` and `nginx`.
Settings supervisor in `/etc`:
```python
[program:name]
command=python3 index.py
directory=/path/to/your/project
user=nobody
autorestart=true
redirect_stderr=true
```
Settings nginx in `/etc`::
```python
server {
server_name name.dev;
location / {
proxy_pass http://127.0.0.1:6677;
}
}
```

#Routes

Example route in file `routes.py`::
```python
route( '/ws', ws, 'GET', 'ws' )
```
#Templates

In framework integrated `jinja2`. Templates are always in the `templ` folder.

To call the template function `templ` and pass it the template name. If the template is in some sort of module,
the call looks like this `apps.modul_name.templ_name`.

If the template is in the root of the project in the templ folder, then simply write his name.

Example:
```python
def page(request):
return templ('index', request, {'key':'val'} )
```

#Websockets

The websocket to create games and chat very easy to use.

The first is the need to call route with the template to draw the route and chat with the handler for chat:

```python
route( '/ws', ws, GET', 'ws' )
route( '/wsh', ws_handler, GET', 'ws_handler' )
```
These routes work you can see an example.

The second is the functions themselves.
Function for render chat page:
```python
@asyncio.coroutine
def ws(request):
return templ('apps.app:chat', request, {} )
```
Function handler chat:

```python
@asyncio.coroutine
def ws_handler(request):
ws = web.WebSocketResponse()
ws.start(request)
while True:
msg = yield from ws.receive()
if msg.tp == MsgType.text:
if msg.data == 'close':
yield from ws.close()
else:
ws.send_str(msg.data + '/answer')
elif msg.tp == aiohttp.MsgType.close:
print('websocket connection closed')
return ws
```

#Database

To write the database query you need to `request.db`
and then as usual.

```python
# save doc
request.db.doc.save({"_id":"test", "status":"success"})
# find doc
val = request.db.doc.find_one({"_id":"test"})
```

#Static files

Static files it is better to entrust `nginx` but `tao1` able return files.

All files must be located in the folder static.

If they are the root of the project then the path will be like this `/static/static/file_name.pg`.
If the files are in a certain module, then the path like this `/static/module_name/file_name.jpg`.

#Caching

Create cache for function 5 second, the first parameter - name::
```python
@cache("main_page", expire=5)
@asyncio.coroutine
def page(request):
return templ('index', request, {'key':'val'} )
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tao1-0.1.8.9.tar.gz (42.9 MB view details)

Uploaded Source

File details

Details for the file tao1-0.1.8.9.tar.gz.

File metadata

  • Download URL: tao1-0.1.8.9.tar.gz
  • Upload date:
  • Size: 42.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tao1-0.1.8.9.tar.gz
Algorithm Hash digest
SHA256 8ac55cf1eb2af5bc88d2a63798d8fd4fdae46b8ffb087ce7d7b76ba73219db91
MD5 1de8839ef24522fc378914d52eac8a16
BLAKE2b-256 af686d5a1d3a0ba91d9974cd8f4cf7edb4001fd7ba9e65e4a53fb2457275480b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page