No project description provided
Project description
Webwithpy is a free to use fullstack web framework mainly focussed on performance and ease of use. The goal of webwithpy is to have an easy-to-use web framework whilst still maintaining high performance.
A clear example of the use of webwithpy:
from webwithpy import run_server
from webwithpy.routing import GET
from webwithpy.orm import DB, Table, Field
db = DB('databases/db.sqlite')
class User(Table):
table_name = "user"
name = Field("string")
email = Field("string")
profile_picture = Field("image")
@GET('/')
def view_users():
# user logic goes here
return (db.user.id >= 0).select()
if __name__ == "__main__":
# all tables that are defined before this statement will be initialized
db.create_tables()
# run the server when you're done creating views and databases
run_server()
Documentation
for more detailed information about what the framework can do please goto: webwithpy docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file webwithpy-0.7.5.3.tar.gz.
File metadata
- Download URL: webwithpy-0.7.5.3.tar.gz
- Upload date:
- Size: 28.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.1 CPython/3.10.12 Linux/6.5.0-27-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57dc00901f9938dc8945dc1fd4e27920b78b6e6304cc535050398547d8337b45
|
|
| MD5 |
b7e6385f67c75bbf5d1cf57bc291e93c
|
|
| BLAKE2b-256 |
049a85dbf611f34656b299dc592995d1f9cc20d7177eb806b347be24d3b2854c
|
File details
Details for the file webwithpy-0.7.5.3-py3-none-any.whl.
File metadata
- Download URL: webwithpy-0.7.5.3-py3-none-any.whl
- Upload date:
- Size: 43.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.1 CPython/3.10.12 Linux/6.5.0-27-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c3bb7cd78006c324b74b973958f75b749db153b561948711bfe1a50fbe965e4
|
|
| MD5 |
bd9e18ab3f8ad0cc5172c6f19c026fe6
|
|
| BLAKE2b-256 |
1d39443278499cbea75f15371dd71728ea7002d3108718c2b0d72bcd6286c95c
|