Metadata-Version: 2.1
Name: plserver
Version: 1.0.0
Summary: Python Live Server - For instant render on broswer while editing html, css, js.
Home-page: https://github.com/o-opeyemi/plserver
Author: Opeyemi Ogunsanya
Author-email: ogunsanyaopeyemi4@gmail.com
License: MIT
Project-URL: Homepage, https://github.com/o-opeyemi/plserver
Project-URL: Tracker, https://github.com/o-opeyemi/plserver/issues
Keywords: plserver,Python Live Server
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (==3.8.4)
Requires-Dist: aiosignal (==1.3.1)
Requires-Dist: async-timeout (==4.0.2)
Requires-Dist: attrs (==22.2.0)
Requires-Dist: certifi (==2022.12.7)
Requires-Dist: charset-normalizer (==3.1.0)
Requires-Dist: frozenlist (==1.3.3)
Requires-Dist: idna (==3.4)
Requires-Dist: multidict (==6.0.4)
Requires-Dist: urllib3 (==1.26.15)
Requires-Dist: yarl (==1.8.2)

# Python Live Server

This repo contains an open source project aimed at helping front end developers.

## Basic FUnctionality

Python live server helps developer working on frontend to auto reload browser on save. This package is best used with vscode auto save functionality.

## Getting Started
Install python live server by typing the following command into the terminal.
```python
python3 -m pip install plserver
```

Start the server the the folder to be used by typing...
```python
python3 -m plserver 
```
Can also be called in a python script
```python
from plserver.server import main 
main()
```
## Requirements 

+ aiohttp

## LISENSE

This repo is covered under [The MIT Lisense](LISENSE)

## Source Code 
The latest version is avaliable in a Github repository: [http://github.com/o-opeyemi/plserver](http://github.com/o-opeyemi/plserver)
