https://github.com/bedus-creation/larapy
A python implementation of laravel framework for machine learning, AI, datascience and data intensive work.
https://github.com/bedus-creation/larapy
Last synced: about 1 year ago
JSON representation
A python implementation of laravel framework for machine learning, AI, datascience and data intensive work.
- Host: GitHub
- URL: https://github.com/bedus-creation/larapy
- Owner: bedus-creation
- Created: 2019-10-16T07:05:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T22:48:57.000Z (over 3 years ago)
- Last Synced: 2025-03-17T11:50:28.279Z (over 1 year ago)
- Language: JavaScript
- Size: 757 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# LaraPy
A python implementation of laravel framework for machine learning, AI, datascience and data intensive work.
### Features
* **MVC** Framework
* **Routing**
* **jinja 2** templating engine.
# Installation
Download project directly from github repository. Clone it and remove the origin (Optional).
```
git clone git@github.com:bedus-creation/LaraPy.git project_name
cd project_name
git remote remove origin
```
### Serve app
```
python serve
```
### Testing
```
python -m pytest
# With out Network
python -m pytest -m "not network"
```