An open API service indexing awesome lists of open source software.

https://github.com/magnitopic/orbe

Proyects made with Python using Flask
https://github.com/magnitopic/orbe

api flask python web

Last synced: 2 months ago
JSON representation

Proyects made with Python using Flask

Awesome Lists containing this project

README

          

# ORBE
Proyects made with Python using Flask.

Deployed in:
https://magnitopic.pythonanywhere.com

![Orbe](./static/imgs/crystalball.jpeg)

# Virtual env
Install the virtualenv package and create it. Make sure your in the proyect folder.
```bash
pip install virtualenv
virtualenv orbe
```
## Activate VirtualEnv on Linux
```bash
source orbe/bin/activate
```
## Activate VirtualEnv on Windows
```powershell
orbe\Scripts\activate
```
And to deactivate it on any operating system.
```bash
deactivate
```
# Install dependencies
```bash
pip install -r requirements.txt
```
# Run
```bash
python app.py
```