Metadata-Version: 2.1
Name: appchen
Version: 0.3.0
Summary: A client/server web framework based an Python and modern JavaScript.
Home-page: https://github.com/decatur/app-chen
License: MIT
Author: Wolfgang Kühn
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: flask (>=1.1,<2.0)
Requires-Dist: pymongo (>=3.10,<4.0)
Requires-Dist: requests (>=2.23.0,<3.0.0)
Requires-Dist: sseclient (>=0.0.24,<0.0.25)
Project-URL: Repository, https://github.com/decatur/app-chen
Description-Content-Type: text/markdown

# app-chen

This is a client/server web framework based an Python and modern JavaScript.
* Wraps the superb client side components codemirror and grid-chen as a Python package.
* Supports real time streaming via Server Send Events
* Supports single page applications and in-app navigation
* Supports on-the-fly web parts
* Depends on Flask and MongoDB only
* Uses es6 modules and plain vanilla JavaScript

# Setup
 
## Option A: Clone app-chen

````shell script
git clone https://github.com/decatur/app-chen.git
cd app-chen/
python -m venv ./venv
source venv/Scripts/activate
pip install -r requirements.txt
 ````

## Option B: Install into Existing Project

````shell script
pip install git+https://github.com/decatur/app-chen.git
pip install appchen
 ````

# Run Demo Web Server

````shell script
/c/tools/mongodb/bin/mongod --port 27017 --dbpath /c/data/db
python -m appchen.web_demo.run_server --mongoport=27017 --httpport=8080
 ````

You may now navigate to http://localhost:8080 with Chrome or Firefox.


# Run Demo Python Client

````shell script
python -m appchen.web_demo.client --httpport=8080
````

# Build

````shell script
poetry build
````

# Publishing to PyPI

````shell script
poetry config repositories.test_pypi https://test.pypi.org/legacy/
poetry config http-basic.test_pypi user password
poetry config http-basic.pypi user password

poetry publish -r test_pypi
````

