Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bisohns/pipelining-pycon-talk
A talk on `End to End Workflows` presented at Pycon 2019
https://github.com/bisohns/pipelining-pycon-talk
Last synced: 28 days ago
JSON representation
A talk on `End to End Workflows` presented at Pycon 2019
- Host: GitHub
- URL: https://github.com/bisohns/pipelining-pycon-talk
- Owner: bisohns
- Created: 2019-10-28T21:29:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-31T12:48:03.000Z (about 5 years ago)
- Last Synced: 2024-11-05T23:49:22.903Z (about 2 months ago)
- Language: Python
- Size: 767 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pipelining-pycon-talk
This repo contains the source code of the demos of the talk on `End to End Workflows` presented at Pycon Nigeria 2019
View the [Powerpoint presentation](https://drive.google.com/open?id=17-w5oIWQ-O4aVWivOGecywH2eb3IHn9jx-l5fxwnR6g)[![Build Status](https://travis-ci.com/bisoncorps/pipelining-pycon-talk.svg?branch=master)](https://travis-ci.com/bisoncorps/pipelining-pycon-talk)
[![Heroku App Status](http://heroku-shields.herokuapp.com/pycon-2019)](https://pycon-2019.herokuapp.com)
[![PyPI version](https://badge.fury.io/py/pycon.svg)](https://badge.fury.io/py/pycon)
## Installation
Installation can be done from [Test PyPi](https://test.pypi.org)
```bash
pip install --index-url https://test.pypi.org/simple/ pycon-ng2019
```
### Development
- Install Development dependencies. Update the settings in the [manage.py](https://github.com/bisoncorps/pipelining-pycon-talk/blob/a3067872d7c8bb4f9d5f62273a71946691d69131/manage.py#L8) file to `django.settings.common````bash
# install Dev dependencies
pip install -r dev-requirements.txt
```- Start Server
```bash
python manage.py runserver
```## Usage
### For cli demo
```python
import pycon
pycon.demo()
```
![CLI Image](assets/cli.gif)### Django App
- Add `pycon` to `installed_apps`
- Add `path('', include('pycon.urls'))` to urls file![Django Image](assets/django.gif)
Pycon-NG page should be available in http://localhost:8000/pycon