stage-cli 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. stage/__init__.py +1 -0
  2. stage/__main__.py +8 -0
  3. stage/banner.py +32 -0
  4. stage/bootstrap/__init__.py +0 -0
  5. stage/bootstrap/openjobs.py +392 -0
  6. stage/classify/__init__.py +29 -0
  7. stage/classify/eligibility.py +115 -0
  8. stage/classify/internship.py +64 -0
  9. stage/classify/role.py +91 -0
  10. stage/classify/scope.py +47 -0
  11. stage/cli/__init__.py +0 -0
  12. stage/cli/app.py +4 -0
  13. stage/cli/commands/__init__.py +8 -0
  14. stage/cli/commands/discovery.py +294 -0
  15. stage/cli/commands/insight.py +494 -0
  16. stage/cli/commands/pipeline.py +337 -0
  17. stage/cli/commands/postings.py +473 -0
  18. stage/cli/commands/schedule.py +171 -0
  19. stage/cli/housekeeping.py +64 -0
  20. stage/cli/logfile.py +56 -0
  21. stage/cli/notify.py +170 -0
  22. stage/cli/options.py +678 -0
  23. stage/cli/render.py +1398 -0
  24. stage/cli/runlock.py +74 -0
  25. stage/cli/schedule.py +702 -0
  26. stage/cli/schedule_state.py +363 -0
  27. stage/cli/selection.py +83 -0
  28. stage/cli/serialize.py +196 -0
  29. stage/companies.py +542 -0
  30. stage/data/companies/a.yaml +1289 -0
  31. stage/data/companies/b.yaml +900 -0
  32. stage/data/companies/c.yaml +1377 -0
  33. stage/data/companies/d.yaml +497 -0
  34. stage/data/companies/e.yaml +519 -0
  35. stage/data/companies/f.yaml +454 -0
  36. stage/data/companies/g.yaml +601 -0
  37. stage/data/companies/h.yaml +446 -0
  38. stage/data/companies/i.yaml +503 -0
  39. stage/data/companies/j.yaml +138 -0
  40. stage/data/companies/k.yaml +278 -0
  41. stage/data/companies/l.yaml +402 -0
  42. stage/data/companies/m.yaml +937 -0
  43. stage/data/companies/n.yaml +549 -0
  44. stage/data/companies/o.yaml +371 -0
  45. stage/data/companies/other.yaml +58 -0
  46. stage/data/companies/p.yaml +825 -0
  47. stage/data/companies/q.yaml +121 -0
  48. stage/data/companies/r.yaml +583 -0
  49. stage/data/companies/s.yaml +1140 -0
  50. stage/data/companies/t.yaml +817 -0
  51. stage/data/companies/u.yaml +196 -0
  52. stage/data/companies/v.yaml +325 -0
  53. stage/data/companies/w.yaml +353 -0
  54. stage/data/companies/x.yaml +67 -0
  55. stage/data/companies/y.yaml +36 -0
  56. stage/data/companies/z.yaml +146 -0
  57. stage/data/fonts/DejaVuSans.LICENSE.txt +99 -0
  58. stage/data/fonts/DejaVuSans.ttf +0 -0
  59. stage/data/lexicon/company_tokens.yaml +228 -0
  60. stage/data/lexicon/eligibility.yaml +455 -0
  61. stage/data/lexicon/inclusive_suffixes.yaml +37 -0
  62. stage/data/lexicon/internship.yaml +187 -0
  63. stage/data/lexicon/language.yaml +226 -0
  64. stage/data/lexicon/locations.yaml +1159 -0
  65. stage/data/lexicon/roles.yaml +2012 -0
  66. stage/data/lexicon/terms.yaml +76 -0
  67. stage/data/lexicon/workday_facets.yaml +27 -0
  68. stage/data/seed_companies.yaml +198 -0
  69. stage/dedup/__init__.py +19 -0
  70. stage/dedup/identity.py +113 -0
  71. stage/dedup/resolve.py +97 -0
  72. stage/domain/__init__.py +244 -0
  73. stage/domain/company.py +49 -0
  74. stage/domain/coverage.py +86 -0
  75. stage/domain/custom_board.py +92 -0
  76. stage/domain/discovery.py +94 -0
  77. stage/domain/enums.py +114 -0
  78. stage/domain/events.py +204 -0
  79. stage/domain/filters.py +27 -0
  80. stage/domain/health.py +169 -0
  81. stage/domain/ids.py +48 -0
  82. stage/domain/job.py +47 -0
  83. stage/domain/matching.py +15 -0
  84. stage/domain/priority.py +34 -0
  85. stage/domain/quarantine.py +39 -0
  86. stage/domain/rate_state.py +78 -0
  87. stage/domain/retention.py +20 -0
  88. stage/domain/rotation.py +46 -0
  89. stage/domain/signals.py +12 -0
  90. stage/domain/sync_run.py +35 -0
  91. stage/domain/text.py +113 -0
  92. stage/domain/validator.py +14 -0
  93. stage/domain/visits.py +60 -0
  94. stage/domain/workday.py +38 -0
  95. stage/http/__init__.py +58 -0
  96. stage/http/breaker.py +53 -0
  97. stage/http/cache.py +44 -0
  98. stage/http/client.py +725 -0
  99. stage/http/profiles.py +101 -0
  100. stage/lexicon.py +370 -0
  101. stage/normalize/__init__.py +16 -0
  102. stage/normalize/language.py +47 -0
  103. stage/normalize/location.py +271 -0
  104. stage/normalize/terms.py +153 -0
  105. stage/normalize/urls.py +122 -0
  106. stage/paths.py +86 -0
  107. stage/py.typed +0 -0
  108. stage/services/__init__.py +0 -0
  109. stage/services/canary.py +120 -0
  110. stage/services/coverage.py +231 -0
  111. stage/services/discover.py +747 -0
  112. stage/services/export.py +274 -0
  113. stage/services/health.py +237 -0
  114. stage/services/maintenance.py +225 -0
  115. stage/services/quarantine.py +20 -0
  116. stage/services/query.py +86 -0
  117. stage/services/sync.py +1257 -0
  118. stage/sources/__init__.py +82 -0
  119. stage/sources/_text.py +79 -0
  120. stage/sources/ashby.py +93 -0
  121. stage/sources/bamboohr.py +80 -0
  122. stage/sources/base.py +225 -0
  123. stage/sources/breezy.py +90 -0
  124. stage/sources/collage.py +60 -0
  125. stage/sources/community_feeds.py +142 -0
  126. stage/sources/curated_markdown.py +289 -0
  127. stage/sources/custom_json.py +610 -0
  128. stage/sources/espresso.py +154 -0
  129. stage/sources/feed.py +44 -0
  130. stage/sources/greenhouse.py +104 -0
  131. stage/sources/jobbank.py +147 -0
  132. stage/sources/jobvite.py +133 -0
  133. stage/sources/lever.py +76 -0
  134. stage/sources/oracle_cloud.py +187 -0
  135. stage/sources/platforms.py +609 -0
  136. stage/sources/quebec_emploi.py +146 -0
  137. stage/sources/recruitee.py +96 -0
  138. stage/sources/simplify.py +110 -0
  139. stage/sources/smartrecruiters.py +216 -0
  140. stage/sources/speedyapply.py +200 -0
  141. stage/sources/themuse.py +157 -0
  142. stage/sources/workable.py +83 -0
  143. stage/sources/workday.py +524 -0
  144. stage/sources/zshah.py +99 -0
  145. stage/storage/__init__.py +29 -0
  146. stage/storage/migrations/0001_initial.sql +239 -0
  147. stage/storage/migrations/__init__.py +135 -0
  148. stage/storage/repository.py +213 -0
  149. stage/storage/search.py +28 -0
  150. stage/storage/sqlite_repo.py +1586 -0
  151. stage/storage/writer.py +249 -0
  152. stage/tui/__init__.py +0 -0
  153. stage/tui/app.py +82 -0
  154. stage/tui/help.py +26 -0
  155. stage/tui/safe.py +21 -0
  156. stage/tui/screens/__init__.py +0 -0
  157. stage/tui/screens/boards.py +186 -0
  158. stage/tui/screens/postings.py +509 -0
  159. stage/tui/screens/review.py +209 -0
  160. stage/tui/screens/splash.py +37 -0
  161. stage/tui/screens/stats.py +124 -0
  162. stage/tui/screens/sync.py +194 -0
  163. stage/tui/state.py +160 -0
  164. stage/tui/theme.tcss +205 -0
  165. stage/tui/widgets/__init__.py +0 -0
  166. stage_cli-1.0.0.dist-info/METADATA +379 -0
  167. stage_cli-1.0.0.dist-info/RECORD +170 -0
  168. stage_cli-1.0.0.dist-info/WHEEL +4 -0
  169. stage_cli-1.0.0.dist-info/entry_points.txt +2 -0
  170. stage_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,187 @@
1
+ markers:
2
+ - intern
3
+ - interns
4
+ - internship
5
+ - internships
6
+ - co-op
7
+ - coop
8
+ - co-ops
9
+ - co operative education
10
+ - cooperative work term
11
+ - co op placement
12
+ - co op internship
13
+ - co op student
14
+ - co-op student
15
+ - co-op term
16
+ - cooperative education
17
+ - work term
18
+ - industrial placement
19
+ - placement year
20
+ - year placement
21
+ - year in industry
22
+ - industrial year
23
+ - student placement
24
+ - summer analyst
25
+ - summer associate
26
+ - summer scholar
27
+ - summer intern program
28
+ - working student
29
+ - undergraduate researcher
30
+ - student researcher
31
+ - student
32
+ - students
33
+ - undergraduate student
34
+ - part time student
35
+ - graduate student
36
+ - stagiaire
37
+ - stagiaires
38
+ - stage
39
+ - stages
40
+ - stage étudiant
41
+ - étudiant stagiaire
42
+ - programme de stage
43
+ - stage coop
44
+ - stage cooperatif
45
+ - stage co op
46
+ - programme coop
47
+ - programme cooperatif
48
+ - programme d enseignement cooperatif
49
+ - programme de formation cooperative
50
+ - emploi coop
51
+ - poste coop
52
+ - etudiant coop
53
+ - etudiante coop
54
+ - stage d'été
55
+ - stage d'automne
56
+ - stage d'hiver
57
+ - contrat de professionnalisation
58
+ - alternance
59
+ - alternant
60
+ - alternante
61
+ - étudiant
62
+ - étudiante
63
+
64
+ structured_internship:
65
+ - intern
66
+ - interns
67
+ - internship
68
+ - internships
69
+ - intern co op
70
+ - co op
71
+ - coop
72
+ - co operative education
73
+ - cooperative work term
74
+ - co op placement
75
+ - co op internship
76
+ - co op student
77
+ - cooperative education
78
+ - student
79
+ - student placement
80
+ - working student
81
+ - stage
82
+ - stagiaire
83
+ - stage coop
84
+ - stage cooperatif
85
+ - stage co op
86
+ - programme coop
87
+ - programme cooperatif
88
+ - programme d enseignement cooperatif
89
+ - programme de formation cooperative
90
+ - emploi coop
91
+ - poste coop
92
+ - etudiant coop
93
+ - etudiante coop
94
+ - alternance
95
+ - alternant
96
+ - etudiant
97
+ - contrat de stage
98
+ - temporaire etudiant
99
+
100
+ blocked_bigrams:
101
+ - internal auditor
102
+ - internal audit
103
+ - internal communications
104
+ - internal controls
105
+ - internal coach
106
+ - internal tech
107
+ - internal events
108
+ - internal medicine
109
+ - internal sales
110
+ - internal it
111
+ - stage manager
112
+ - stage management
113
+ - stage lighting
114
+ - stage technician
115
+ - stage design
116
+ - on stage
117
+ - main stage
118
+ - early stage
119
+ - late stage
120
+ - growth stage
121
+ - series stage
122
+ - seed stage
123
+ - trainee manager
124
+ - manager trainee
125
+ - banker trainee
126
+ - banking associate trainee
127
+ - banking advisor trainee
128
+ - teller trainee
129
+ - customer experience trainee
130
+ - sales trainee
131
+ - management trainee
132
+ - student barista
133
+ - students welcome
134
+ - students and second
135
+ - jobs welcome
136
+ - student housing
137
+ - student loan
138
+ - student affairs
139
+ - student services
140
+ - student life
141
+ - student success
142
+ - student engagement
143
+ - new grad
144
+ - new graduate
145
+ - recent graduate
146
+ - graduate program
147
+ - graduate programme
148
+ - entry level
149
+ - full time permanent
150
+ - permanent full time
151
+ - poste permanent
152
+ - nouveau diplômé
153
+ - nouvelle diplômée
154
+ - jeune diplômé
155
+ - jeune diplômée
156
+ - diplômé récent
157
+ - diplômée récente
158
+
159
+ disqualifiers:
160
+ - manager of interns
161
+ - intern manager
162
+ - internship program manager
163
+ - internship coordinator
164
+ - mentor interns
165
+ - supervise interns
166
+
167
+ structured_excluded:
168
+ - experienced professionals
169
+ - experienced professional
170
+ - experienced hire
171
+ - experienced hires
172
+ - new graduates
173
+ - new graduate
174
+ - campus hire
175
+ - campus hires
176
+
177
+ structured_only_blocked:
178
+ - senior
179
+ - principal
180
+ - director
181
+ - head of
182
+ - vice president
183
+ - staff software engineer
184
+ - member of technical staff 2
185
+ - member of technical staff 3
186
+ - member of technical staff 4
187
+ - member of technical staff 5
@@ -0,0 +1,226 @@
1
+ french:
2
+ - de
3
+ - du
4
+ - des
5
+ - la
6
+ - le
7
+ - les
8
+ - un
9
+ - une
10
+ - et
11
+ - en
12
+ - au
13
+ - aux
14
+ - pour
15
+ - avec
16
+ - chez
17
+ - dans
18
+ - sur
19
+ - sous
20
+ - par
21
+ - vers
22
+ - notre
23
+ - votre
24
+ - nos
25
+ - vos
26
+ - ses
27
+ - leur
28
+ - leurs
29
+ - qui
30
+ - que
31
+ - dont
32
+ - ainsi
33
+ - afin
34
+ - plus
35
+ - très
36
+ - selon
37
+ - entre
38
+ - stagiaire
39
+ - stage
40
+ - étudiant
41
+ - étudiante
42
+ - développement
43
+ - développeur
44
+ - logiciel
45
+ - logiciels
46
+ - données
47
+ - informatique
48
+ - ingénieur
49
+ - ingénierie
50
+ - équipe
51
+ - entreprise
52
+ - poste
53
+ - emploi
54
+ - travail
55
+ - recherche
56
+ - conception
57
+ - concepteur
58
+ - programmeur
59
+ - analyste
60
+ - gestionnaire
61
+ - responsable
62
+ - conseiller
63
+ - directeur
64
+ - adjoint
65
+ - technicien
66
+ - été
67
+ - automne
68
+ - hiver
69
+ - printemps
70
+ - session
71
+ - année
72
+ - mois
73
+ - semaine
74
+ - francophone
75
+ - bilingue
76
+ - télétravail
77
+ - présentiel
78
+ - salaire
79
+ - candidature
80
+ - compétences
81
+ - expérience
82
+ - connaissances
83
+ - maîtrise
84
+ - baccalauréat
85
+ - collégial
86
+ - universitaire
87
+ - jeu
88
+ - jeux
89
+ - niveau
90
+ - niveaux
91
+ - sécurité
92
+ - réseau
93
+ - systèmes
94
+ - système
95
+ - architecte
96
+ - infonuagique
97
+ - cyberdéfense
98
+ - analytique
99
+ - électronique
100
+ - embarqué
101
+ - réseaux
102
+ - ia
103
+ - numérique
104
+
105
+ english:
106
+ - the
107
+ - and
108
+ - of
109
+ - for
110
+ - with
111
+ - in
112
+ - "on"
113
+ - at
114
+ - to
115
+ - a
116
+ - an
117
+ - our
118
+ - your
119
+ - their
120
+ - this
121
+ - that
122
+ - from
123
+ - by
124
+ - as
125
+ - is
126
+ - are
127
+ - will
128
+ - you
129
+ - we
130
+ - intern
131
+ - interns
132
+ - internship
133
+ - student
134
+ - engineer
135
+ - engineering
136
+ - software
137
+ - developer
138
+ - development
139
+ - analyst
140
+ - scientist
141
+ - research
142
+ - manager
143
+ - team
144
+ - summer
145
+ - fall
146
+ - winter
147
+ - spring
148
+ - security
149
+ - network
150
+ - systems
151
+ - experience
152
+ - skills
153
+ - requirements
154
+ - responsibilities
155
+ - qualifications
156
+ - opportunity
157
+ - position
158
+ - role
159
+ - year
160
+ - month
161
+ - week
162
+ - quality
163
+ - graduate
164
+ - undergraduate
165
+ - university
166
+ - college
167
+ - designer
168
+
169
+ loanwords:
170
+ - analytics
171
+ - application
172
+ - applications
173
+ - artificial
174
+ - associate
175
+ - backend
176
+ - business
177
+ - campus
178
+ - career
179
+ - careers
180
+ - cloud
181
+ - computer
182
+ - data
183
+ - database
184
+ - design
185
+ - early
186
+ - embedded
187
+ - finance
188
+ - financial
189
+ - firmware
190
+ - frontend
191
+ - full
192
+ - fullstack
193
+ - game
194
+ - games
195
+ - hardware
196
+ - hybrid
197
+ - infrastructure
198
+ - intelligence
199
+ - junior
200
+ - lead
201
+ - learning
202
+ - level
203
+ - machine
204
+ - mobile
205
+ - onsite
206
+ - operations
207
+ - part
208
+ - platform
209
+ - product
210
+ - program
211
+ - project
212
+ - quantitative
213
+ - remote
214
+ - science
215
+ - senior
216
+ - services
217
+ - solutions
218
+ - stack
219
+ - support
220
+ - technical
221
+ - technology
222
+ - test
223
+ - testing
224
+ - time
225
+ - trading
226
+ - web