https://github.com/szymon-budziak/codebrainers
CodeBrainers teaching materials.
https://github.com/szymon-budziak/codebrainers
data-science django django-rest-framework python teaching teaching-materials
Last synced: about 2 months ago
JSON representation
CodeBrainers teaching materials.
- Host: GitHub
- URL: https://github.com/szymon-budziak/codebrainers
- Owner: Szymon-Budziak
- License: mit
- Created: 2022-08-30T12:07:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-23T14:08:56.000Z (over 1 year ago)
- Last Synced: 2025-02-01T02:52:01.977Z (3 months ago)
- Topics: data-science, django, django-rest-framework, python, teaching, teaching-materials
- Language: Jupyter Notebook
- Homepage:
- Size: 24.2 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeBrainers
CodeBrainers teaching materials.
# Table of contents
1. [Django](https://github.com/Szymon-Budziak/CodeBrainers/tree/main/Django):
- [Group 1](https://github.com/Szymon-Budziak/CodeBrainers/tree/main/Django/Group_1)
- [Group 2](https://github.com/Szymon-Budziak/CodeBrainers/tree/main/Django/Group_2)
- [Group 3](https://github.com/Szymon-Budziak/CodeBrainers/tree/main/Django/Group_3)
2. [Data science](https://github.com/Szymon-Budziak/CodeBrainers/tree/main/Data%20science)
- [Matplotlib](https://github.com/Szymon-Budziak/CodeBrainers/blob/main/Data%20science/Matplotlib.ipynb)To start with any of the available materials, do the following:
__1. In your terminal create a new folder where you would like to store the repository:__
```bash
mkdir Django_project
cd Django_project
```__2. Clone repository by typing:__
```bash
git clone https://github.com/Szymon-Budziak/CodeBrainers.git
```__3. Create new virtual environment and activate it:__
- Linux/macOS machine:
```
python -m venv venv
source venv/bin/activate
```(if python is not working try using *python3*)
- Windows machine:
```
py -m venv venv
venv\Scripts\activate
```this will create new activated virtual environment with `venv` name.
__5. Enter either Django course and specific group Data science and install required packages:__
```bash
pip install -r requirements.txt
```