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
Binary file
@@ -0,0 +1,228 @@
1
+ generic:
2
+ - air
3
+ - alliance
4
+ - american
5
+ - analog
6
+ - apex
7
+ - atlantic
8
+ - auto
9
+ - bank
10
+ - blue
11
+ - canadian
12
+ - capital
13
+ - central
14
+ - city
15
+ - cloud
16
+ - core
17
+ - data
18
+ - digital
19
+ - eastern
20
+ - energy
21
+ - finance
22
+ - financial
23
+ - first
24
+ - games
25
+ - gaming
26
+ - general
27
+ - global
28
+ - green
29
+ - group
30
+ - health
31
+ - holdings
32
+ - insurance
33
+ - interactive
34
+ - international
35
+ - labs
36
+ - life
37
+ - media
38
+ - metro
39
+ - motor
40
+ - motors
41
+ - national
42
+ - new
43
+ - next
44
+ - north
45
+ - northern
46
+ - one
47
+ - open
48
+ - pacific
49
+ - power
50
+ - premier
51
+ - prime
52
+ - red
53
+ - royal
54
+ - security
55
+ - software
56
+ - solutions
57
+ - standard
58
+ - star
59
+ - studio
60
+ - studios
61
+ - summit
62
+ - sun
63
+ - systems
64
+ - tech
65
+ - technologies
66
+ - technology
67
+ - two
68
+ - united
69
+ - western
70
+ - works
71
+ - assurance
72
+ - assurances
73
+ - banque
74
+ - centrale
75
+ - communications
76
+ - compagnie
77
+ - conseil
78
+ - conseils
79
+ - construction
80
+ - développement
81
+ - énergie
82
+ - entreprise
83
+ - entreprises
84
+ - est
85
+ - financière
86
+ - financier
87
+ - fonds
88
+ - générale
89
+ - général
90
+ - gestion
91
+ - groupe
92
+ - immobilier
93
+ - industries
94
+ - informatique
95
+ - internationale
96
+ - investissements
97
+ - jeux
98
+ - laboratoires
99
+ - média
100
+ - médias
101
+ - mondiale
102
+ - nationale
103
+ - nord
104
+ - nouveau
105
+ - nouvelle
106
+ - numérique
107
+ - ouest
108
+ - placements
109
+ - première
110
+ - produits
111
+ - ressources
112
+ - réseau
113
+ - réseaux
114
+ - services
115
+ - société
116
+ - sociétés
117
+ - sud
118
+ - systèmes
119
+ - transport
120
+
121
+ legal_suffixes:
122
+ - ab
123
+ - ag
124
+ - as
125
+ - cie
126
+ - co
127
+ - corp
128
+ - corporation
129
+ - gmbh
130
+ - inc
131
+ - limited
132
+ - limitée
133
+ - llc
134
+ - ltd
135
+ - ltée
136
+ - nv
137
+ - oy
138
+ - plc
139
+ - pty
140
+ - sa
141
+ - sarl
142
+ - sas
143
+ - senc
144
+ - snc
145
+ - spa
146
+ - srl
147
+
148
+ division_qualifiers:
149
+ - advisors
150
+ - aerospace
151
+ - america
152
+ - americas
153
+ - asia
154
+ - asset
155
+ - automotive
156
+ - aviation
157
+ - bank
158
+ - banking
159
+ - canada
160
+ - capital
161
+ - cloud
162
+ - commercial
163
+ - communications
164
+ - components
165
+ - consulting
166
+ - consumer
167
+ - corporate
168
+ - defence
169
+ - defense
170
+ - devices
171
+ - digital
172
+ - electronics
173
+ - energy
174
+ - engineering
175
+ - enterprise
176
+ - enterprises
177
+ - entertainment
178
+ - europe
179
+ - finance
180
+ - financial
181
+ - games
182
+ - gaming
183
+ - global
184
+ - group
185
+ - hardware
186
+ - health
187
+ - healthcare
188
+ - holdings
189
+ - industries
190
+ - insurance
191
+ - interactive
192
+ - international
193
+ - laboratories
194
+ - labs
195
+ - logistics
196
+ - management
197
+ - manufacturing
198
+ - markets
199
+ - media
200
+ - mobile
201
+ - mobility
202
+ - montreal
203
+ - motors
204
+ - music
205
+ - network
206
+ - networks
207
+ - partners
208
+ - pictures
209
+ - quebec
210
+ - research
211
+ - retail
212
+ - robotics
213
+ - securities
214
+ - semiconductor
215
+ - semiconductors
216
+ - services
217
+ - software
218
+ - solutions
219
+ - studio
220
+ - studios
221
+ - systems
222
+ - technologies
223
+ - technology
224
+ - toronto
225
+ - usa
226
+ - ventures
227
+ - vancouver
228
+ - wealth
@@ -0,0 +1,455 @@
1
+ degree_required:
2
+ phd:
3
+ - phd required
4
+ - ph.d. required
5
+ - phd is required
6
+ - doctoral degree is required
7
+ - phd candidates only
8
+ - doctorate required
9
+ - must be enrolled in a phd
10
+ - currently pursuing a phd
11
+ - currently enrolled in a phd
12
+ - current phd studies
13
+ - current phd or msc studies
14
+ - phd or msc studies
15
+ - phd or master studies
16
+ - doctorat requis
17
+ - doctorat exige
18
+ - doctorat obligatoire
19
+ - inscrit au doctorat
20
+ masters:
21
+ - masters required
22
+ - masters is required
23
+ - master's required
24
+ - msc required
25
+ - graduate students only
26
+ - must be enrolled in a master
27
+ - currently enrolled in a master
28
+ - currently pursuing a master
29
+ - last year of a master
30
+ - final year of a master
31
+ - enrolled in your last year of a master
32
+ - graduate degree required
33
+ - maitrise requise
34
+ - maitrise exigee
35
+ - maitrise obligatoire
36
+ - inscrit a la maitrise
37
+ bachelors:
38
+ - bachelor's degree required
39
+ - bachelors degree required
40
+ - bachelor's degree is required
41
+ - must be enrolled in a bachelor
42
+ - currently pursuing a bachelor
43
+ - currently pursuing a bachelors
44
+ - currently pursuing an undergraduate
45
+ - currently pursuing bachelor
46
+ - currently enrolled in a bachelor
47
+ - currently enrolled in a bachelors
48
+ - currently enrolled in an undergraduate
49
+ - currently enrolled in bachelor
50
+ - enrolled in a bachelor
51
+ - enrolled in a bachelors
52
+ - enrolled in an undergraduate
53
+ - pursuing a bachelor
54
+ - pursuing a bachelors
55
+ - pursuing an undergraduate
56
+ - working towards a bachelor
57
+ - working toward a bachelor
58
+ - working towards bachelor
59
+ - working toward a bs
60
+ - current pursuit of a bachelor
61
+ - pursuing or have completed a bachelor
62
+ - currently pursuing a degree in
63
+ - currently pursuing an degree in
64
+ - pursuing a degree in
65
+ - pursuing an degree in
66
+ - currently pursuing a technical degree
67
+ - pursuing a technical degree
68
+ - currently enrolled in any degree
69
+ - open to undergraduate
70
+ - years of an undergraduate
71
+ - baccalaureat requis
72
+
73
+ - baccalaureat exige
74
+ - baccalaureat obligatoire
75
+ phd_required:
76
+ - phd candidates only
77
+ - phd students only
78
+ - phd only
79
+ - open only to phd
80
+ - must be enrolled in a phd
81
+ - must be enrolled in a doctoral program
82
+ - currently enrolled in a phd
83
+ - currently enrolled in a doctoral program
84
+ - currently pursuing a phd
85
+ - must be pursuing a phd
86
+ - enrolled in a phd program
87
+ - enrolled in a doctoral program
88
+ - phd required
89
+ - phd is required
90
+ - doctorate required
91
+ - doctoral degree required
92
+ - doctorat requis
93
+ - doctorat exige
94
+ - postdoc
95
+ - postdoctoral
96
+ - inscrit au doctorat
97
+ - inscrite au doctorat
98
+ - doctorat obligatoire
99
+ - inscrit e au doctorat
100
+ - etudes doctorales requises
101
+
102
+ phd_title_tokens:
103
+ - phd
104
+ - phds
105
+ - ph d
106
+ - doctoral
107
+ - postdoc
108
+ - postdoctoral
109
+ - doctorate
110
+ - doctorat
111
+ - doctorant
112
+ - doctorante
113
+ - postdoctorant
114
+ - postdoctorante
115
+ - stage doctoral
116
+ - stagiaire doctoral
117
+ - stagiaire doctorale
118
+ - etudes doctorales
119
+
120
+ degree_list_tokens:
121
+ - bachelor
122
+ - bachelors
123
+ - bachelor s
124
+ - bs
125
+ - bsc
126
+ - beng
127
+ - undergraduate
128
+ - undergrad
129
+ - master
130
+ - masters
131
+ - master s
132
+ - ms
133
+ - msc
134
+ - meng
135
+ - mba
136
+ - baccalaureat
137
+ - maitrise
138
+ - licence
139
+
140
+ work_auth_excluded:
141
+ - must be a us citizen
142
+ - u.s. citizenship is required
143
+ - us citizenship required
144
+ - must be a united states citizen
145
+ - active security clearance required
146
+ - requires an active secret clearance
147
+ - requires ts/sci
148
+ - must be authorized to work in the united states without sponsorship
149
+ - us citizenship required
150
+ - u.s. citizenship required
151
+ - us citizenship is required
152
+ - must be a us citizen or national
153
+ - applicant must be a us citizen
154
+ - eligibility requirements include us citizenship
155
+ - security clearance
156
+ - secret clearance
157
+ - secret level security clearance
158
+ - top secret clearance
159
+ - nuclear security clearance
160
+ - will not sponsor
161
+ - cannot sponsor
162
+ - unable to sponsor
163
+ - does not sponsor
164
+ - not sponsor a new applicant for employment authorization
165
+ - cannot sponsor new visas
166
+ - sponsorship is not available
167
+ - no visa sponsorship
168
+ - not eligible for visa sponsorship
169
+ - does not currently provide employment sponsorship
170
+ - does not provide employment sponsorship
171
+ - without sponsorship for an export license
172
+ - subject to export control
173
+ - export control laws
174
+ - export control regulations
175
+ - must be a us person
176
+ - must either be a us citizen
177
+ - lawful permanent resident of the united states
178
+ - citoyennete canadienne requise
179
+ - habilitation de securite requise
180
+
181
+ non_cs:
182
+ - registered nurse
183
+ - nurse practitioner
184
+ - phlebotomist
185
+ - dental hygienist
186
+ - occupational therapist
187
+ - physical therapist
188
+ - veterinary technician
189
+ - massage therapist
190
+ - truck driver
191
+ - forklift operator
192
+ - warehouse associate
193
+ - line cook
194
+ - sous chef
195
+ - barista
196
+ - server assistant
197
+ - housekeeping attendant
198
+ - retail sales associate
199
+ - cashier
200
+ - stock associate
201
+ - beauty advisor
202
+ - personal shopper
203
+ - loan officer
204
+ - insurance agent
205
+ - real estate agent
206
+ - social worker
207
+ - paralegal
208
+ - court clerk
209
+ - welder
210
+ - millwright
211
+ - pipefitter
212
+ - hvac technician
213
+ - heavy equipment operator
214
+ - landscape technician
215
+ - infirmiere autorisee
216
+ - preposee aux beneficiaires
217
+ - cuisinier
218
+ - commis de vente
219
+ - actuarial
220
+ - actuary
221
+ - underwriting
222
+ - underwriter
223
+ - claims
224
+ - market risk
225
+ - operational risk
226
+ - actuaire
227
+ - actuariat
228
+ - science actuarielle
229
+ - souscription
230
+ - sinistres
231
+ - auditeur
232
+ - risque de credit
233
+ - risque de marche
234
+ - risque operationnel
235
+ - analyste de risque
236
+ - analyste risque
237
+ - gestion des risques
238
+ - marketeer
239
+ - accountant
240
+ - hr intern
241
+ - outside sales
242
+ - home support worker
243
+ - home child care
244
+ - sales representative
245
+ - graduate engineer trainee
246
+ - technician student intern
247
+ - maintenance
248
+ - procurement
249
+ - real estate
250
+ - financial analyst
251
+ - industrial engineering
252
+ - customer service
253
+ - private equity
254
+ - sales development
255
+ - operator
256
+ - equity research
257
+ - pharmacy
258
+ - business strategy
259
+ - payroll
260
+ - people operations
261
+ - account executive
262
+ - portfolio management
263
+ - content strategy
264
+ - public relations
265
+ - investment banking analyst
266
+ - banking analyst
267
+ - electronic engineering
268
+ - electronics engineering
269
+ - biomedical engineering
270
+ - structural engineering
271
+ - game production
272
+ - game operations
273
+ - program steering
274
+
275
+ - epidemiology
276
+ - epidemiologie
277
+ - health services
278
+ - cyber strategy
279
+ - people partner
280
+ - people experience
281
+ - people operations
282
+ excluded_titles:
283
+ - information technology intern
284
+ - information technology internship
285
+ - it intern
286
+ - it internship
287
+ - it co op
288
+ - it coop
289
+ - it student
290
+ - it trainee
291
+ - information technology co op
292
+ - information technology coop
293
+ - it support
294
+ - technical support
295
+ - desktop support
296
+ - help desk
297
+ - service desk
298
+ - support technician
299
+ - project manager
300
+ - project management
301
+ - technical project manager
302
+ - program manager
303
+ - product manager
304
+ - product management
305
+ - ux designer
306
+ - ui designer
307
+ - ux researcher
308
+ - ui researcher
309
+ - user experience
310
+ - user interface
311
+ - web designer
312
+ - marketing
313
+ - business development
314
+ - business developer
315
+ - marketing intern
316
+ - marketing manager
317
+ - sales engineer
318
+ - sales engineering
319
+ - pre sales engineer
320
+ - solutions consultant
321
+ - stagiaire en technologies de l information
322
+ - stagiaire ti
323
+ - stage ti
324
+ - stage en ti
325
+ - ti co op
326
+ - ti coop
327
+ - technologies de l information co op
328
+ - technologies de l information coop
329
+ - soutien informatique
330
+ - support informatique
331
+ - soutien technique
332
+ - technicien de soutien
333
+ - bureau de service
334
+ - service d assistance
335
+ - gestionnaire de projet
336
+ - chef de projet
337
+ - gestion de projet
338
+ - gestionnaire de programme
339
+ - gestionnaire de produit
340
+ - chef de produit
341
+ - gestion de produit
342
+ - concepteur ux
343
+ - conceptrice ux
344
+ - concepteur ui
345
+ - conceptrice ui
346
+ - experience utilisateur
347
+ - interface utilisateur
348
+ - concepteur web
349
+ - conceptrice web
350
+ - stagiaire marketing
351
+ - developpement des affaires
352
+ - developpeur des affaires
353
+ - developpeuse des affaires
354
+ - ingenieur commercial
355
+ - ingenieure commerciale
356
+ - avant vente
357
+ - consultant en solutions
358
+
359
+ - mechanical engineering
360
+ - mechanical engineer
361
+ - chemical engineering
362
+ - chemical engineer
363
+ - biochemical
364
+ - civil engineering
365
+ - civil engineer
366
+ - materials engineering
367
+ - materials engineer
368
+ - electrical engineering
369
+ - electrical engineer
370
+ - power systems engineering
371
+ - power system engineering
372
+ - cnc
373
+ - machining
374
+ - machinist
375
+ - machine park
376
+ - genie mecanique
377
+ - genie chimique
378
+ - genie civil
379
+ - genie electrique
380
+ - thermal
381
+ - human resources
382
+ - ressources humaines
383
+ - accounting
384
+ - comptabilite
385
+ - sales and trading
386
+ - sales intern
387
+ - sales internship
388
+ - technical sales
389
+ - account manager
390
+ - relationship manager
391
+ technical_title_exceptions:
392
+ - vehicle software engineer diagnostic user interface
393
+ - fullstack c engineer intern vehicle user interface
394
+ - software engineer
395
+ - software engineering
396
+ - software developer
397
+ - software development
398
+ - backend
399
+ - back end
400
+ - frontend
401
+ - front end
402
+ - full stack
403
+ - fullstack
404
+ - web developer
405
+ - website developer
406
+ - mobile developer
407
+ - data engineer
408
+ - data scientist
409
+ - machine learning
410
+ - developpeur
411
+ - developpeuse
412
+ - genie logiciel
413
+ - developpement logiciel
414
+ - embedded software
415
+ - data science
416
+ - data analyst
417
+ - cyber security
418
+ - information security
419
+ - application development
420
+ - computer science
421
+ - genie informatique
422
+ - data analysis
423
+ - tool development
424
+ - developpement d outils
425
+ undergraduate_tokens:
426
+ - bachelor
427
+ - bachelors
428
+ - bachelor s
429
+ - bs
430
+ - bsc
431
+ - beng
432
+ - b eng
433
+ - undergraduate
434
+ - undergrad
435
+ - ug
436
+ - licence
437
+ - baccalaureat
438
+ - bac 3
439
+ graduate_title_tokens:
440
+ - masters
441
+ - master s
442
+ - msc
443
+ - ms
444
+ - m eng
445
+ - mba
446
+ - master student
447
+ - master thesis
448
+ - graduate student
449
+ - grad student
450
+ - postgraduate
451
+ - mastere
452
+ - bac 5
453
+ - etudiant a la maitrise
454
+ - memoire de maitrise
455
+ - graduate research assistant
@@ -0,0 +1,37 @@
1
+ feminine_suffixes:
2
+ - e
3
+ - es
4
+ - a
5
+ - as
6
+ - se
7
+ - ses
8
+ - euse
9
+ - euses
10
+ - eure
11
+ - eures
12
+ - ère
13
+ - ères
14
+ - rice
15
+ - rices
16
+ - trice
17
+ - trices
18
+ - fe
19
+ - fes
20
+ - ne
21
+ - nes
22
+ - le
23
+ - les
24
+ - ive
25
+ - ives
26
+ - ale
27
+ - ales
28
+ - ienne
29
+ - iennes
30
+ - onne
31
+ - onnes
32
+ - elle
33
+ - elles
34
+ - ète
35
+ - ètes
36
+ - ière
37
+ - ières