williambrunos / Streaming_Software

This repository is intended to store the different implementations of a simple streaming service using Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Streaming Software

About this project

This is a project intended to implement a simple streaming software on Python using different software architectures. All the code will be included in my graduation work.

How to start virtual env

python3 -m venv ./venv

After that, initiate the python virtual environment:

.\venv\Scripts\activate

How to download dependencies

All the dependencies are installed in the requirements.txt file.

  1. Start python venv
python -m venv ./venv
.\venv\Scripts\activate
  1. Install the requirements

At the root folder of the repository, run the following command:

pip install -r requirements.txt

How to contribute

git clone https://github.com/williambrunos/Streaming_Software.git
git checkout -b <<your-branch-name>>
git commit -m "conventional commit message"
git push -u origin <<your-branch-name>>

Then, open a pull request to main branch.

About

This repository is intended to store the different implementations of a simple streaming service using Python

License:MIT License


Languages

Language:Python 100.0%