The implementation of this project aims to implement analysis from a set of data on jobs. Implementations will be embedded in a web application developed with Flask
. Writing tests for implementing data analysis.
- Use Python's interactive terminal.
- Use conditional and repeating structures.
- Use built-in Python functions.
- Use exception handling.
- Perform file manipulation.
- Write functions.
- Write tests with
Pytest
. - Write your own modules and import them into other code.
-
Clone the repository
- Use the command:
git clone git@github.com:SamuelS00Job-insights.git.
- Enter the repository folder you just cloned:
cd Job-insights
- Use the command:
-
Create the virtual environment for the project
python3 -m venv .venv && source .venv/bin/activate
-
install the dependencies
python3 -m pip install -r dev-requirements.txt
-
to view in browzer
run
flask run
go
http://localhost:5000
Python offers a resource called a virtual environment, where it allows your machine to run without conflicts, different types of projects with different versions of libraries.
- create the virtual environment
$ python3 -m venv .venv
- activate the virtual environment
$ source .venv/bin/activate
- install the dependencies in the virtual environment
$ python3 -m pip install -r dev-requirements.txt$
With your active virtual environment, the dependencies will be installed in this environment. When you need to deactivate the virtual environment, run the "deactivate" command. Remember to turn it back on when you get back to working on the project.
The dev-requirements.txt file contains all the dependencies that will be used in the project.
Legenda:
๐ธArquivos que nรฃo podem ser alterados
๐นArquivos a serem alterados para realizar os requisitos.
.
โโโ๐ธREADME.md
โโโ๐ธDockerfile
โโโ๐ธdocker-compose.yml
โโโ๐ธdev-requirements.txt
โโโ๐ธrequirements.txt
โโโ src
โ โโโ๐ธapp.py
โ โโโ๐ธbrazilian_jobs.py
โ โโโ๐ธcounter.py
โ โโโ๐นinsights.py
โ โโโ๐ธjobs.csv
โ โโโ๐นjobs.py
โ โโโ๐ธmore_insights.py
โ โโโ๐นroutes_and_views.py
โ โโโ๐ธsorting.py
โ โโโ templates
โ โโโ๐ธbase.jinja2
โ โโโ includes
โ โ โโโ๐ธnav.jinja2
โ โโโ๐ธindex.jinja2
โ โโโ๐ธjob.jinja2
โ โโโ๐ธlist_jobs.jinja2
โโโ tests
โ โโโ๐ธinit.py
โ โโโ๐ธconftest.py
โ โโโ๐ธmarker.py
โ โโโ brazilian
โ โ โโโ๐ธinit.py
โ โ โโโ๐ธconftest.py
โ โ โโโ๐ธmocks.py
โ โ โโโ๐นtest_brazilian_jobs.py
โ โโโ counter
โ โ โโโ๐ธinit.py
โ โ โโโ๐ธconftest.py
โ โ โโโ๐ธmocks.py
โ โ โโโ๐นtest_counter.py
โ โโโ mocks
โ โ โโโ๐ธjob_1.html
โ โ โโโ๐ธjobs.csv
โ โ โโโ๐ธjobs_with_industries.csv
โ โ โโโ๐ธjobs_with_salaries.csv
โ โ โโโ๐ธjobs_with_types.csv
โ โโโ sorting
โ โ โโโ๐ธinit.py
โ โ โโโ๐ธconftest.py
โ โ โโโ๐ธmocks.py
โ โ โโโ๐นtest_sorting.py
โ โโโ๐ธtest_flask_app.py
โ โโโ๐ธtest_insights.py
โ โโโ๐ธtest_jobs.py
โ โโโ๐ธtest_more_insights.py
โ โโโ๐ธtest_routes_and_views.py
run python3 -m flake8
Run pyhton3 -m pytest