-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
156 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from enum import Enum | ||
|
||
|
||
class WorkArea(Enum, str): | ||
TECNOLOGIA = "Tecnologia" | ||
SAUDE = "Saúde" | ||
FINANCEIRO = "Financeiro" | ||
EDUCACAO = "Educação" | ||
VAREJO = "Varejo" | ||
ENERGIA = "Energia" | ||
JORNALISMO = "Jornalismo" | ||
OUTRA = "Outra" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] | ||
|
||
|
||
class WorkRole(Enum, str): | ||
CEO_DIRETOR = "CEO/Diretor(a)" | ||
GERENTE = "Gerente" | ||
COORDENADOR = "Coordenador(a)" | ||
ANALISTA = "Analista" | ||
CONSULTOR = "Consultor(a)" | ||
ESPECIALISTA = "Especialista" | ||
ASSISTENTE = "Assistente" | ||
ESTAGIARIO = "Estagiário(a)" | ||
ESTUDANTE = "Estudante" | ||
PROFESSOR_PESQUISADOR = "Professor(a)/Pesquisador(a)" | ||
FREELANCER = "Freelancer" | ||
EMPREENDEDOR = "Empreendedor(a)" | ||
OUTRO = "Outro" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] | ||
|
||
|
||
class WorkSize(Enum, str): | ||
PEQUENA_1_10 = "1-10 funcionários" | ||
PEQUENA_11_50 = "11-50 funcionários" | ||
MEDIA_51_200 = "51-200 funcionários" | ||
MEDIA_201_500 = "201-500 funcionários" | ||
GRANDE_MAIS_500 = "Mais de 500 funcionários" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] | ||
|
||
|
||
class WorkDataTool(Enum, str): | ||
SQL = "SQL" | ||
PYTHON = "Python" | ||
R = "R" | ||
STATA = "Stata" | ||
EXCEL = "Excel" | ||
NONE = "Nenhuma" | ||
OTHER = "Outra" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] | ||
|
||
|
||
class WorkGoal(Enum, str): | ||
MARKET_ANALYSIS = "Análise de mercado" | ||
COMPETITOR_MONITORING = "Monitoramento de concorrência" | ||
ACADEMIC_RESEARCH = "Pesquisa acadêmica" | ||
RISK_MANAGEMENT = "Gestão de riscos" | ||
PRODUCT_DEVELOPMENT = "Desenvolvimento de produto" | ||
COMPLIANCE_REGULATORY = "Compliance e regulatório" | ||
PUBLIC_POLICY_ANALYSIS = "Análise de políticas públicas" | ||
OTHER = "Outro" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] | ||
|
||
|
||
class DiscoveryMethod(Enum, str): | ||
SOCIAL_MEDIA = "Redes sociais" | ||
REFERRAL = "Indicação" | ||
ONLINE_SEARCH = "Pesquisa online" | ||
EVENTS = "Eventos" | ||
ADVERTISING = "Publicidade" | ||
OTHER = "Outros" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] | ||
|
||
|
||
class AvailableForResearch(Enum, str): | ||
YES = "Sim" | ||
NO = "Não" | ||
|
||
@classmethod | ||
def as_choices(cls): | ||
return [(i.name, i.value) for i in cls] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters