express-server


Nameexpress-server JSON
Version 0.0.6 PyPI version JSON
download
home_pagehttps://example.com/
SummaryExpress-Server is a lightweight and fast web server for Python, inspired by the simplicity of Express.js.
upload_time2024-02-01 19:49:57
maintainer
docs_urlNone
authorAvinash Tare
requires_python>=3.1
license(The MIT License) Copyright (c) 2024-2100 Avinash Tare <avinashtare.work@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords express python-express express-python express-server server-express
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Express-Server

Express-Server is a lightweight and fast web server for Python, inspired by the simplicity  of Express.js.

![images](https://camo.githubusercontent.com/f6128b6a17c28ec054b7ab67e595d39f503a0e17b116901141c05e1a1016985a/68747470733a2f2f692e636c6f756475702e636f6d2f7a6659366c4c376546612d3330303078333030302e706e67)

**Simple Syntax**
```python
from express_server import express
app = express()

def home(req,res,next):
    return res.send("Hello World")

app.get("/",home)

app.listen(3000)
```

### Installation

This is a [Python](https://python.org/) library available through the pip registry.

Before installing, download and install [python](https://www.python.org/downloads/). Python 3.1 or higher is required.

Installation is done using the pip command:
```shell
$ pip install express-server
```

#### 🛠️ **This project is currently in development! Use For Fun**

We are actively working on improving and expanding this project. While many features are functional, there may be bugs or incomplete functionality. If you encounter any issues or have suggestions, feel free to open an issue or contribute to the development.

#### Security Notice

🔒 **This project is not intended for production use, and it may not be secure.**

As a work in progress, security considerations have not been fully addressed. Avoid using this project in a production environment or with sensitive data.

#### Links
* PyPI Releases: https://pypi.org/project/express-server/
* Github Code: https://github.com/avinashtare/express-server-python

            

Raw data

            {
    "_id": null,
    "home_page": "https://example.com/",
    "name": "express-server",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.1",
    "maintainer_email": "",
    "keywords": "express,python-express,express-python,express-server,server-express",
    "author": "Avinash Tare",
    "author_email": "avinashtare.work@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/cf/4a/3d61fcbfd9e5ad546e073d247d74124bc5106b6f6b43af62fe9522a186fc/express_server-0.0.6.tar.gz",
    "platform": null,
    "description": "# Express-Server\r\n\r\nExpress-Server is a lightweight and fast web server for Python, inspired by the simplicity  of Express.js.\r\n\r\n![images](https://camo.githubusercontent.com/f6128b6a17c28ec054b7ab67e595d39f503a0e17b116901141c05e1a1016985a/68747470733a2f2f692e636c6f756475702e636f6d2f7a6659366c4c376546612d3330303078333030302e706e67)\r\n\r\n**Simple Syntax**\r\n```python\r\nfrom express_server import express\r\napp = express()\r\n\r\ndef home(req,res,next):\r\n    return res.send(\"Hello World\")\r\n\r\napp.get(\"/\",home)\r\n\r\napp.listen(3000)\r\n```\r\n\r\n### Installation\r\n\r\nThis is a [Python](https://python.org/) library available through the pip registry.\r\n\r\nBefore installing, download and install [python](https://www.python.org/downloads/). Python 3.1 or higher is required.\r\n\r\nInstallation is done using the pip command:\r\n```shell\r\n$ pip install express-server\r\n```\r\n\r\n#### \ud83d\udee0\ufe0f **This project is currently in development! Use For Fun**\r\n\r\nWe are actively working on improving and expanding this project. While many features are functional, there may be bugs or incomplete functionality. If you encounter any issues or have suggestions, feel free to open an issue or contribute to the development.\r\n\r\n#### Security Notice\r\n\r\n\ud83d\udd12 **This project is not intended for production use, and it may not be secure.**\r\n\r\nAs a work in progress, security considerations have not been fully addressed. Avoid using this project in a production environment or with sensitive data.\r\n\r\n#### Links\r\n* PyPI Releases: https://pypi.org/project/express-server/\r\n* Github Code: https://github.com/avinashtare/express-server-python\r\n",
    "bugtrack_url": null,
    "license": "(The MIT License)  Copyright (c) 2024-2100 Avinash Tare <avinashtare.work@gmail.com>  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Express-Server is a lightweight and fast web server for Python, inspired by the simplicity of Express.js.",
    "version": "0.0.6",
    "project_urls": {
        "Documentation": "https://example.com/",
        "Homepage": "https://example.com/",
        "Source": "https://github.com/avinashtare/express-server-python"
    },
    "split_keywords": [
        "express",
        "python-express",
        "express-python",
        "express-server",
        "server-express"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8102fa41a2c279154b7393099dad8bd73b46ddcd93e582c0871304e9cb8f44f4",
                "md5": "6138d9c4d0029f1cc53df7eb85ccc1bb",
                "sha256": "4fdc619b70eec2e6288a538d8035f9fcef358096eaa652ad80e8d39250c00039"
            },
            "downloads": -1,
            "filename": "express_server-0.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6138d9c4d0029f1cc53df7eb85ccc1bb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.1",
            "size": 63126,
            "upload_time": "2024-02-01T19:49:56",
            "upload_time_iso_8601": "2024-02-01T19:49:56.201323Z",
            "url": "https://files.pythonhosted.org/packages/81/02/fa41a2c279154b7393099dad8bd73b46ddcd93e582c0871304e9cb8f44f4/express_server-0.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf4a3d61fcbfd9e5ad546e073d247d74124bc5106b6f6b43af62fe9522a186fc",
                "md5": "a751b37b2ce7335f41b79a5497effc2e",
                "sha256": "2d7bfc79a965a6761972552054c234bf3dc39cc8ebdde4e8aebfde6e17ad5007"
            },
            "downloads": -1,
            "filename": "express_server-0.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "a751b37b2ce7335f41b79a5497effc2e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.1",
            "size": 50526,
            "upload_time": "2024-02-01T19:49:57",
            "upload_time_iso_8601": "2024-02-01T19:49:57.491913Z",
            "url": "https://files.pythonhosted.org/packages/cf/4a/3d61fcbfd9e5ad546e073d247d74124bc5106b6f6b43af62fe9522a186fc/express_server-0.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-01 19:49:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "avinashtare",
    "github_project": "express-server-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "express-server"
}
        
Elapsed time: 0.17703s