nasse


Namenasse JSON
Version 2.0.2 PyPI version JSON
download
home_pagehttps://github.com/Animenosekai/nasse
SummaryA web server framework written on top of Flask which lets you focus on your ideas 🍡
upload_time2023-08-27 00:41:28
maintainerAnimenosekai
docs_urlNone
authorAnimenosekai
requires_python>=3.8,<4.0
licenseMIT
keywords animenosekai nasse flask framework web web-server web-framework docs documentation http requests
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `nasse`

<img align="right" src="./assets/nasse.png" height="220px">

A web server framework written on top of Flask which lets you focus on your ideas 🍡

***Actually spend time making your next app, we will do the annoying stuff for you!***

<br>
<br>

[![PyPI version](https://badge.fury.io/py/Nasse.svg)](https://pypi.org/project/nasse/)
[![Downloads](https://static.pepy.tech/personalized-badge/nasse?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Total%20Downloads)](https://pepy.tech/project/nasse)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/Nasse)](https://pypistats.org/packages/nasse)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/Nasse)](https://pypi.org/project/nasse/)
[![PyPI - Status](https://img.shields.io/pypi/status/Nasse)](https://pypi.org/project/nasse/)
[![GitHub - License](https://img.shields.io/github/license/Animenosekai/Nasse)](https://github.com/Animenosekai/nasse/blob/master/LICENSE)
[![GitHub top language](https://img.shields.io/github/languages/top/Animenosekai/Nasse)](https://github.com/Animenosekai/nasse)
[![CodeQL Checks Badge](https://github.com/Animenosekai/nasse/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Animenosekai/nasse/actions/workflows/codeql-analysis.yml)
![Code Size](https://img.shields.io/github/languages/code-size/Animenosekai/nasse)
![Repo Size](https://img.shields.io/github/repo-size/Animenosekai/nasse)
![Issues](https://img.shields.io/github/issues/Animenosekai/nasse)

## Index

- [Index](#index)
- [Getting Started](#getting-started)
  - [Prerequisites](#prerequisites)
- [Installing](#installing)
  - [Option 1: From PyPI](#option-1-from-pypi)
  - [Option 2: From Git](#option-2-from-git)
- [Purpose](#purpose)
  - [Comparison](#comparison)
    - [Before](#before)
    - [After](#after)
- [Usage](#usage)
  - [Creating a new app](#creating-a-new-app)
  - [Flask integration](#flask-integration)
    - [Flask Configuration](#flask-configuration)
      - [Example](#example)
    - [In the routes](#in-the-routes)
      - [Example](#example-1)
  - [Registering new endpoints](#registering-new-endpoints)
  - [Documenting your endpoints](#documenting-your-endpoints)
  - [Documentation Values](#documentation-values)
    - [Return](#return)
    - [Login](#login)
    - [UserSent](#usersent)
    - [Error](#error)
  - [Context](#context)
  - [Returned Values](#returned-values)
  - [Error handling](#error-handling)
  - [JSON](#json)
  - [Utilities](#utilities)
    - [Logging](#logging)
    - [String Formatting](#string-formatting)
  - [Running the server](#running-the-server)
  - [Generate documentation](#generate-documentation)
    - [Localization](#localization)
  - [CLI](#cli)
    - [Runner](#runner)
    - [Docs](#docs)
    - [HTTP App](#http-app)
      - [Request](#request)
      - [Result](#result)
      - [History](#history)
      - [Explorer](#explorer)
      - [Options](#options)
      - [File browser](#file-browser)
- [Deployment](#deployment)
- [Contributing](#contributing)
- [Built With](#built-with)
- [Authors](#authors)
- [Acknowledgments](#acknowledgments)
- [License](#license)

## Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

### Prerequisites

You will need Python 3 to use this module

```bash
# vermin output
Minimum required versions: 3.8
Incompatible versions:     2
```

Always check if your Python version works with `Nasse` before using it in production.

## Installing

### Option 1: From PyPI

```bash
pip install --upgrade nasse
```

> This will install the latest stable version from PyPI

### Option 2: From Git

```bash
pip install --upgrade git+https://github.com/Animenosekai/nasse.git
```

> This will install the latest development version from the git repository

You can check if you successfully installed it by printing out its version:

```bash
$ nasse --version
2.0.2
```

## Purpose

This web server framework aims at bringing a new powerful tool to make your web application development easier.

It brings type safety, along with automatic documentation to force you write clean and safe code while avoiding unnecessary checks and data validation.

### Comparison

#### Before

```python
# my_project/api/v1/accounts.py

import json

from flask import Flask, request
from flask_compress import Compress
from flask_cors import CORS
from flask_talisman import Talisman

app = Flask(__name__)
Compress(app)
CORS(app)
Talisman(app)

# after a quick StackOverflow search
EMAIL_REGEX = re.compile(r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b')

@app.route("/api/v1/accounts/profile", methods=["GET", "POST"])
def v1_accounts_profile():
    username = request.params.get("username", None)
    if not username:
        return 400, json.dumps({"error": "MISSING_ARG", "message": "The `username` argument is missing from the request"})
    password = request.params.get("password", None)
    if not password:
        return 400, json.dumps({"error": "MISSING_ARG", "message": "The `password` argument is missing from the request"})

    [...]
    # ...password validation and all...

    if str(request.method).upper() == "POST":
        email = request.params.get("email", None)
        if email and not EMAIL_REGEX.fullmatch(email):
            return 400, json.dumps({"error": "WRONG_EMAIL", "message": "The `email` argument doesn't seem to be a valid email address"})
        [...]
        return 200, json.dumps({"error": None, "message": "Account successfully created"})

    return 200, json.dumps({"error": None, "message": "Welcome back!"})
```

```markdown
<!-- my_project/docs/accounts.md -->

# Accounts

This file documents the correct way of using the accounts management endpoints for my project.

## v1/accounts

Here is an explanation...
```

#### After

```python
# my_project/api/v1/accounts.py

import re
from nasse import Nasse, Endpoint, Param, Login
from nasse.utils.types import Email, LimitedString

app = Nasse()

class Username(LimitedString):
    LIMIT = 200 # only allowing 200 characters

class Password(LimitedString):
    LIMIT = 100
    REGEX = re.compile(r"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$")
    THROW = True

ACCOUNTS_MANAGEMENT = Endpoint(category="Accounts Management", login=Login(required=True))

@app.route(Endpoint(
    endpoint=ACCOUNTS_MANAGEMENT, # this will take ACCOUNTS_MANAGEMENT as the base
    methods=["GET", "POST"],
    login=Login(no_login=True),
    params=[
        Param("username", {
            "GET": "The username of the user to check the authentication",
            "POST": "A new username"
        }, type=Username),
        Param("email", "The user's email address", methods="POST", required=False, type=Email),
        Param("password", "The user's password", type=Password),
    ]
))
def profile(method: str, username: str, password: str, email: str = None): # all of this comes from the request params and are type safe/validated
    if method == "POST":
        return 200, "Account created successfully"
    return 200, "Welcome back"

# This will actually generate all of the docs for you !
app.make_docs()
app.run()
```

> **Note**  
> Tip: You can also use `nasse my_project/api/v1/accounts.py` to run without calling `app.run()`!

But it could even look like this:

```python
# my_project/api/v1/accounts.py

import re
from nasse import Nasse, Endpoint, Login
from nasse.utils.types import Email, LimitedString

app = Nasse()

class Username(LimitedString):
    LIMIT = 200 # only allowing 200 characters

class Password(LimitedString):
    LIMIT = 100
    REGEX = re.compile(r"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$")
    THROW = True

@app.route(category="Accounts Management", methods=["GET", "POST"], login=Login(no_login=True))
def profile(method: str, username: Username, password: Password, email: Email = None):
    if method == "POST":
        return 200, "Account created successfully"
    return 200, "Welcome back"

app.make_docs()
app.run()
```

## Usage

### Creating a new app

Creating a new app is dead simple.

Just import the Nasse object and create a new instance of it

```python
>>> from nasse import Nasse
>>> app = Nasse()
```

This is the bare minimum, but you should of course configure it.

You should at least give it a name and configure the CORS domains.

```python
>>> app = Nasse("My App", cors="https://myapp.com")
```

Lots of things will be initialized with their default configuration.

If you want to customize them, you might want to take a look at the `nasse.config.NasseConfig` object, which has all the Nasse configuration.

> **Note**  
> Some strings support the [Nasse string formatting](#string-formatting).
> For example: `NasseConfig.server_header` supports it, and the default value is : `nasse/{version} ({name})`. The `{version}` and `{name}` parts will be filled automatically.

The `account_management` parameter should be of instance `models.AccountManagement` and is used to manage the users authentications.

> Example

```python
>>> from yuno.security.token import TokenManagement
>>> from account_management import get_account_by_id
>>> from nasse.models import AccountManagement
>>> tm = TokenManagement()
>>> class NewAccountManagement(AccountManagement):
...     def retrieve_type(self, account):
...         return "admin" if account.id == "123abc" else "user"
...     def retrieve_account(self, token: str):
...         return get_account_by_id(tm.decode(token))
...     def verify_token(self, token: str):
...         try:
...             tm.decode(token)
...             return True
...         except Exception:
...             return False
...
>>> app = Nasse(account_management=NewAccountManagement())
```

You can also specify specific Flask parameters using the `flask_options` parameter if needed.

### Flask integration

Nasse being built on top of Flask, it is fully compatible with its ecosystem.

As said before, lots of Flask settings are available and exposed to you.

#### Flask Configuration

You can configure the Flask app using the `flask_options` parameter when instantiating a new Nasse instance.

But you can also use the `Nasse.flask` attribute, which exposes the underlying Flask app to use your favorite plugins !

##### Example

If for whatever reason you need to add a Flask plugin :

```python
from nasse import Nasse
from flask_cool_plugin_yay import CoolPlugin

app = Nasse()
CoolPlugin(app.flask)
```

or if a service expect a flask app, you can trick it to expose the Flask app :

```python
from nasse import Nasse

nasse_app = Nasse()
app = nasse_app.flask # this is the Flask app
```

#### In the routes

Most of your Flask compatible code should probably already be compatible with Nasse.

For example, the `route` and `methods` parts of the `app.route` function work the same way as Flask.

##### Example

With ***Flask***

This is a very basic way of using Flask.

```python
from flask import Flask, request
app = Flask(__name__)

@app.route("/hello", methods=["GET", "POST"])
def hello():
    return 200, "Hello {}".format(request.params.get("name", "world"))
```

With ***Nasse***

Well this already works with Nasse !

```python
from nasse import Nasse, request
app = Nasse(__name__)

@app.route("/hello", methods=["GET", "POST"])
def hello():
    return 200, "Hello {}".format(request.params.get("name", "world"))
```

But can also be changed like this :

```python
from nasse import Nasse, Param
app = Nasse()

@app.route(methods=["GET", "POST"], params=Param("name", required=False))
def hello(name: str = "World"):
    return 200, "Hello {}".format(name)
```

### Registering new endpoints

You can register new endpoints using the `route` decorator, just like Flask!

```python
>>> @app.route("/hello")
>>> def hello():
...     return "Hello World!"
```

But did you know that this worked too?

```python
>>> @app.route()
>>> def hello():
...     return "Hello World!"
```

Where's the `"/hello"` part?

> If you don't specify it, it will be automatically generated from the function name.

You can follow a specific syntax for your functions name to create rich routes:

- To create a hyphen "-", use an upper case letter, kinda like when you use *camelCase*.

> `def myRoute()` ⇒ /my-route

- To create a new slash "/", use an underscore "_".

> `def my_route()` ⇒ /my/route

- To create a new dynamic parameter, use a double underscore "__".

> `def my__route__(route)` ⇒ /my/\<route>/

- You can mix everything up as you wish.

> `def my_helloWorld_route__name__(name)` ⇒ /my/hello-world/route/\<name>/

Also, the directory the function is in will be used to determine the route, this behavior can be changed with the `base_dir` parameter of the endpoint.

You can then use parameters to configure and document the endpoint.

### Documenting your endpoints

You can configure the endpoint by passing it a `nasse.models.Endpoint` instance.

Everything is meant to be reusable to write less and more readable code.

For example, you could define a basic and global endpoint configuration for all your endpoints at the top level.

Then configure a general endpoint configuration for the endpoint file.

And then make specific tweaking for each endpoint.

To inherit the configuration from another endpoint, you just need to pass the endpoint to the `endpoint` parameter of the new `Endpoint`.

```python
>>> from nasse.models import Endpoint
>>> from config import BASE_ENDPOINT
>>> from account_management import all_accounts
>>> ACCOUNT_ENDPOINTS = Endpoint(
    endpoint=BASE_ENDPOINT,
    category="Account Management",
)
>>> @app.route("/accounts", endpoint=Endpoint(
    endpoint=ACCOUNT_ENDPOINTS,
    name="Accounts",
    description="Get all of the accounts"
))
>>> def accounts():
...     return all_accounts()
```

But did you know that defining your functions the right way (giving a good name, type-hinting them and adding *doc-strings*) would already give Nasse enough information to build a nicely documented endpoint.

For example

```python
>>> from nasse import Parameter
>>> @app.route(
        path="/accounts",
        name="accounts_endpoint",
        category="test",
        parameters=[Parameter("username"), Parameter("limit", type=int, required=False)],
        description="This returns all accounts"
    )
... def accounts_endpoint(username: str, limit=100):
...     return get_accounts(username)
```

Could be rewritten as:

```python
>>> @app.route
... def accounts(username: str, limit: int = 100):
...     """This returns all accounts"""
...     return get_accounts()
```

This is the most natural way of writing your endpoints, almost as if your function never leaved Python.

And by using the [`miko`](https://github.com/Animenosekai/miko) documentation style, you can even add descriptions to your parameters:

```python
>>> @app.route
... def accounts(username: str, limit: int = 100):
...     """
...     This returns all accounts
...
...     Parameters
...     ----------
...     limit: int
...         An upper boundary for the number of accounts to return
...     """
...     return get_accounts()
```

> **Note**  
> The name of the endpoint will be the name of the function and its category will be the name of the file you defined the function in.
>
> We understand that it is not required to list all parameters in the doc-string.

Note that Nasse will automatically detect the different dynamic parts of the path:

```python
>>> @app.route
... def hello__someone__(someone: str):
...     return f"Hello {someone}"
...
>>> @app.route
... def repeat__msg__(msg: str, number: int = 10):
...     """
...     Repeats the given element `number` times
...     
...     Parameters
...     ----------
...     msg: str
...         The element to repeat
...     number
...         The number of times to repeat it
...     """
...     return [msg] * number
```

You can also specify the return value from within the function definition:

```python
>>> from nasse import Nasse, Response, Return
>>> app = Nasse()
>>>
>>> # Basic example
>>> @app.route
... def hello(username: str = "someone") -> Response[Return("hello", example="someone")]:
... """A hello world"""
... return Response({"hello": username})
...
>>> # A bit more complex
>>> @app.route
... def hello(method: str, username: str = "someone") -> Response[{"GET": Return("hello"), "POST": Return("hi")}]:
... """A hello world"""
... if method == "POST":
...     return Response({"hi": username})
... return Response({"hello": username})
```

You can then use the same syntax as when documenting `returning` in the `Endpoint` class.

Refer to [Return](#return) for the `Return` class explanation.

> **Note**  
> Type checkers won't complain because of the use of `Response`, which technically your function returns.

It is very important to rightfully document your endpoints because it will be used to process the requests and validate the inputs.

### Documentation Values

#### Return

The `models.Return` model is used to document what the endpoint returns.

Here are its parameters:

- `name`: The name of the field
- `example`: An example of returned value
- `description`: A description of the returned value
- `type`: The type of returned value
- `children`: The different children values
- `nullable`: If this value is can be `null` (`None`)

#### Login

The `models.Login` model is used to document how a user can authenticate its request with this endpoint.

Here are its parameters:

- `required`: If the login is required or not. The user may still authenticate.
- `types`: Accepted types of accounts
- `skip`: Whether to completely skip or not the authentication step
- `skip_fetch`: Whether to skip fetching the account or not. This effectively only checks if the provided token is correct or not.

#### UserSent

The `models.UserSent` model is used to document what the user can send to the endpoint.

Here are its parameters:

- `name`: The name of the value sent
- `description`: A description of the value sent
- `required`: If the value is required or not
- `type`: The type of value sent by the user

> **Note**  
> `models.Dynamic`, `models.Parameter`, `models.Header` and `models.Cookie` are all aliases of `models.UserSent`

#### Error

The `models.Error` model is used to document what errors can be returned by the endpoint.

Here are its parameters:

- `name`: The name of the error
- `description`: A description of a situation where this error might be raised
- `code`: The status code of the response sent along this error

### Context

The context values will be of the type you provided in the endpoint definition.

There are multiple ways you can access a request context.

You can import the `request` global variable from `nasse`

```python
>>> from nasse import request
>>> request.values
```

But a better way would be to directly ask for it inside your endpoint function parameter.

You can ask whatever you want from there.

```python
>>> @app.route()
>>> def hello(request): # this will ask Nasse for the `request` object
...     return request.values
```

```python
>>> @app.route
>>> def hello(headers): # this will ask Nasse for the request `headers`
...     return headers
```

Here is a list of parameters you can ask for:

- `app`: The current Nasse app instance
- `endpoint`: The current Nasse endpoint
- `request`: The current request context
- `method`: The HTTP method of the request
- `values`: The URL/form values of the request
- `args`: The URL arguments of the request
- `form`: The form values of the request
- `headers`: The headers of the request
- `account`: The authenticated account for the request
- `dynamics`: The dynamic route parameters of the request

***And their aliases***

- `nasse`: An alias for `app`
- `nasse_endpoint`: An alias for `endpoint`
- `params`: An alias for `values`

Any other requested parameter will be either a **dynamic route parameter** or a **URL/form parameter**.

> **Note**  
> Those request parameters can also be used to document your endpoints, please look at the [Documenting your endpoints](#documenting-your-endpoints) section for more information.

### Returned Values

You can return any kind of value from your endpoint function.

There are multiple ways to return values:

- Using the `response.Response` class

```python
... return Response(
    data=data,
    code=200,
    headers={
        "X-ANISE-CACHE": "HIT"
    },
    ...
)
```

- Using only the data

```python
... return "Hello World"
# or
... return binary_data # of instance `bytes`
```

- Using a dictionary

The dictionary will be automatically passed to `response.Response`

```python
... return {
    "data": data,
    "code": 200,
    "headers": {
        "X-ANISE-CACHE": "HIT"
    },
    ...
}
```

If the dictionary can't be passed to `response.Response`, it will be treated as part of the `data` to send back.

```python
... return {"greeting": "Hello World"}
```

- Using an iterable, like a tuple

```python
... return 200, "Hello World"
# or
... return ("Hello World", 200)
```

> **Note**  
> On debug mode, a set of timing header headers will automatically be returned.

### Error handling

Even if your application encounters an error/exception, it will be automatically caught by Nasse and correctly formatted to be safely returned to the client.

> **Note**  
> Tip: You should use the `nasse.exceptions.NasseException` class to create your own exceptions.
> This way, you will be able to fully customize the error response.

But even with regular `Exception` exceptions, Nasse will attempt to generate an error name and a description without leaking too much information.

### JSON

If the endpoint is configured as a JSON endpoint, it will be formatted using the following schema, and will have some features added.

```json
{
    "success": true,
    "error": null,
    "message": "",
    "data": {}
}
```

Nasse uses a custom JSON encoder to fully customize it and avoiding bugs.

> **Note**  
> Also, on debug mode, the response will have an additional `debug` field containing the debug information.
>
> **Note**  
> If the `format` parameter is set to `xml` or `html` when making the request, the response will be automatically converted to an *XML* format.
> Example: `/hello?format=xml` will produce a `XML` formatted output.

### Utilities

Nasse is shipped with a set of utilities that you can use inside your application.

They are mostly located inside the `utils` module.

#### Logging

You should use Nasse's logging system to log stuff on your console to avoid any issue with `rich`.

You can access the logging instance as a global variable :

```python
from nasse.utils.logging import logger

logger.log("Hello")
logger.debug("Hello")
logger.warn("Hello")
...
```

Or use the one on your Nasse instance :

```python
from nasse import Nasse

app = Nasse()
app.log("Hello")
app.logger.info("Hello")
app.logger.error("Hello")
```

You can actually decide to only include the message to the log file and not print it on the console by using the `HIDDEN` logging level :

```python
logger.hidden("Hello") # this will add the hello message to the log file but not STDOUT
```

The logger supports [Nasse's string formatting](#string-formatting).

#### String Formatting

String formatting is a way of making template strings which will dynamically change its value with variables.

In python, the `format` function allows strings to use variables to create strings :

```python
name = "world"

# are all equivalent
"Hello {}".format(name)
"Hello {name}".format(name=name)
f"Hello {name}"
```

With Nasse, you can use this string formatting syntax, but with default values which can be automatically filled :

```python
from nasse.utils import formatter

formatter.format("Hello {name} from process {pid}", name="world")
```

Most of the time, this is used when logging stuff to the console :

```python
logger.print("Hello {user} from process {pid}", user="world")
```

<!-- markdownlint-disable MD033 -->
<details>
    <summary>Here is a list of default variables you can use with Nasse's string formatting</summary>
    <li>normal</li>
    <li>grey</li>
    <li>gray</li>
    <li>red</li>
    <li>green</li>
    <li>blue</li>
    <li>cyan</li>
    <li>turquoise</li>
    <li>white</li>
    <li>yellow</li>
    <li>purple</li>
    <li>pink</li>
    <li>magenta</li>
    <li>name</li>
    <li>app</li>
    <li>id</li>
    <li>host</li>
    <li>port</li>
    <li>debug</li>
    <li>version</li>
    <li>base_dir</li>
    <li>time</li>
    <li>caller</li>
    <li>thread</li>
    <li>pid</li>
    <li>cwd</li>
</details>
<!-- markdownlint-enable MD033 -->

### Running the server

Running the server is as easy as calling

```python
app.run()
```

> **Note**  
> You can also use the terminal to directly run the server. Head over to [Runner](#runner) for further information.

Where `app` is your Nasse instance.

You can specify the backend you want to use to run the server using one of the already defined `nasse.servers...` objects are a custom-made one, following the `nasse.servers.ServerBackend` class.

You can here specify the host and port to run the server on.

If not specified, the host and port `127.0.0.1:5005` will be used.

On debug mode, Nasse will reload on any file change.

> **Note**  
> Tip: You can use the `include` and `exclude` parameters to specify which files to watch for.

### Generate documentation

With the data you provided to the endpoints, Nasse is able to generate markdown and postman documentation for you.

Use the `make_docs` method inside your application to generate the documentation.

```python
>>> app.make_docs()
```

> **Note**  
> You can also use the terminal to generate the docs. Head over to [Docs](#docs) for further information.

It will generate the examples, usage and explanation for each endpoint, along with an index of the endpoints and a general explanation at the top.

The Postman documentation is a set of JSON files, one for each category, that you can import inside Postman to test your API.

It will create a `docs` directory in the current directory to put both documentations.

#### Localization

You can now use the docs' localization feature which lets you use a different language for your docs !

```python
from nasse import Nasse
from nasse.localization import JapaneseLocalization

app = Nasse()
app.make_docs("./docs/jpa", localization=JapaneseLocalization, javascript=False)
```

Here are the built-in languages :

- English
- French
- Japanese

But you can create your own translation by sub-classing `nasse.localization.Localization`

### CLI

#### Runner

You can directly run your Nasse apps using the CLI.

To do so, head over to your terminal and enter:

```bash
nasse <your_app.py>
```

This should run the app with the default parameters.

If you want to customize the running behaviors, you can use the arguments with a `(server)` note prepended to their explanation when you run the `--help` command:

```bash
$ nasse --help
usage: nasse [-h] [--version] [--host HOST] [--port PORT] [--server SERVER] [--watch [WATCH ...]] [--ignore [IGNORE ...]] [--debug] [--config CONFIG]
             [input]

A web server framework written on top of Flask which lets you focus on your ideas 🍡

positional arguments:
  input                 The file or URL to use with nasse

options:
  -h, --help            show this help message and exit
  --version, -v         show program's version number and exit
  --host HOST           (server) The host to bind to
  --port PORT, -p PORT  (server) The port to bind to
  --server SERVER, -s SERVER
                        (server) The server to use (accepts: flask, gunicorn)
  --watch [WATCH ...], -w [WATCH ...]
                        (server) Files to watch changes on debug mode
  --ignore [IGNORE ...], -i [IGNORE ...]
                        (server) Files to ignore when watching for file changes on debug mode
  --debug, -d           (server) To run with debug mode enabled
  --config CONFIG, -c CONFIG
                        (server) A configuration file for extra arguments passed to the server
```

The `--config` argument takes in a JSON file containing the different configurations you would like to pass in to the `run` function of your `Nasse` instance.

#### Docs

You can use the CLI to directly generate the docs:

```bash
nasse --make-docs <your_app>.py
```

You can also customize the docs' generation using arguments:

```bash
$ nasse --help
usage: nasse [-h] [--version] [--make-docs] [--language LANGUAGE]
             [--output OUTPUT] [--docs-curl] [--docs-javascript] [--docs-python]
             [input]

A web server framework written on top of Flask which lets you focus on your ideas 🍡

positional arguments:
  input                 The file or URL to use with nasse

options:
  -h, --help            show this help message and exit
  --version, -v         show program's version number and exit
  --make-docs, -md, --docs, --generate-docs
                        (docs) Generates the docs and exits
  --language LANGUAGE, --localization LANGUAGE
                        (docs) The docs language
  --output OUTPUT, -o OUTPUT, --docs-dir OUTPUT, --docs_dir OUTPUT
                        (docs) The directory to output the docs
  --docs-curl           (docs) If we need to render the curl examples
  --docs-javascript     (docs) If we need to render the javascript examples
  --docs-python         (docs) If we need to render the python examples
```

Here are the languages you can use to generate the docs:

- [`eng`](https://github.com/Animenosekai/nasse/blob/main/nasse/localization/base.py) (default)
- [`fra`](https://github.com/Animenosekai/nasse/blob/main/nasse/localization/fra.py)
- [`jpn`](https://github.com/Animenosekai/nasse/blob/main/nasse/localization/jpn.py)

> **Note**  
> Those codes are the name of the file the `Localization` object was created in

#### HTTP App

You can also use the built-in HTTP app to test your endpoints.

This app might be familiar to those using the Postman software.

To open it, just enter

```bash
nasse
```

This should open the app, and you should land on this page:

![HTTP App — Main Page](assets/screenshots/http_main.png)

##### Request

The `Request` tab is the main tab to prepare your requests.

The first two inputs lets you choose the HTTP method to use and the URL to submit the requests to.

The inputted URL can be an absolute URL or a relative path. In the latter case, the URL provided when launching the app or the one inputted in the [`Options`](#options) tab will be used to complete it.

![HTTP App — Request Tab](assets/screenshots/http_request.png)

##### Result

When you submit a request, by pressing `S` or clicking the `Submit` button on the footer, the `Result` tab should open automatically.

Click on it to expand it.

![HTTP App — Result Tab](assets/screenshots/http_result.png)

You can here see the details of your request, or the details of the error if the request errored out.

![HTTP App — Result Tab, Error](assets/screenshots/http_result_error.png)

##### History

The history tab keeps a history of your requests.

You can click on any request to see its details in the [`Result`](#result) tab.

The bottom part of the history tab shows a graph with the time it took to make each request.

![HTTP App — History Tab, Ping](assets/screenshots/http_history_ping.png)

##### Explorer

The explorer can be used when you are testing a `Nasse` server in `DEBUG MODE` (`--debug` enabled)

If I go into [*playground/readme*](playground/readme/) and I run the server:

```bash
🧃❯ python run.py --debug
2023/08/11, 18:55:59 | [WARNING] (yay) DEBUG MODE IS ENABLED
2023/08/11, 18:55:59 | [INFO] (yay) 🎏 Press Ctrl+C to quit
2023/08/11, 18:55:59 | [INFO] (yay) 🌍 Binding to 127.0.0.1:5005
🍡 yay is running on http://127.0.0.1:5005 — 0:00:04
```

I can then run the HTTP app:

```bash
nasse http://127.0.0.1:5005
```

And will see the different endpoints in the explorer:

![HTTP App — Explorer Tab](assets/screenshots/http_explorer.png)

##### Options

The options screen will let you easily configure the app:

![HTTP App — Options Screen](assets/screenshots/http_options.png)

All the modifications will be stored in the current directory and be restored on the next launch.

##### File browser

The file browser is used throughout the app whenever it needs a file input.

You can filter the different files and folders by starting to type your keyword.

![HTTP App — File Browser Screen](assets/screenshots/http_file_browser.png)

You can then navigate using the arrows on your keyboard and select your file by pressing `ENTER`.

## Deployment

This module is currently in development and might contain bugs.

Please verify and test your endpoints thoroughly before releasing anything at a production stage.

Feel free to report any issue you might encounter on Nasse's GitHub page.

## Contributing

Pull requests are welcome. For major changes, please open a discussion first to discuss what you would like to change.

<!-- Please make sure to update the tests accordingly. -->

## Built With

- [Flask](https://github.com/pallets/flask) - Nasse is built on top of flask to provide the interface
- [watchdog](https://github.com/gorakhargosh/watchdog) - To watch for file changes
- [Werkzeug](https://github.com/pallets/werkzeug/) - Flask's core
- [bleach](https://github.com/mozilla/bleach) - To sanitize inputs
- [rich](https://github.com/Textualize/rich) - To provide good-looking console outputs
- [textual](https://github.com/Textualize/textual) - To build the HTTP TUI
- [Flask-Compress](https://github.com/colour-science/flask-compress) - To compress the responses

## Authors

- **Animenosekai** - *Initial work* - [Animenosekai](https://github.com/Animenosekai)

## Acknowledgments

Thanks to *CherryPieWithPoison* for the Statue of the Seven model.
> [© 2021 - 2022 CherryPieWithPoison](https://www.deviantart.com/cherrypiewithpoison/art/MMD-Genshin-Impact-Statues-of-the-Seven-DL-871695397)

The Dictionary to XML conversion is heavily inspired by dict2xml by delfick.
> Licensed under the MIT License. More information in the header of the [xml.py](./nasse/utils/xml.py) file.

## License

This project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for more details

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Animenosekai/nasse",
    "name": "nasse",
    "maintainer": "Animenosekai",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "animenosekai.mail@gmail.com",
    "keywords": "animenosekai,nasse,flask,framework,web,web-server,web-framework,docs,documentation,http,requests",
    "author": "Animenosekai",
    "author_email": "animenosekai.mail@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/30/48/b838d85de724785c8ff5856cf59b1ea492dda202a1353dfefd79a2aa6e86/nasse-2.0.2.tar.gz",
    "platform": null,
    "description": "# `nasse`\n\n<img align=\"right\" src=\"./assets/nasse.png\" height=\"220px\">\n\nA web server framework written on top of Flask which lets you focus on your ideas \ud83c\udf61\n\n***Actually spend time making your next app, we will do the annoying stuff for you!***\n\n<br>\n<br>\n\n[![PyPI version](https://badge.fury.io/py/Nasse.svg)](https://pypi.org/project/nasse/)\n[![Downloads](https://static.pepy.tech/personalized-badge/nasse?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Total%20Downloads)](https://pepy.tech/project/nasse)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/Nasse)](https://pypistats.org/packages/nasse)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/Nasse)](https://pypi.org/project/nasse/)\n[![PyPI - Status](https://img.shields.io/pypi/status/Nasse)](https://pypi.org/project/nasse/)\n[![GitHub - License](https://img.shields.io/github/license/Animenosekai/Nasse)](https://github.com/Animenosekai/nasse/blob/master/LICENSE)\n[![GitHub top language](https://img.shields.io/github/languages/top/Animenosekai/Nasse)](https://github.com/Animenosekai/nasse)\n[![CodeQL Checks Badge](https://github.com/Animenosekai/nasse/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Animenosekai/nasse/actions/workflows/codeql-analysis.yml)\n![Code Size](https://img.shields.io/github/languages/code-size/Animenosekai/nasse)\n![Repo Size](https://img.shields.io/github/repo-size/Animenosekai/nasse)\n![Issues](https://img.shields.io/github/issues/Animenosekai/nasse)\n\n## Index\n\n- [Index](#index)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n- [Installing](#installing)\n  - [Option 1: From PyPI](#option-1-from-pypi)\n  - [Option 2: From Git](#option-2-from-git)\n- [Purpose](#purpose)\n  - [Comparison](#comparison)\n    - [Before](#before)\n    - [After](#after)\n- [Usage](#usage)\n  - [Creating a new app](#creating-a-new-app)\n  - [Flask integration](#flask-integration)\n    - [Flask Configuration](#flask-configuration)\n      - [Example](#example)\n    - [In the routes](#in-the-routes)\n      - [Example](#example-1)\n  - [Registering new endpoints](#registering-new-endpoints)\n  - [Documenting your endpoints](#documenting-your-endpoints)\n  - [Documentation Values](#documentation-values)\n    - [Return](#return)\n    - [Login](#login)\n    - [UserSent](#usersent)\n    - [Error](#error)\n  - [Context](#context)\n  - [Returned Values](#returned-values)\n  - [Error handling](#error-handling)\n  - [JSON](#json)\n  - [Utilities](#utilities)\n    - [Logging](#logging)\n    - [String Formatting](#string-formatting)\n  - [Running the server](#running-the-server)\n  - [Generate documentation](#generate-documentation)\n    - [Localization](#localization)\n  - [CLI](#cli)\n    - [Runner](#runner)\n    - [Docs](#docs)\n    - [HTTP App](#http-app)\n      - [Request](#request)\n      - [Result](#result)\n      - [History](#history)\n      - [Explorer](#explorer)\n      - [Options](#options)\n      - [File browser](#file-browser)\n- [Deployment](#deployment)\n- [Contributing](#contributing)\n- [Built With](#built-with)\n- [Authors](#authors)\n- [Acknowledgments](#acknowledgments)\n- [License](#license)\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.\n\n### Prerequisites\n\nYou will need Python 3 to use this module\n\n```bash\n# vermin output\nMinimum required versions: 3.8\nIncompatible versions:     2\n```\n\nAlways check if your Python version works with `Nasse` before using it in production.\n\n## Installing\n\n### Option 1: From PyPI\n\n```bash\npip install --upgrade nasse\n```\n\n> This will install the latest stable version from PyPI\n\n### Option 2: From Git\n\n```bash\npip install --upgrade git+https://github.com/Animenosekai/nasse.git\n```\n\n> This will install the latest development version from the git repository\n\nYou can check if you successfully installed it by printing out its version:\n\n```bash\n$ nasse --version\n2.0.2\n```\n\n## Purpose\n\nThis web server framework aims at bringing a new powerful tool to make your web application development easier.\n\nIt brings type safety, along with automatic documentation to force you write clean and safe code while avoiding unnecessary checks and data validation.\n\n### Comparison\n\n#### Before\n\n```python\n# my_project/api/v1/accounts.py\n\nimport json\n\nfrom flask import Flask, request\nfrom flask_compress import Compress\nfrom flask_cors import CORS\nfrom flask_talisman import Talisman\n\napp = Flask(__name__)\nCompress(app)\nCORS(app)\nTalisman(app)\n\n# after a quick StackOverflow search\nEMAIL_REGEX = re.compile(r'\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Z|a-z]{2,7}\\b')\n\n@app.route(\"/api/v1/accounts/profile\", methods=[\"GET\", \"POST\"])\ndef v1_accounts_profile():\n    username = request.params.get(\"username\", None)\n    if not username:\n        return 400, json.dumps({\"error\": \"MISSING_ARG\", \"message\": \"The `username` argument is missing from the request\"})\n    password = request.params.get(\"password\", None)\n    if not password:\n        return 400, json.dumps({\"error\": \"MISSING_ARG\", \"message\": \"The `password` argument is missing from the request\"})\n\n    [...]\n    # ...password validation and all...\n\n    if str(request.method).upper() == \"POST\":\n        email = request.params.get(\"email\", None)\n        if email and not EMAIL_REGEX.fullmatch(email):\n            return 400, json.dumps({\"error\": \"WRONG_EMAIL\", \"message\": \"The `email` argument doesn't seem to be a valid email address\"})\n        [...]\n        return 200, json.dumps({\"error\": None, \"message\": \"Account successfully created\"})\n\n    return 200, json.dumps({\"error\": None, \"message\": \"Welcome back!\"})\n```\n\n```markdown\n<!-- my_project/docs/accounts.md -->\n\n# Accounts\n\nThis file documents the correct way of using the accounts management endpoints for my project.\n\n## v1/accounts\n\nHere is an explanation...\n```\n\n#### After\n\n```python\n# my_project/api/v1/accounts.py\n\nimport re\nfrom nasse import Nasse, Endpoint, Param, Login\nfrom nasse.utils.types import Email, LimitedString\n\napp = Nasse()\n\nclass Username(LimitedString):\n    LIMIT = 200 # only allowing 200 characters\n\nclass Password(LimitedString):\n    LIMIT = 100\n    REGEX = re.compile(r\"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$\")\n    THROW = True\n\nACCOUNTS_MANAGEMENT = Endpoint(category=\"Accounts Management\", login=Login(required=True))\n\n@app.route(Endpoint(\n    endpoint=ACCOUNTS_MANAGEMENT, # this will take ACCOUNTS_MANAGEMENT as the base\n    methods=[\"GET\", \"POST\"],\n    login=Login(no_login=True),\n    params=[\n        Param(\"username\", {\n            \"GET\": \"The username of the user to check the authentication\",\n            \"POST\": \"A new username\"\n        }, type=Username),\n        Param(\"email\", \"The user's email address\", methods=\"POST\", required=False, type=Email),\n        Param(\"password\", \"The user's password\", type=Password),\n    ]\n))\ndef profile(method: str, username: str, password: str, email: str = None): # all of this comes from the request params and are type safe/validated\n    if method == \"POST\":\n        return 200, \"Account created successfully\"\n    return 200, \"Welcome back\"\n\n# This will actually generate all of the docs for you !\napp.make_docs()\napp.run()\n```\n\n> **Note**  \n> Tip: You can also use `nasse my_project/api/v1/accounts.py` to run without calling `app.run()`!\n\nBut it could even look like this:\n\n```python\n# my_project/api/v1/accounts.py\n\nimport re\nfrom nasse import Nasse, Endpoint, Login\nfrom nasse.utils.types import Email, LimitedString\n\napp = Nasse()\n\nclass Username(LimitedString):\n    LIMIT = 200 # only allowing 200 characters\n\nclass Password(LimitedString):\n    LIMIT = 100\n    REGEX = re.compile(r\"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$\")\n    THROW = True\n\n@app.route(category=\"Accounts Management\", methods=[\"GET\", \"POST\"], login=Login(no_login=True))\ndef profile(method: str, username: Username, password: Password, email: Email = None):\n    if method == \"POST\":\n        return 200, \"Account created successfully\"\n    return 200, \"Welcome back\"\n\napp.make_docs()\napp.run()\n```\n\n## Usage\n\n### Creating a new app\n\nCreating a new app is dead simple.\n\nJust import the Nasse object and create a new instance of it\n\n```python\n>>> from nasse import Nasse\n>>> app = Nasse()\n```\n\nThis is the bare minimum, but you should of course configure it.\n\nYou should at least give it a name and configure the CORS domains.\n\n```python\n>>> app = Nasse(\"My App\", cors=\"https://myapp.com\")\n```\n\nLots of things will be initialized with their default configuration.\n\nIf you want to customize them, you might want to take a look at the `nasse.config.NasseConfig` object, which has all the Nasse configuration.\n\n> **Note**  \n> Some strings support the [Nasse string formatting](#string-formatting).\n> For example: `NasseConfig.server_header` supports it, and the default value is : `nasse/{version} ({name})`. The `{version}` and `{name}` parts will be filled automatically.\n\nThe `account_management` parameter should be of instance `models.AccountManagement` and is used to manage the users authentications.\n\n> Example\n\n```python\n>>> from yuno.security.token import TokenManagement\n>>> from account_management import get_account_by_id\n>>> from nasse.models import AccountManagement\n>>> tm = TokenManagement()\n>>> class NewAccountManagement(AccountManagement):\n...     def retrieve_type(self, account):\n...         return \"admin\" if account.id == \"123abc\" else \"user\"\n...     def retrieve_account(self, token: str):\n...         return get_account_by_id(tm.decode(token))\n...     def verify_token(self, token: str):\n...         try:\n...             tm.decode(token)\n...             return True\n...         except Exception:\n...             return False\n...\n>>> app = Nasse(account_management=NewAccountManagement())\n```\n\nYou can also specify specific Flask parameters using the `flask_options` parameter if needed.\n\n### Flask integration\n\nNasse being built on top of Flask, it is fully compatible with its ecosystem.\n\nAs said before, lots of Flask settings are available and exposed to you.\n\n#### Flask Configuration\n\nYou can configure the Flask app using the `flask_options` parameter when instantiating a new Nasse instance.\n\nBut you can also use the `Nasse.flask` attribute, which exposes the underlying Flask app to use your favorite plugins !\n\n##### Example\n\nIf for whatever reason you need to add a Flask plugin :\n\n```python\nfrom nasse import Nasse\nfrom flask_cool_plugin_yay import CoolPlugin\n\napp = Nasse()\nCoolPlugin(app.flask)\n```\n\nor if a service expect a flask app, you can trick it to expose the Flask app :\n\n```python\nfrom nasse import Nasse\n\nnasse_app = Nasse()\napp = nasse_app.flask # this is the Flask app\n```\n\n#### In the routes\n\nMost of your Flask compatible code should probably already be compatible with Nasse.\n\nFor example, the `route` and `methods` parts of the `app.route` function work the same way as Flask.\n\n##### Example\n\nWith ***Flask***\n\nThis is a very basic way of using Flask.\n\n```python\nfrom flask import Flask, request\napp = Flask(__name__)\n\n@app.route(\"/hello\", methods=[\"GET\", \"POST\"])\ndef hello():\n    return 200, \"Hello {}\".format(request.params.get(\"name\", \"world\"))\n```\n\nWith ***Nasse***\n\nWell this already works with Nasse !\n\n```python\nfrom nasse import Nasse, request\napp = Nasse(__name__)\n\n@app.route(\"/hello\", methods=[\"GET\", \"POST\"])\ndef hello():\n    return 200, \"Hello {}\".format(request.params.get(\"name\", \"world\"))\n```\n\nBut can also be changed like this :\n\n```python\nfrom nasse import Nasse, Param\napp = Nasse()\n\n@app.route(methods=[\"GET\", \"POST\"], params=Param(\"name\", required=False))\ndef hello(name: str = \"World\"):\n    return 200, \"Hello {}\".format(name)\n```\n\n### Registering new endpoints\n\nYou can register new endpoints using the `route` decorator, just like Flask!\n\n```python\n>>> @app.route(\"/hello\")\n>>> def hello():\n...     return \"Hello World!\"\n```\n\nBut did you know that this worked too?\n\n```python\n>>> @app.route()\n>>> def hello():\n...     return \"Hello World!\"\n```\n\nWhere's the `\"/hello\"` part?\n\n> If you don't specify it, it will be automatically generated from the function name.\n\nYou can follow a specific syntax for your functions name to create rich routes:\n\n- To create a hyphen \"-\", use an upper case letter, kinda like when you use *camelCase*.\n\n> `def myRoute()` \u21d2 /my-route\n\n- To create a new slash \"/\", use an underscore \"_\".\n\n> `def my_route()` \u21d2 /my/route\n\n- To create a new dynamic parameter, use a double underscore \"__\".\n\n> `def my__route__(route)` \u21d2 /my/\\<route>/\n\n- You can mix everything up as you wish.\n\n> `def my_helloWorld_route__name__(name)` \u21d2 /my/hello-world/route/\\<name>/\n\nAlso, the directory the function is in will be used to determine the route, this behavior can be changed with the `base_dir` parameter of the endpoint.\n\nYou can then use parameters to configure and document the endpoint.\n\n### Documenting your endpoints\n\nYou can configure the endpoint by passing it a `nasse.models.Endpoint` instance.\n\nEverything is meant to be reusable to write less and more readable code.\n\nFor example, you could define a basic and global endpoint configuration for all your endpoints at the top level.\n\nThen configure a general endpoint configuration for the endpoint file.\n\nAnd then make specific tweaking for each endpoint.\n\nTo inherit the configuration from another endpoint, you just need to pass the endpoint to the `endpoint` parameter of the new `Endpoint`.\n\n```python\n>>> from nasse.models import Endpoint\n>>> from config import BASE_ENDPOINT\n>>> from account_management import all_accounts\n>>> ACCOUNT_ENDPOINTS = Endpoint(\n    endpoint=BASE_ENDPOINT,\n    category=\"Account Management\",\n)\n>>> @app.route(\"/accounts\", endpoint=Endpoint(\n    endpoint=ACCOUNT_ENDPOINTS,\n    name=\"Accounts\",\n    description=\"Get all of the accounts\"\n))\n>>> def accounts():\n...     return all_accounts()\n```\n\nBut did you know that defining your functions the right way (giving a good name, type-hinting them and adding *doc-strings*) would already give Nasse enough information to build a nicely documented endpoint.\n\nFor example\n\n```python\n>>> from nasse import Parameter\n>>> @app.route(\n        path=\"/accounts\",\n        name=\"accounts_endpoint\",\n        category=\"test\",\n        parameters=[Parameter(\"username\"), Parameter(\"limit\", type=int, required=False)],\n        description=\"This returns all accounts\"\n    )\n... def accounts_endpoint(username: str, limit=100):\n...     return get_accounts(username)\n```\n\nCould be rewritten as:\n\n```python\n>>> @app.route\n... def accounts(username: str, limit: int = 100):\n...     \"\"\"This returns all accounts\"\"\"\n...     return get_accounts()\n```\n\nThis is the most natural way of writing your endpoints, almost as if your function never leaved Python.\n\nAnd by using the [`miko`](https://github.com/Animenosekai/miko) documentation style, you can even add descriptions to your parameters:\n\n```python\n>>> @app.route\n... def accounts(username: str, limit: int = 100):\n...     \"\"\"\n...     This returns all accounts\n...\n...     Parameters\n...     ----------\n...     limit: int\n...         An upper boundary for the number of accounts to return\n...     \"\"\"\n...     return get_accounts()\n```\n\n> **Note**  \n> The name of the endpoint will be the name of the function and its category will be the name of the file you defined the function in.\n>\n> We understand that it is not required to list all parameters in the doc-string.\n\nNote that Nasse will automatically detect the different dynamic parts of the path:\n\n```python\n>>> @app.route\n... def hello__someone__(someone: str):\n...     return f\"Hello {someone}\"\n...\n>>> @app.route\n... def repeat__msg__(msg: str, number: int = 10):\n...     \"\"\"\n...     Repeats the given element `number` times\n...     \n...     Parameters\n...     ----------\n...     msg: str\n...         The element to repeat\n...     number\n...         The number of times to repeat it\n...     \"\"\"\n...     return [msg] * number\n```\n\nYou can also specify the return value from within the function definition:\n\n```python\n>>> from nasse import Nasse, Response, Return\n>>> app = Nasse()\n>>>\n>>> # Basic example\n>>> @app.route\n... def hello(username: str = \"someone\") -> Response[Return(\"hello\", example=\"someone\")]:\n... \"\"\"A hello world\"\"\"\n... return Response({\"hello\": username})\n...\n>>> # A bit more complex\n>>> @app.route\n... def hello(method: str, username: str = \"someone\") -> Response[{\"GET\": Return(\"hello\"), \"POST\": Return(\"hi\")}]:\n... \"\"\"A hello world\"\"\"\n... if method == \"POST\":\n...     return Response({\"hi\": username})\n... return Response({\"hello\": username})\n```\n\nYou can then use the same syntax as when documenting `returning` in the `Endpoint` class.\n\nRefer to [Return](#return) for the `Return` class explanation.\n\n> **Note**  \n> Type checkers won't complain because of the use of `Response`, which technically your function returns.\n\nIt is very important to rightfully document your endpoints because it will be used to process the requests and validate the inputs.\n\n### Documentation Values\n\n#### Return\n\nThe `models.Return` model is used to document what the endpoint returns.\n\nHere are its parameters:\n\n- `name`: The name of the field\n- `example`: An example of returned value\n- `description`: A description of the returned value\n- `type`: The type of returned value\n- `children`: The different children values\n- `nullable`: If this value is can be `null` (`None`)\n\n#### Login\n\nThe `models.Login` model is used to document how a user can authenticate its request with this endpoint.\n\nHere are its parameters:\n\n- `required`: If the login is required or not. The user may still authenticate.\n- `types`: Accepted types of accounts\n- `skip`: Whether to completely skip or not the authentication step\n- `skip_fetch`: Whether to skip fetching the account or not. This effectively only checks if the provided token is correct or not.\n\n#### UserSent\n\nThe `models.UserSent` model is used to document what the user can send to the endpoint.\n\nHere are its parameters:\n\n- `name`: The name of the value sent\n- `description`: A description of the value sent\n- `required`: If the value is required or not\n- `type`: The type of value sent by the user\n\n> **Note**  \n> `models.Dynamic`, `models.Parameter`, `models.Header` and `models.Cookie` are all aliases of `models.UserSent`\n\n#### Error\n\nThe `models.Error` model is used to document what errors can be returned by the endpoint.\n\nHere are its parameters:\n\n- `name`: The name of the error\n- `description`: A description of a situation where this error might be raised\n- `code`: The status code of the response sent along this error\n\n### Context\n\nThe context values will be of the type you provided in the endpoint definition.\n\nThere are multiple ways you can access a request context.\n\nYou can import the `request` global variable from `nasse`\n\n```python\n>>> from nasse import request\n>>> request.values\n```\n\nBut a better way would be to directly ask for it inside your endpoint function parameter.\n\nYou can ask whatever you want from there.\n\n```python\n>>> @app.route()\n>>> def hello(request): # this will ask Nasse for the `request` object\n...     return request.values\n```\n\n```python\n>>> @app.route\n>>> def hello(headers): # this will ask Nasse for the request `headers`\n...     return headers\n```\n\nHere is a list of parameters you can ask for:\n\n- `app`: The current Nasse app instance\n- `endpoint`: The current Nasse endpoint\n- `request`: The current request context\n- `method`: The HTTP method of the request\n- `values`: The URL/form values of the request\n- `args`: The URL arguments of the request\n- `form`: The form values of the request\n- `headers`: The headers of the request\n- `account`: The authenticated account for the request\n- `dynamics`: The dynamic route parameters of the request\n\n***And their aliases***\n\n- `nasse`: An alias for `app`\n- `nasse_endpoint`: An alias for `endpoint`\n- `params`: An alias for `values`\n\nAny other requested parameter will be either a **dynamic route parameter** or a **URL/form parameter**.\n\n> **Note**  \n> Those request parameters can also be used to document your endpoints, please look at the [Documenting your endpoints](#documenting-your-endpoints) section for more information.\n\n### Returned Values\n\nYou can return any kind of value from your endpoint function.\n\nThere are multiple ways to return values:\n\n- Using the `response.Response` class\n\n```python\n... return Response(\n    data=data,\n    code=200,\n    headers={\n        \"X-ANISE-CACHE\": \"HIT\"\n    },\n    ...\n)\n```\n\n- Using only the data\n\n```python\n... return \"Hello World\"\n# or\n... return binary_data # of instance `bytes`\n```\n\n- Using a dictionary\n\nThe dictionary will be automatically passed to `response.Response`\n\n```python\n... return {\n    \"data\": data,\n    \"code\": 200,\n    \"headers\": {\n        \"X-ANISE-CACHE\": \"HIT\"\n    },\n    ...\n}\n```\n\nIf the dictionary can't be passed to `response.Response`, it will be treated as part of the `data` to send back.\n\n```python\n... return {\"greeting\": \"Hello World\"}\n```\n\n- Using an iterable, like a tuple\n\n```python\n... return 200, \"Hello World\"\n# or\n... return (\"Hello World\", 200)\n```\n\n> **Note**  \n> On debug mode, a set of timing header headers will automatically be returned.\n\n### Error handling\n\nEven if your application encounters an error/exception, it will be automatically caught by Nasse and correctly formatted to be safely returned to the client.\n\n> **Note**  \n> Tip: You should use the `nasse.exceptions.NasseException` class to create your own exceptions.\n> This way, you will be able to fully customize the error response.\n\nBut even with regular `Exception` exceptions, Nasse will attempt to generate an error name and a description without leaking too much information.\n\n### JSON\n\nIf the endpoint is configured as a JSON endpoint, it will be formatted using the following schema, and will have some features added.\n\n```json\n{\n    \"success\": true,\n    \"error\": null,\n    \"message\": \"\",\n    \"data\": {}\n}\n```\n\nNasse uses a custom JSON encoder to fully customize it and avoiding bugs.\n\n> **Note**  \n> Also, on debug mode, the response will have an additional `debug` field containing the debug information.\n>\n> **Note**  \n> If the `format` parameter is set to `xml` or `html` when making the request, the response will be automatically converted to an *XML* format.\n> Example: `/hello?format=xml` will produce a `XML` formatted output.\n\n### Utilities\n\nNasse is shipped with a set of utilities that you can use inside your application.\n\nThey are mostly located inside the `utils` module.\n\n#### Logging\n\nYou should use Nasse's logging system to log stuff on your console to avoid any issue with `rich`.\n\nYou can access the logging instance as a global variable :\n\n```python\nfrom nasse.utils.logging import logger\n\nlogger.log(\"Hello\")\nlogger.debug(\"Hello\")\nlogger.warn(\"Hello\")\n...\n```\n\nOr use the one on your Nasse instance :\n\n```python\nfrom nasse import Nasse\n\napp = Nasse()\napp.log(\"Hello\")\napp.logger.info(\"Hello\")\napp.logger.error(\"Hello\")\n```\n\nYou can actually decide to only include the message to the log file and not print it on the console by using the `HIDDEN` logging level :\n\n```python\nlogger.hidden(\"Hello\") # this will add the hello message to the log file but not STDOUT\n```\n\nThe logger supports [Nasse's string formatting](#string-formatting).\n\n#### String Formatting\n\nString formatting is a way of making template strings which will dynamically change its value with variables.\n\nIn python, the `format` function allows strings to use variables to create strings :\n\n```python\nname = \"world\"\n\n# are all equivalent\n\"Hello {}\".format(name)\n\"Hello {name}\".format(name=name)\nf\"Hello {name}\"\n```\n\nWith Nasse, you can use this string formatting syntax, but with default values which can be automatically filled :\n\n```python\nfrom nasse.utils import formatter\n\nformatter.format(\"Hello {name} from process {pid}\", name=\"world\")\n```\n\nMost of the time, this is used when logging stuff to the console :\n\n```python\nlogger.print(\"Hello {user} from process {pid}\", user=\"world\")\n```\n\n<!-- markdownlint-disable MD033 -->\n<details>\n    <summary>Here is a list of default variables you can use with Nasse's string formatting</summary>\n    <li>normal</li>\n    <li>grey</li>\n    <li>gray</li>\n    <li>red</li>\n    <li>green</li>\n    <li>blue</li>\n    <li>cyan</li>\n    <li>turquoise</li>\n    <li>white</li>\n    <li>yellow</li>\n    <li>purple</li>\n    <li>pink</li>\n    <li>magenta</li>\n    <li>name</li>\n    <li>app</li>\n    <li>id</li>\n    <li>host</li>\n    <li>port</li>\n    <li>debug</li>\n    <li>version</li>\n    <li>base_dir</li>\n    <li>time</li>\n    <li>caller</li>\n    <li>thread</li>\n    <li>pid</li>\n    <li>cwd</li>\n</details>\n<!-- markdownlint-enable MD033 -->\n\n### Running the server\n\nRunning the server is as easy as calling\n\n```python\napp.run()\n```\n\n> **Note**  \n> You can also use the terminal to directly run the server. Head over to [Runner](#runner) for further information.\n\nWhere `app` is your Nasse instance.\n\nYou can specify the backend you want to use to run the server using one of the already defined `nasse.servers...` objects are a custom-made one, following the `nasse.servers.ServerBackend` class.\n\nYou can here specify the host and port to run the server on.\n\nIf not specified, the host and port `127.0.0.1:5005` will be used.\n\nOn debug mode, Nasse will reload on any file change.\n\n> **Note**  \n> Tip: You can use the `include` and `exclude` parameters to specify which files to watch for.\n\n### Generate documentation\n\nWith the data you provided to the endpoints, Nasse is able to generate markdown and postman documentation for you.\n\nUse the `make_docs` method inside your application to generate the documentation.\n\n```python\n>>> app.make_docs()\n```\n\n> **Note**  \n> You can also use the terminal to generate the docs. Head over to [Docs](#docs) for further information.\n\nIt will generate the examples, usage and explanation for each endpoint, along with an index of the endpoints and a general explanation at the top.\n\nThe Postman documentation is a set of JSON files, one for each category, that you can import inside Postman to test your API.\n\nIt will create a `docs` directory in the current directory to put both documentations.\n\n#### Localization\n\nYou can now use the docs' localization feature which lets you use a different language for your docs !\n\n```python\nfrom nasse import Nasse\nfrom nasse.localization import JapaneseLocalization\n\napp = Nasse()\napp.make_docs(\"./docs/jpa\", localization=JapaneseLocalization, javascript=False)\n```\n\nHere are the built-in languages :\n\n- English\n- French\n- Japanese\n\nBut you can create your own translation by sub-classing `nasse.localization.Localization`\n\n### CLI\n\n#### Runner\n\nYou can directly run your Nasse apps using the CLI.\n\nTo do so, head over to your terminal and enter:\n\n```bash\nnasse <your_app.py>\n```\n\nThis should run the app with the default parameters.\n\nIf you want to customize the running behaviors, you can use the arguments with a `(server)` note prepended to their explanation when you run the `--help` command:\n\n```bash\n$ nasse --help\nusage: nasse [-h] [--version] [--host HOST] [--port PORT] [--server SERVER] [--watch [WATCH ...]] [--ignore [IGNORE ...]] [--debug] [--config CONFIG]\n             [input]\n\nA web server framework written on top of Flask which lets you focus on your ideas \ud83c\udf61\n\npositional arguments:\n  input                 The file or URL to use with nasse\n\noptions:\n  -h, --help            show this help message and exit\n  --version, -v         show program's version number and exit\n  --host HOST           (server) The host to bind to\n  --port PORT, -p PORT  (server) The port to bind to\n  --server SERVER, -s SERVER\n                        (server) The server to use (accepts: flask, gunicorn)\n  --watch [WATCH ...], -w [WATCH ...]\n                        (server) Files to watch changes on debug mode\n  --ignore [IGNORE ...], -i [IGNORE ...]\n                        (server) Files to ignore when watching for file changes on debug mode\n  --debug, -d           (server) To run with debug mode enabled\n  --config CONFIG, -c CONFIG\n                        (server) A configuration file for extra arguments passed to the server\n```\n\nThe `--config` argument takes in a JSON file containing the different configurations you would like to pass in to the `run` function of your `Nasse` instance.\n\n#### Docs\n\nYou can use the CLI to directly generate the docs:\n\n```bash\nnasse --make-docs <your_app>.py\n```\n\nYou can also customize the docs' generation using arguments:\n\n```bash\n$ nasse --help\nusage: nasse [-h] [--version] [--make-docs] [--language LANGUAGE]\n             [--output OUTPUT] [--docs-curl] [--docs-javascript] [--docs-python]\n             [input]\n\nA web server framework written on top of Flask which lets you focus on your ideas \ud83c\udf61\n\npositional arguments:\n  input                 The file or URL to use with nasse\n\noptions:\n  -h, --help            show this help message and exit\n  --version, -v         show program's version number and exit\n  --make-docs, -md, --docs, --generate-docs\n                        (docs) Generates the docs and exits\n  --language LANGUAGE, --localization LANGUAGE\n                        (docs) The docs language\n  --output OUTPUT, -o OUTPUT, --docs-dir OUTPUT, --docs_dir OUTPUT\n                        (docs) The directory to output the docs\n  --docs-curl           (docs) If we need to render the curl examples\n  --docs-javascript     (docs) If we need to render the javascript examples\n  --docs-python         (docs) If we need to render the python examples\n```\n\nHere are the languages you can use to generate the docs:\n\n- [`eng`](https://github.com/Animenosekai/nasse/blob/main/nasse/localization/base.py) (default)\n- [`fra`](https://github.com/Animenosekai/nasse/blob/main/nasse/localization/fra.py)\n- [`jpn`](https://github.com/Animenosekai/nasse/blob/main/nasse/localization/jpn.py)\n\n> **Note**  \n> Those codes are the name of the file the `Localization` object was created in\n\n#### HTTP App\n\nYou can also use the built-in HTTP app to test your endpoints.\n\nThis app might be familiar to those using the Postman software.\n\nTo open it, just enter\n\n```bash\nnasse\n```\n\nThis should open the app, and you should land on this page:\n\n![HTTP App \u2014 Main Page](assets/screenshots/http_main.png)\n\n##### Request\n\nThe `Request` tab is the main tab to prepare your requests.\n\nThe first two inputs lets you choose the HTTP method to use and the URL to submit the requests to.\n\nThe inputted URL can be an absolute URL or a relative path. In the latter case, the URL provided when launching the app or the one inputted in the [`Options`](#options) tab will be used to complete it.\n\n![HTTP App \u2014 Request Tab](assets/screenshots/http_request.png)\n\n##### Result\n\nWhen you submit a request, by pressing `S` or clicking the `Submit` button on the footer, the `Result` tab should open automatically.\n\nClick on it to expand it.\n\n![HTTP App \u2014 Result Tab](assets/screenshots/http_result.png)\n\nYou can here see the details of your request, or the details of the error if the request errored out.\n\n![HTTP App \u2014 Result Tab, Error](assets/screenshots/http_result_error.png)\n\n##### History\n\nThe history tab keeps a history of your requests.\n\nYou can click on any request to see its details in the [`Result`](#result) tab.\n\nThe bottom part of the history tab shows a graph with the time it took to make each request.\n\n![HTTP App \u2014 History Tab, Ping](assets/screenshots/http_history_ping.png)\n\n##### Explorer\n\nThe explorer can be used when you are testing a `Nasse` server in `DEBUG MODE` (`--debug` enabled)\n\nIf I go into [*playground/readme*](playground/readme/) and I run the server:\n\n```bash\n\ud83e\uddc3\u276f python run.py --debug\n2023/08/11, 18:55:59 | [WARNING] (yay) DEBUG MODE IS ENABLED\n2023/08/11, 18:55:59 | [INFO] (yay) \ud83c\udf8f Press Ctrl+C to quit\n2023/08/11, 18:55:59 | [INFO] (yay) \ud83c\udf0d Binding to 127.0.0.1:5005\n\ud83c\udf61 yay is running on http://127.0.0.1:5005 \u2014 0:00:04\n```\n\nI can then run the HTTP app:\n\n```bash\nnasse http://127.0.0.1:5005\n```\n\nAnd will see the different endpoints in the explorer:\n\n![HTTP App \u2014 Explorer Tab](assets/screenshots/http_explorer.png)\n\n##### Options\n\nThe options screen will let you easily configure the app:\n\n![HTTP App \u2014 Options Screen](assets/screenshots/http_options.png)\n\nAll the modifications will be stored in the current directory and be restored on the next launch.\n\n##### File browser\n\nThe file browser is used throughout the app whenever it needs a file input.\n\nYou can filter the different files and folders by starting to type your keyword.\n\n![HTTP App \u2014 File Browser Screen](assets/screenshots/http_file_browser.png)\n\nYou can then navigate using the arrows on your keyboard and select your file by pressing `ENTER`.\n\n## Deployment\n\nThis module is currently in development and might contain bugs.\n\nPlease verify and test your endpoints thoroughly before releasing anything at a production stage.\n\nFeel free to report any issue you might encounter on Nasse's GitHub page.\n\n## Contributing\n\nPull requests are welcome. For major changes, please open a discussion first to discuss what you would like to change.\n\n<!-- Please make sure to update the tests accordingly. -->\n\n## Built With\n\n- [Flask](https://github.com/pallets/flask) - Nasse is built on top of flask to provide the interface\n- [watchdog](https://github.com/gorakhargosh/watchdog) - To watch for file changes\n- [Werkzeug](https://github.com/pallets/werkzeug/) - Flask's core\n- [bleach](https://github.com/mozilla/bleach) - To sanitize inputs\n- [rich](https://github.com/Textualize/rich) - To provide good-looking console outputs\n- [textual](https://github.com/Textualize/textual) - To build the HTTP TUI\n- [Flask-Compress](https://github.com/colour-science/flask-compress) - To compress the responses\n\n## Authors\n\n- **Animenosekai** - *Initial work* - [Animenosekai](https://github.com/Animenosekai)\n\n## Acknowledgments\n\nThanks to *CherryPieWithPoison* for the Statue of the Seven model.\n> [\u00a9 2021 - 2022 CherryPieWithPoison](https://www.deviantart.com/cherrypiewithpoison/art/MMD-Genshin-Impact-Statues-of-the-Seven-DL-871695397)\n\nThe Dictionary to XML conversion is heavily inspired by dict2xml by delfick.\n> Licensed under the MIT License. More information in the header of the [xml.py](./nasse/utils/xml.py) file.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for more details\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A web server framework written on top of Flask which lets you focus on your ideas \ud83c\udf61",
    "version": "2.0.2",
    "project_urls": {
        "Documentation": "https://github.com/Animenosekai/nasse/blob/main/README.md",
        "Homepage": "https://github.com/Animenosekai/nasse",
        "Issue Tracker": "https://github.com/Animenosekai/nasse/issues",
        "Repository": "https://github.com/Animenosekai/nasse"
    },
    "split_keywords": [
        "animenosekai",
        "nasse",
        "flask",
        "framework",
        "web",
        "web-server",
        "web-framework",
        "docs",
        "documentation",
        "http",
        "requests"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a90b72d06dc0d55d812a83bccfb88bee811cbe00c90b54ece9b01ba65eeedd30",
                "md5": "82bf965e83fcc558ce7e8400122e71dc",
                "sha256": "acec9c206e6a13409ad703d7bdda19db0a9d16251a5aa117c95f6f6f036a52b9"
            },
            "downloads": -1,
            "filename": "nasse-2.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "82bf965e83fcc558ce7e8400122e71dc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 116722,
            "upload_time": "2023-08-27T00:41:26",
            "upload_time_iso_8601": "2023-08-27T00:41:26.377665Z",
            "url": "https://files.pythonhosted.org/packages/a9/0b/72d06dc0d55d812a83bccfb88bee811cbe00c90b54ece9b01ba65eeedd30/nasse-2.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3048b838d85de724785c8ff5856cf59b1ea492dda202a1353dfefd79a2aa6e86",
                "md5": "322ec7000fbf25b70990f04dbcf54e77",
                "sha256": "4fad0406967972b62903d34121b9ba0b4abb8919d622a9f7923e921df42ae595"
            },
            "downloads": -1,
            "filename": "nasse-2.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "322ec7000fbf25b70990f04dbcf54e77",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 103946,
            "upload_time": "2023-08-27T00:41:28",
            "upload_time_iso_8601": "2023-08-27T00:41:28.380408Z",
            "url": "https://files.pythonhosted.org/packages/30/48/b838d85de724785c8ff5856cf59b1ea492dda202a1353dfefd79a2aa6e86/nasse-2.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-27 00:41:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Animenosekai",
    "github_project": "nasse",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "nasse"
}
        
Elapsed time: 0.11479s