-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simpler Widgets, TheProtocols, New Links, Method Not Allowed
- Loading branch information
1 parent
a270588
commit bd9c0b9
Showing
9 changed files
with
129 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
dist | ||
src/BevyFrame.egg-info | ||
build | ||
venv | ||
.venv |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# BevyFrame 0.2 ɑ | ||
|
||
Lightweight Python Web Framework | ||
Python Web Framework | ||
|
||
***Upstream Version, Do Not Use in Production*** | ||
|
||
|
@@ -13,8 +13,8 @@ LuOS | |
|
||
Other | ||
```bash | ||
$ wget https://github.com/islekcaganmert/bevyframe/releases/download/Preview/BevyFrame-0.2.0-py3-none-any.whl | ||
$ python3 -m pip install ./BevyFrame-0.2.0-py3-none-any.whl | ||
$ wget https://github.com/islekcaganmert/bevyframe/releases/download/Preview/BevyFrame-0.3.0-py3-none-any.whl | ||
$ python3 -m pip install ./BevyFrame-0.3.0-py3-none-any.whl | ||
``` | ||
## Features | ||
|
||
|
@@ -24,16 +24,16 @@ $ python3 -m pip install ./BevyFrame-0.2.0-py3-none-any.whl | |
- Built-in decentralized authentication with [TheProtocols](https://github.com/islekcaganmert/TheProtocols) | ||
- Widget based templating engine | ||
- Routing engine for dynamic paths | ||
- Decentralized db-less user data with [TheProtocols](https://github.com/islekcaganmert/TheProtocols) | ||
- Decentralized user querying with [TheProtocols](https://github.com/islekcaganmert/TheProtocols) | ||
- JSON based CSS-like styling, importable from path, URL, dictionary | ||
- JSON based CSS-like styling, importable from any path, URL, in-code | ||
- User-friendly terminal output | ||
- Built-in error handling replaceable with a single file creation (ex. `404.py`) | ||
- Easy command line interface, `% python3 -m bevyframe config.json` | ||
|
||
## Planned Features | ||
|
||
- Decentralized cloud synced user data with [TheProtocols](https://github.com/islekcaganmert/TheProtocols) | ||
- Decentralized database with [TheProtocols](https://github.com/islekcaganmert/TheProtocols) | ||
- Built-in SQL Support | ||
- Page Authorization (Blacklist / Whitelist) | ||
- Easier Socket Integration | ||
- Easier REST API Development | ||
|
@@ -49,4 +49,4 @@ $ python3 -m pip install ./BevyFrame-0.2.0-py3-none-any.whl | |
- PyPI Releases: *Soon* | ||
- Source Code: https://github.com/islekcaganmert/bevyframe | ||
- Issue Tracker: https://github.com/islekcaganmert/bevyframe/issues | ||
- Community: https://www.hereus.net/communities/bevyframe.islekcaganmert.dev | ||
- Community: [![email protected]](https://lemmy.today/c/bevyframe) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
[project] | ||
name = "BevyFrame" | ||
version = "0.2.0" | ||
description = "Lightweight Python Web Micro Framework" | ||
version = "0.3.0" | ||
description = "Python Web Framework" | ||
readme = "README.md" | ||
license = {text = "LGPL-3.0"} | ||
license = {text = "LGPL-2.1"} | ||
maintainers = [{name = "Çağan Mert İŞLEK", email = "[email protected]"}] | ||
classifiers = [ | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GPL-3.0 License", | ||
"License :: OSI Approved :: LGPL-2.1 License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
"Topic :: Internet :: WWW/HTTP :: Application", | ||
"Topic :: Software Development :: Libraries :: Application Frameworks", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [] | ||
dependencies = ["requests==2.32.3", "PyJWT==2.8.0", "TheProtocols==3.0.1"] | ||
|
||
[project.urls] | ||
Donate = "https://www.buymeacoffee.com/islekcaganmert" | ||
Documentation = "https://github.com/islekcaganmert/bevyframe/wiki" | ||
Changes = "https://github.com/islekcaganmert/bevyframe/commits/main" | ||
Changes = "https://github.com/islekcaganmert/bevyframe/commits/master" | ||
"Source Code" = "https://github.com/islekcaganmert/bevyframe" | ||
"Issue Tracker" = "https://github.com/islekcaganmert/bevyframe/issues" | ||
Chat = "https://www.hereus.net/communities/bevyframe.islekcaganmert.dev" | ||
Chat = "https://lemmy.today/c/bevyframe" | ||
|
||
[build-system] | ||
requires = ["setuptools","wheel"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import sys | ||
import json | ||
from bevyframe import * | ||
import secrets | ||
import sys | ||
|
||
config = { | ||
'host': '127.0.0.1', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.