-
Notifications
You must be signed in to change notification settings - Fork 10
/
pelicanconf_event_jobs.py
1112 lines (1110 loc) · 50.7 KB
/
pelicanconf_event_jobs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
import random
JOBS = [
{
"company_avatar": "/theme/images/jobs/ef.jpeg",
"company_name": "e-Frontiers",
"position": "Senior Python Developer",
"description": "Buscamos desarrolladores con experiencia en Python para trabajar remotamente desde cualquier país europeo para trabajar en una empresa tecnológica con producto propio, una potente herramienta analítica, que opera en diferentes países y que ya está siendo considerada como el nuevo unicornio tecnológico español.",
"location": "España/ 100% remoto",
"skills": [
"python",
"unittest",
"docker",
"kubernetes",
"kafka",
"spark",
"inglés alto",
],
"salary": "50.000 - 70.000 €",
"url": "https://e-frontiers.ie/find-a-job/senior-python-developer-7348/",
"email": "alejandro.pino@e-frontiers.ie",
},
{
"company_avatar": "/theme/images/jobs/ef.jpeg",
"company_name": "e-Frontiers",
"position": "Senior Python Mid-Senior",
"description": "Estás descubriendo el poder de Python, pero quieres explorar todas sus posibilidades. Tenemos vacantes abiertas en una empresa enfocada al desarrollo de múltiples aplicaciones aplicadas a las finanzas: herramientas Fintech! Si te gusta cacharrear con el código tenemos que hablar :D",
"location": "Pozuelo de Alarcón (Madrid) / Semirremoto",
"skills": ["python", "flask", "docker", "kubernetes", "sql"],
"salary": "30.000€ – 42.000€",
"url": "https://e-frontiers.ie/find-a-job/python-developer-mid-senior-7330/",
"email": "alejandro.pino@e-frontiers.ie",
},
{
"company_avatar": "/theme/images/jobs/ef.jpeg",
"company_name": "e-Frontiers",
"position": "Python Developer EUROPE – 100% REMOTE",
"description": "Te gusta trabajar con Python, desde casa, desde cualquier lugar de Europa… ¡Tenemos que hablar! Tenemos diversas oportunidades abiertas para desarrolladores Python en empresas de producto propio, con sede principalmente en España e Irlanda, esperándote.",
"location": "Europa / Remoto 100%",
"skills": [
"python",
"django",
"flask",
"sql",
"docker",
"aws/azure",
"inglés alto",
],
"salary": "40.000€ – 60.000€",
"url": "https://e-frontiers.ie/jobs/7799/",
"email": "alejandro.pino@e-frontiers.ie",
},
{
"company_avatar": "/theme/images/jobs/ef.jpeg",
"company_name": "e-Frontiers",
"position": "Python Developer IRELAND",
"description": "We are looking for a Python Developer to join an Investment Management Firm in Dublin. You will be working within their Infrastructure Reliability Engineering team. Their goal is to ensure platform reliability and operational agility by developing visualizations, dashboards, and tools that reveal insights in data.",
"location": "Irlanda / Ambas opciones 100% Remoto y Presencial",
"skills": [
"python",
"django",
"flask",
"sql",
"docker",
"aws/azure",
"inglés alto",
],
"salary": "40.000€ – 60.000€",
"url": "https://e-frontiers.ie/find-a-job/python-developer-7708/",
"email": "lisa.cappelli@e-frontiers.ie",
},
{
"company_avatar": "/theme/images/jobs/alea.jpeg",
"company_name": "Alea",
"position": "Senior Developer",
"description": "Buscamos a alguien de backend. Pero que no le tenga miedo a sistemas, redes, negocio... Con experiencia en desarrollo de aplicaciones con buenas prácticas (XP, arquitecturas limpias o hexagonales), testing (TDD) y que le guste mucho trabajar en equipo puesto que hacemos pairing",
"location": "Madrid / Remoto",
"skills": [
"python",
"testing",
"clean code",
"arquitecturas limpias",
"colaboración",
"trabajo en equipo",
"empatía",
"proactividad",
],
"salary": "40.000€ – 50.000€",
"url": "https://aleasoluciones.notion.site/Forma-parte-del-equipo-p-blica-968223e26cc84d94bb9d0efc8038535e",
"email": "desarrollo@alea-soluciones.com",
},
{
"company_avatar": "/theme/images/jobs/travelperk.png",
"company_name": "TravelPerk",
"position": "Software Engineer",
"description": "We are looking for product-oriented software engineers with 3+ years experience in any web programming language. Come and join us to work in one of the fastest growing scale-ups in the world revolutionizing the business travel industry.",
"location": "Barcelona / Berlin / London / Birmingham hybrid",
"skills": [
"python",
"django",
"tornado",
"react",
"aws",
"docker",
"inglés alto",
],
"salary": "50.000€ – 65.000€",
"url": "https://www.travelperk.com/job-application/?gh_jid=3242844",
},
{
"company_avatar": "/theme/images/jobs/travelperk.png",
"company_name": "TravelPerk",
"position": "Senior Software Engineer",
"description": "We are looking for product-oriented software engineers with 3+ years experience in any web programming language. Come and join us to work in one of the fastest growing scale-ups in the world revolutionizing the business travel industry.",
"location": "Barcelona / Berlin / London / Birmingham hybrid",
"skills": [
"python",
"django",
"tornado",
"react",
"aws",
"docker",
"inglés alto",
],
"salary": "65.000€ – 90.000€",
"url": "https://www.travelperk.com/job-application/?gh_jid=3242303",
},
{
"company_avatar": "/theme/images/jobs/travelperk.png",
"company_name": "TravelPerk",
"position": "Engineering Manager",
"description": "We are looking for people-oriented Engineering Managers with 3+ years experience in directly managing engineers to join us at a hyper-growth period. We’ve recently raised $115 million, making us a unicorn! Come and join us in revolutionizing the global business travel industry.",
"location": "Barcelona / Berlin / London / Birmingham hybrid",
"skills": ["management", "career path", "leadership",],
"salary": "75.000€ – 95.000€",
"url": "https://www.travelperk.com/job-application/?gh_jid=3958248",
},
{
"company_avatar": "/theme/images/jobs/celtiberian.png",
"company_name": "Celtiberian",
"position": "Junior Full-Stack developer (Javascript/Python)",
"description": "¿Alguna vez has deseado trabajar con startups de la mismísima California? En Celtiberian buscamos ingenieros con alguna experiencia en el desarrollo de software interesados en dominar el entorno de Javascript y Python, además de apasionados del conocimiento tecnológico.",
"location": "Granada / Remoto",
"skills": [
"JavaScript",
"Python",
"Django",
"React",
"Node.js",
"React Native",
"Inglés alto",
],
"salary": "24.000€ - 36.000€",
"url": "https://es.linkedin.com/company/celtiberian",
"email": "lorena@celtiberian.es",
},
{
"company_avatar": "/theme/images/jobs/celtiberian.png",
"company_name": "Celtiberian",
"position": "Senior Full-Stack developer (Javascript/Python)",
"description": "Si además de ser un desarrollador Full-Stack experimentado con los ecosistemas de Javascript y Python, estabas buscando una oportunidad para trabajar con startups en entornos internacionales y dinámicos, tenemos una propuesta interesante para tí.",
"location": "Granada / Remoto",
"skills": [
"JavaScript",
"Python",
"Django",
"React",
"Node.js",
"React Native",
"Inglés alto",
],
"salary": "32.000€ - 45.000€",
"url": "https://es.linkedin.com/company/celtiberian",
"email": "lorena@celtiberian.es",
},
{
"company_avatar": "/theme/images/jobs/celtiberian.png",
"company_name": "Celtiberian",
"position": "DevOps Engineer",
"description": "¿Te apasiona el DevOps y te llama la atención trabajar para startups internacionales? En Celtiberian podrás cubrir ambas demandas. Somos una consultora de software comprometida con los servicios de calidad y la formación constante en las tecnologías más punteras.",
"location": "Granada / Remoto",
"skills": [
"Kubernetes",
"Docker",
"Python",
"JavaScript",
"AWS",
"Inglés alto",
],
"salary": "35.000€ - 45.000€",
"url": "https://es.linkedin.com/company/celtiberian",
"email": "lorena@celtiberian.es",
},
{
"company_avatar": "/theme/images/jobs/intelygenz.png",
"company_name": "Intelygenz",
"position": "Data Scientist - ML",
"description": "We’re looking for a Machine Learning Engineer to bring their expertise to some great projects, learn in a friendly, collaborative environment, and innovate with us. You will design and implement end-to-end data pipelines, being part of an agile team of amazing developers.",
"location": "Madrid / Remoto",
"skills": ["ML", "Python", "Golang", "Docker", "SQL", "Protobuf",],
"salary": "36.000€ - 45.000€",
"url": "https://intelygenz.com/job/731838/",
},
{
"company_avatar": "/theme/images/jobs/intelygenz.png",
"company_name": "Intelygenz",
"position": "Data Scientist",
"description": "As a Data Scientist your goals will be organized in two areas. Industry: process automation. Laboratory: research and testing state-of-the-art techniques and solutions to keep improving our skills and sharing with the community our knowledge and proof of concepts.",
"location": "Madrid / Remoto",
"skills": [
"Numpy",
"Pandas",
"Scikit-learn",
"PyTorch/Tensorflow",
"Deep Reinforcement Learning",
"NLP",
],
"salary": "36.000€ - 45.000€",
"url": "https://intelygenz.com/job/440392/",
},
{
"company_avatar": "/theme/images/jobs/intelygenz.png",
"company_name": "Intelygenz",
"position": "Tech Lead Automation",
"description": "Our next Technical Lead is very skilled in Python and/or Golang and has 5 years of experience deploying and evolving software in production environments. Also, Scalable Architectures are part of your day and Good development practices are a must for you.",
"location": "Madrid / Remoto",
"skills": ["Python", "Golang", "Databases", "DevOps", "Docker",],
"salary": "50.000€ - 60.000€",
"url": "https://intelygenz.com/job/814833/",
},
{
"company_avatar": "/theme/images/jobs/intelygenz.png",
"company_name": "Intelygenz",
"position": "Python Developer",
"description": "The Python Developer we are looking for has at least 3 years of experience, good developement practices and enjoy working in an agile and collaborative environment. Also, knows Docker and/or Kubernetes, ATDD and is able to communicate in English.",
"location": "Madrid / Remoto",
"skills": ["Python", "Docker", "TDD", "JavaScript",],
"salary": "32.000€ - 40.000€",
"url": "https://intelygenz.com/job/649170/",
},
{
"company_avatar": "/theme/images/jobs/holaluz.png",
"company_name": "Holaluz",
"position": "Data Architect",
"description": "🍼 Nursery inhouse<br/>🚀 Desarrollo profesional sin límites en una empresa apasionante y un equipo con desafíos constantes<br/>🏡 Horario flexible y posibilidad de trabajo a distancia de forma habitual.<br/>🌊 Ubicaciones de las oficinas a primera linea de mar<br/>💪 Yoga y Crossfit inhouse",
"location": "Híbrida (Barcelona)",
"skills": ["AWS", "Snowflake o Redshift", "Python", "SQL", "Airflow",],
"salary": "60.000 € - 85.000 €",
"url": "https://apply.workable.com/holaluz/j/478A031C7A/",
"email": "ariadna.garriga@holaluz.com",
},
{
"company_avatar": "/theme/images/jobs/holaluz.png",
"company_name": "Holaluz",
"position": "Senior Data Engineer",
"description": "En Holaluz estamos buscando a un/a Senior Data Engineer para ser responsable de la integración, arquitectura y mantenimiento de los Datos con las tecnologías de la casa AWS, Pentaho Kettle, Python, Java, Scala, MySQL, SQL, MongoDB y Airflow. ¿Te interesa? ¡Sigue leyendo! 🙂",
"location": "Híbrida (Barcelona)",
"skills": [
"AWS",
"Pentaho Kettle",
"Python",
"Java",
"Scala",
"MySQL",
"SQL",
"MongoDB",
"Airflow",
],
"salary": "40.000 € - 50.000 €",
"url": "https://holaluz.workable.com/backend/jobs/2565347/",
"email": "ariadna.garriga@holaluz.com",
},
{
"company_avatar": "/theme/images/jobs/trustyou.jpeg",
"company_name": "TrustYou",
"position": "Professional Python Developer",
"description": "Imagine a workplace that allows you to own your own product and where your ideas will be heard and implemented. Imagine an environment where your performance makes a difference, not just within the company itself but for billions of travelers worldwide! That place is TrustYou.",
"location": "Madrid / Munich / Cluj-Napoca / Remote",
"skills": [
"Python 3",
"asynchronous programming",
"PostgreSQL",
"unit-testing",
"Web APIs",
],
"salary": "40.000€ - 60.000€",
"url": "https://jobs.lever.co/trustyou/5732c644-7245-4f41-8ec1-50d819cf438a",
},
{
"company_avatar": "/theme/images/jobs/trustyou.jpeg",
"company_name": "TrustYou",
"position": "Professional Engineer - Backend",
"description": "Imagine a workplace that allows you to own your own product and where your ideas will be heard and implemented. Imagine an environment where your performance makes a difference, not just within the company itself but for billions of travelers worldwide! That place is TrustYou.",
"location": "Spain / Germany / Romania / European Union (Remote)",
"skills": ["Ruby on Rails", "Javascript", "PostgreSQL", "TDD",],
"salary": "40.000€ - 70.000€",
"url": "https://jobs.lever.co/trustyou/2ca76451-8c8a-43e6-ae54-93fdee798398",
},
{
"company_avatar": "/theme/images/jobs/trustyou.jpeg",
"company_name": "TrustYou",
"position": "Senior Frontend Engineer",
"description": "Imagine a workplace that allows you to own your own product and where your ideas will be heard and implemented. Imagine an environment where your performance makes a difference, not just within the company itself but for billions of travelers worldwide! That place is TrustYou.",
"location": "Spain / Germany / Romania / European Union (Remote)",
"skills": [
"frontend",
"React",
"reusable UIs",
"Redux/MobX",
"NodeJS",
"any backend language",
],
"salary": "50.000€ - 70.000€",
"url": "https://jobs.lever.co/trustyou/8f27c517-587f-4832-9d79-dbf48a5a5134",
},
{
"company_avatar": "/theme/images/jobs/nucleoo.jpeg",
"company_name": "Nucleoo",
"position": "Software Engineer",
"description": "Here you will be part of one of the agile development teams working on large data projects using technologies such as Python, Angular, and MongoDB. You will work together with the Lead Developer and communicate with clients in English every day.",
"location": "Híbrido/100% remoto",
"skills": [
"Python",
"Angular",
"React",
"Vue.js",
"SQL or No-SQL",
"Jasmine/cypress/Jest",
"Git",
"Flask",
"C#/.NET",
"Gitlab",
"Docker" "Terraform",
"AWS/Azure",
],
"salary": "20.000€ - 45.000€",
"url": "https://nucleoo.com/careers/software-engineer-python/",
"email": "hr@nucleoo.com",
},
{
"company_avatar": "/theme/images/jobs/nucleoo.jpeg",
"company_name": "Nucleoo",
"position": "FullStack Engineer",
"description": "We are looking for an experienced and talented fullstack engineer with +3 years experience for developing enterprise scale software.",
"location": "Hibrido/100% remoto",
"skills": [
"English",
"React",
"JavaScript",
"Typescript",
"HTML",
"CSS",
"LESS",
"computer systems",
"algorithms",
"flows",
".net",
"c#",
"powershell",
"XML",
],
"salary": "25.000€ - 45.000€",
"url": "https://nucleoo.com/careers/fullstack-engineer/",
"email": "hr@nucleoo.com",
},
{
"company_avatar": "/theme/images/jobs/nucleoo.jpeg",
"company_name": "Nucleoo",
"position": "Quality Assurance Engineer",
"description": "Nucleoo is looking for an experienced and talented Test Engineer who’s proficient in testing of enterprise scale software and automation of tests. ",
"location": "Híbrido/100% remoto",
"skills": [
"Testrail",
"Ttest automation code",
"C#",
"PowerShell",
"Issues/bugs (Jira)",
"Confluence",
"Load tests",
"Testing",
"Development",
],
"salary": "20.000€ - 45.000€",
"url": "https://nucleoo.com/careers/quality-assurance-engineer/",
"email": "hr@nucleoo.com",
},
{
"company_avatar": "/theme/images/jobs/nucleoo.jpeg",
"company_name": "Nucleoo",
"position": ".Net developer",
"description": "Nucleoo is looking for an experienced and talented Microsoft .NET Developer who’s proficient in developing enterprise scale software. ",
"location": "Híbrida/100% remoto",
"skills": [
".NET",
"C#",
"algorithms",
"flows",
"PowerShell",
"XSLT",
"DTD",
"XSD",
"XML Editors",
"oXygen",
"JustSystems XMetaL",
],
"salary": "20.000€ - 45.000€",
"url": "https://nucleoo.com/careers/net-developer/",
"email": "hr@nucleoo.com",
},
{
"company_avatar": "/theme/images/jobs/nucleoo.jpeg",
"company_name": "Nucleoo",
"position": "Javascript Engineer",
"description": "Nucleoo is looking for a self- motivated, multi-tasker and team player engineer to join us in Granada. This is a fantastic opportunity to join a growing and innovative team.",
"location": "Híbrida/100% remoto",
"skills": [
"Typescript",
"ReactJS",
"HTML",
"CSS",
"Angular",
"Vue",
"Cypress",
"Node",
"PostgreSQL",
"AWS",
"MongoDB",
"Python",
],
"salary": "20.000€ - 45.000€",
"url": "https://nucleoo.com/careers/javascript-engineer/",
},
{
"company_avatar": "/theme/images/jobs/ebury.jpeg",
"company_name": "Ebury Partners UK, Ltd",
"position": "Senior Mobile Developer - Full Remote",
"description": "You'll take responsibility for the Mobile Apps development as part of Channels ecosystem in Ebury. We need experience with building native iOS apps that delight users (Swift Code), writing applications in Flutter or react-Native, and good knowledge of Python.",
"location": "Full Remote",
"skills": ["Mobile", "IOS", "Flutter", "React-Native", "NodeJS", "Python"],
"salary": "55.000€ - 80.000€",
"url": "https://careers.ebury.com/jobs/1946971-senior-mobile-developer-full-remote",
"email": "emma.casanova@ebury.com",
},
{
"company_avatar": "/theme/images/jobs/ebury.jpeg",
"company_name": "Ebury Partners UK Ltd.",
"position": "Senior Python Developer",
"description": "We have big experience developing complex sw systems; mainly work with Python/Django; our developers that can “build and run” services, are comfortable with dockerising the code, define standard REST endpoints, adding monitoring and alerting your services. SQL knowledge is a +",
"location": "Full Remote",
"skills": [
"python",
"django",
"sql",
"jenkins",
"terraform",
"sentry",
"prometheus",
"ELK",
"Docker",
"ECS",
"Kubernetes",
"kafka",
],
"salary": "40.000€ - 80.000€",
"url": "https://careers.ebury.com/jobs/1772667-senior-python-engineer-backend-remote",
"email": "emma.casanova@ebury.com",
},
{
"company_avatar": "/theme/images/jobs/kairos.jpeg",
"company_name": "Kairos DS",
"position": "Data Engineer",
"description": "En Kairós DS buscamos personas, con perfiles desde profesionales a más junior, expertas en Data Engineer y con conocimientos de Python para formar parte de nuestra capacidad de Data & IA, liderada por Inés Huertas.",
"location": "Remoto",
"skills": [
"Lambda",
"Fargate",
"ECS",
"S3",
"SNS",
"GLUE",
"ATHENA",
"RDS",
"IAM",
"CLOUDFORMATION",
"GIT",
"CI/CD",
"CI/CD",
"Python",
"Pandas",
"SQLs",
],
"salary": "45.000€ - 60.000€",
"url": "https://jobs.kairosds.com/jobs/data-engineer-ntq3e-22",
"email": "talento@kairosds.com",
},
{
"company_avatar": "/theme/images/jobs/kairos.jpeg",
"company_name": "Kairos DS",
"position": "Azure Data Engineer",
"description": "Buscamos personas, con perfiles desde profesionales a más junior, expertas en Data Engineer y con conocimientos de Azure para formar parte de nuestra capacidad de Data & IA, liderada por Inés Huertas.",
"location": "Remoto",
"skills": ["Data Modellling", "Spark/SQL/Python", "Event streaming (Kafka)",],
"salary": "45.000€ - 60.000€",
"url": "https://jobs.kairosds.com/jobs/azure-data-engineer-ntq3e-22",
"email": "talento@kairosds.com",
},
{
"company_avatar": "/theme/images/jobs/kairos.jpeg",
"company_name": "Kairos DS",
"position": "Data Engineer con Spark y Scala",
"description": "En Kairós DS buscamos personas con experiencia como Data Engineer y con experiencia en Spark y Scala para formar parte de nuestra capacidad de Data & IA, liderada por Inés Huertas.",
"location": "Remoto",
"skills": ["Spark - Scala", "Spark", "CI/CD", "Jenkins"],
"salary": "45.000€ - 60.000€",
"url": "https://jobs.kairosds.com/jobs/data-engineer-con-spark-y-scala-ntq3ebb-22",
"email": "talento@kairosds.com",
},
{
"company_avatar": "/theme/images/jobs/alight.png",
"company_name": "Alight",
"position": "Data Scientist",
"description": "We are looking for a strong and motivated Data Scientist to support our growing AI team. If you have experience on Python, ML and statistics we are looking for you!",
"location": "Granada",
"skills": ["Python", "ML", "Statistics"],
"salary": "up to 40.000€",
"url": "https://careers.alight.com/us/en",
"email": "",
},
{
"company_avatar": "/theme/images/jobs/alight.png",
"company_name": "Alight",
"position": "Automation Anywhere",
"description": "We are expanding our automation implementation team. If you have some experience in automation with Python come help us to create some cool robots!",
"location": "Granada",
"skills": ["Python"],
"salary": "up to 35.000€",
"url": "https://careers.alight.com/us/en",
"email": "",
},
###
{
"company_avatar": "/theme/images/jobs/backmarket.jpeg",
"company_name": "Back Market",
"position": "Backend Engineer",
"description": "We are looking for Backend Software Developers who will help to design, develop, and manage the technical functionalities related to the evolution and adaptation of our international business. If you have 2 years of experience and Python knowledge, reach out to us!",
"location": "Remoto desde España, Francia o Alemania",
"skills": ["Python", "clean code", "TDD", "BDD", "DDD", "SOLID"],
"salary": "50.000€ - 100.000€",
"url": "https://jobs.lever.co/backmarket/8294c358-89ff-4ffe-84ab-9b7c06d2a4c0",
"email": "franco.de-udaeta@backmarket.com",
},
{
"company_avatar": "/theme/images/jobs/novatec.jpeg",
"company_name": "Novatec Software Engineering España SL",
"position": "Site Reliability Engineer",
"description": "Automation, automation! It’s no mistake – it’s the heart of Site Reliability Engineering. As a Site Reliability Engineer, you enable the growth, maintainability, and scalability of enterprise applications of our development teams.",
"location": "Hibrida/remota + Granada",
"skills": [
"Kubernetes",
"Docker",
"Istio",
"Terraform",
"Git",
"Bash",
"Java",
"Spring",
"CI/CD",
"AWS",
"Azure",
"GCP",
"English",
],
"salary": "30.000€ - 40.000€",
"url": "https://www.novatec-gmbh.de/en/job/sredevgrx/",
"email": "careers-spain@novatec-gmbh.de",
},
{
"company_avatar": "/theme/images/jobs/novatec.jpeg",
"company_name": "Novatec Software Engineering España SL",
"position": "Principal Back-end Software Engineer",
"description": "Have you always been looking for a team that strives for the latest technologies and live agile values while implementing them with customers? We live DevOps! You not only develop features but also take care of building pipelines and other infrastructures.",
"location": "Hibrida/remota + Granada",
"skills": [
"Spring / Spring Boot / Spring Cloud",
"Kotlin",
"Java",
"Kubernetes",
"Docker",
"Terraform",
"Helm",
"Git",
"Bash",
"CI/CD",
"English",
],
"salary": "45.000€ - 60.000€",
"url": "https://www.novatec-gmbh.de/en/job/backend-software-engineer-spain/",
"email": "careers-spain@novatec-gmbh.de",
},
{
"company_avatar": "/theme/images/jobs/cathedralsoftware.jpeg",
"company_name": "Cathedral Software",
"position": "Backend Developer",
"description": "Consultoría de software en plena expansión, involucrada, entre otros, en proyectos de Big Data y BI para empresas multinacionales. Buscamos constantemente personas responsables y dinámicas, apasionadas de las nuevas tecnologías y amantes del trabajo en equipo.",
"location": "Remoto 100% ó Hibrida (Málaga)",
"skills": [
"Python 3",
"git/ mercurial",
"Django",
"Flask",
"PostgreSQL or MySQL",
"Docker",
"Agile",
"Scrum methodologies",
],
"salary": "22.000€ - 50.000€",
"url": "https://es.indeed.com/cmp/Cathedral-Software-Sl/jobs?jk=6f423f7e2b42e828&start=0",
"email": "people@cathedralsw.com",
},
{
"company_avatar": "/theme/images/jobs/cathedralsoftware.jpeg",
"company_name": "Cathedral Software",
"position": "Frontend Developer",
"description": "Consultoría de software en plena expansión, involucrada, entre otros, en proyectos de Big Data y BI para empresas multinacionales. Buscamos constantemente personas responsables y dinámicas, apasionadas de las nuevas tecnologías y amantes del trabajo en equipo",
"location": "Remoto 100% ó Hibrida (Málaga)",
"skills": [
"React",
"Vue",
"Angular 4+",
"Git",
"HTML y CSS",
"TailwindCSS or Bootstrap 3+" "Postman",
"Insomnia",
"Agile",
],
"salary": "22.000€ - 50.000€",
"url": "https://es.indeed.com/cmp/Cathedral-Software-Sl/jobs?jk=b8ccbd3acaf18bf0&start=0",
"email": "people@cathedralsw.com",
},
{
"company_avatar": "/theme/images/jobs/bluetab.png",
"company_name": "Bluetab, an IBM Company",
"position": "Python Data Developer",
"description": "Como Data Engineer experto en Python, sólo te pedimos que más allá de las ganas desarrollarte, seas una persona curiosa, inquieta, con ganas de enfrentarte a todo tipo de misiones y un poco geek y por qué no...experto en algunas tecnologías (abajo), lo demás lo ponemos nosotros:",
"location": "presencial/remota/híbrida ",
"skills": [
"Python",
"Pandas",
"Flask",
"Django",
"SQL",
"MySQL" "Oracle",
"DevOps",
"Docker",
"Kubernetes",
"Cloud",
"Big Data",
],
"salary": "30.000€ - 45.000€",
"url": "https://www.linkedin.com/jobs/view/3237870143",
"email": "guillermo.perez@bluetab.net",
},
{
"company_avatar": "/theme/images/jobs/bluetab.png",
"company_name": "Bluetab, an IBM Company",
"position": "Big Data Engineer (Scala/Spark/PySpark)",
"description": "Estamos buscando cracks del mundo del Dato (Big Data/Data Engineer), que le gusten los datos, la búsqueda minuciosa, el análisis y la tecnología. Si te sientes identificado/a con las tecnologías, no te lo pienses...¡te estamos esperando!",
"location": "presencial/remota/híbrida ",
"skills": [
"Scala",
"Spark",
"PySpark",
"Cloud",
"AWS",
"Azure" "SQL",
"Big Data",
"Databricks",
"Hadoop",
"HDFS",
"YARN",
"MapReduce",
],
"salary": "30.000€ - 50.000€",
"url": "https://www.linkedin.com/jobs/view/3200752210",
"email": "guillermo.perez@bluetab.net",
},
{
"company_avatar": "/theme/images/jobs/bluetab.png",
"company_name": "Bluetab, an IBM Company",
"position": "AWS/Azure Data Engineer",
"description": "Ofrecemos la oportunidad de trabajar en entornos con un alto expertise tecnológico en el mundo Data&Cloud donde poder desarrollarse personal y profesionalmente, aprender, formarse y compartir experiencias tecnológicas, fomentando una filosofía de trabajo en equipo y cooperación.",
"location": "presencial/remota/híbrida ",
"skills": [
"AWS",
"Azure",
"Python",
"Cloud",
"Big Data",
"Scala" "Spark",
"EMR",
"S3",
"CI/CD",
"Terraform",
"Docker",
"Kubernetes",
"DataBricks",
"HDFS",
],
"salary": "30.000€ - 50.000€",
"url": "https://www.linkedin.com/jobs/view/3150132240",
"email": "guillermo.perez@bluetab.net",
},
{
"company_avatar": "/theme/images/jobs/kavehome.png",
"company_name": "KAVE HOME",
"position": "BACKEND DEVELOPER",
"description": "In KAVE TECH we are looking for a BACKEND DEVELOPER to join our team! Be part of a team of more than 30 people with a lot of freedom to develop their skills and with the aim of becoming the technological reference in the furniture and decoration industry.",
"location": "Remoto/híbrido",
"skills": ["python", "django", "cloud", "docker", "kubernetes", "GCloud",],
"salary": "30.000€ - 50.000€",
"url": "https://jobs.kavehome.com/jobs/backend-developer-h-m",
"email": "amilena@kavehome.com",
},
{
"company_avatar": "/theme/images/jobs/kavehome.png",
"company_name": "KAVE HOME",
"position": "DATA PRODUCT MANAGER",
"description": "In KAVE TECH we are looking for a DATA PRODUCT MANAGER! You'll be responsible for defining the product strategy and its roadmap together with stakeholders, and optimising the resources of the team to guarantee the delivery of value.",
"location": "híbrido",
"skills": [
"Roadmap",
"Jira",
"Hitos",
"backlog",
"stakeholders",
"agile",
"mvp",
],
"salary": "30.000€ - 50.000€",
"url": "https://jobs.kavehome.com/jobs/data-product-manager",
"email": "amilena@kavehome.com",
},
{
"company_avatar": "/theme/images/jobs/kavehome.png",
"company_name": "KAVE HOME",
"position": "E-COMMERCE PRODUCT OWNER",
"description": "In KAVE TECH we are looking for an E-COMMERCE PRODUCT OWNER! You'll be responsible for defining the product strategy and its roadmap together with stakeholders, and optimising the resources of the team to guarantee the delivery of value.",
"location": "HIBRIDA",
"skills": ["Roadmap", "Agile", "Jira", "stakeholders", "backlog", "mvp",],
"salary": "30.000€ - 50.000€",
"url": "https://jobs.kavehome.com/jobs/e-commerce-product-manager",
"email": "amilena@kavehome.com",
},
{
"company_avatar": "/theme/images/jobs/financialforce.png",
"company_name": "FinancialForce",
"position": "Software Engineer",
"description": "We are looking for a Fullstack Software Engineer to join our growing team in Granada. If you enjoy learning new technologies and working in a supportive environment with a great culture this could be ideal for you!",
"location": "Hybrid model of working",
"skills": [
"Apex",
"Javascript",
"Lightening Web Components",
"TDD",
"Agile",
"AWS",
],
"salary": "24.000€ - 50.000€",
"url": "https://jobs.jobvite.com/financialforce/job/o3BJjfwq",
"email": "rwetherell@financialforce.com",
},
{
"company_avatar": "/theme/images/jobs/financialforce.png",
"company_name": "FinancialForce",
"position": "Senior Software Engineer",
"description": "We are looking for an experienced Full Stack Software Engineer to join our growing team in Granada. If you enjoy learning new technologies and working in a supportive environment with a great culture this could be ideal for you!",
"location": "Hybrid model of working",
"skills": ["Node.js", "Javascript", "TDD", "Agile", "AWS",],
"salary": "24.000€ - 50.000€",
"url": "https://jobs.jobvite.com/financialforce/job/oFrIjfwR",
"email": "rwetherell@financialforce.com",
},
{
"company_avatar": "/theme/images/jobs/financialforce.png",
"company_name": "FinancialForce",
"position": "Frontend Software Engineer",
"description": "We are looking for a Frontend Software Engineer to join our team in Granada, if you have a passion for User Experience and enjoy working with Javascript technologies this could be the ideal role for you!",
"location": "Hybrid model of working",
"skills": [
"Javascript",
"React",
"Vuejs",
"CSS",
"Lightening Web Components",
"TDD",
"Agile",
],
"salary": "24.000€ - 50.000€",
"url": "https://jobs.jobvite.com/financialforce/job/o82HkfwV",
"email": "rwetherell@financialforce.com",
},
{
"company_avatar": "/theme/images/jobs/nazaries.png",
"company_name": "nazaríes",
"position": "Desarrolldaor/a en Ruby on Rails",
"description": "Requisitos * Ser graduado/a en Ingeniería Informática o FP en Desarrollo Web +1 año de experiencia. *Inglés B2 * Experiencia de 1 año (valoramos candidaturas interesadas en conocer esta categoría) Conocimiento de otras tecnologías de programación web (NodeJS, PHP, MySQL,)",
"location": "Remota o Híbrida",
"skills": ["RoR; ",],
"salary": "20.000€ - 40.000€",
"url": "https://www.nazaries.com/empleo/",
"email": "peopleandvalues@nazaries.com",
},
{
"company_avatar": "/theme/images/jobs/nazaries.png",
"company_name": "nazaríes",
"position": "Desarrollar/a FrontEnd React",
"description": " Actualmente estamos buscando a un Programador/a React Native y ReactJS para que se incorpore a nuestro equipo de desarrollo. Requisitos: * Experiencia mínima de 2 años con React Native y ReactJS * Conocimientos de JavaScript y TypeScript",
"location": "Remota o Híbrida",
"skills": ["React / ReactNative",],
"salary": "20.000€ - 40.000€",
"url": "https://www.nazaries.com/empleo/",
"email": "peopleandvalues@nazaries.com",
},
{
"company_avatar": "/theme/images/jobs/orbitalads.png",
"company_name": "OrbitalAds",
"position": "Frontend React Developer",
"description": "We're growing the Engineering team, and you can be a part of that journey. We are a diverse team of passionate problem-solvers, optimizing the performance of search campaigns and accounts through the automation of keywords management and other campaign quality optimizations.",
"location": "remote | Madrid y remote",
"skills": [
"Strong knowledge of modern/vanilla Javascript",
"Experience with React",
"Prior experience with Typescript",
"Used CSS-in-JS",
],
"salary": "35.000€ - 45.000€",
"url": "https://www.orbitalads.com/about-us",
"email": "david.prior@orbitalads.com",
},
{
"company_avatar": "/theme/images/jobs/orbitalads.png",
"company_name": "OrbitalAds",
"position": "PYTHON ENGINEER",
"description": "We're growing the Engineering team, and you can be a part of that journey. We are a diverse team of passionate problem-solvers, optimizing the performance of search campaigns and accounts through the automation of keywords management and other campaign quality optimizations.",
"location": "remote | Madrid y remote",
"skills": [
"Python",
"Google Clod Platform: Cloud Run / Python Cloud Functions / Kubernetes Jobs BigQuery",
"FireStore",
"BigTable",
"API",
],
"salary": "30.000€ - 40.000€",
"url": "https://www.orbitalads.com/about-us",
"email": "david.prior@orbitalads.com",
},
{
"company_avatar": "/theme/images/jobs/orbitalads.png",
"company_name": "OrbitalAds",
"position": "SENIOR PYTHON ENGINEER",
"description": "We're growing the Engineering team, and you can be a part of that journey. We are a diverse team of passionate problem-solvers, optimizing the performance of search campaigns and accounts through the automation of keywords management and other campaign quality optimizations.",
"location": "remote | Madrid y remote",
"skills": [
"Python",
"Google Clod Platform: Cloud Run / Python Cloud Functions / Kubernetes Jobs BigQuery",
"FireStore",
"BigTable",
"API",
],
"salary": "35.000€ - 45.000€",
"url": "https://www.orbitalads.com/about-us",
"email": "david.prior@orbitalads.com",
},
{
"company_avatar": "/theme/images/jobs/datadog.png",
"company_name": "Datadog",
"position": "Library Software Engineer - Python",
"description": "We're scaling our engineering team in Madrid and presence in Spain. If you’re a master Python programmer and are a great community ambassador who can drive hard technical conversations towards a good solution we’d love to hear from you!",
"location": "Hybrid (Madrid, Paris, Lisbon)",
"skills": [
"Python",
"Frameworks and Libraries",
"Open Source",
"Go",
"JavaScript",
"Ruby",
"Code Telemetry and Introspection",
"English",
],
"salary": "55.000€ - 90.000€",
"url": "https://grnh.se/bb3c05d91us",
},
{
"company_avatar": "/theme/images/jobs/datadog.png",
"company_name": "Datadog",
"position": "Open Source Software Engineer - Integrations",
"description": "We're scaling our engineering team in Madrid and presence in Spain. If you’re a master Python programmer and are a great community ambassador who can drive hard technical conversations towards a good solution we’d love to hear from you!",
"location": "Hybrid (Madrid, Paris, Lisbon)",
"skills": [
"Python",
"Java",
"C++",
"Distributed Systems",
"Monitoring",
"English",
],
"salary": "55.000€ - 90.000€",
"url": "https://grnh.se/aae5847d1us",
},
{
"company_avatar": "/theme/images/jobs/datadog.png",
"company_name": "Datadog",
"position": "Software Engineer",
"description": "We're scaling our engineering team in Madrid and presence in Spain. If you’re a master Python programmer and are a great community ambassador who can drive hard technical conversations towards a good solution we’d love to hear from you!",
"location": "Hybrid (Madrid, Paris, Lisbon)",
"skills": [
"Python",
"Go",
"C++",
"Architecture Design",
"Redis",
"Cassandra",
"Kafka",
"Data Pipelines Architecture",
"English",
],
"salary": "55.000€ - 90.000€",
"url": "https://grnh.se/97a84d421us",
},
{
"company_avatar": "/theme/images/jobs/datadog.png",
"company_name": "Datadog",
"position": "Software Engineer - Distributed Systems",
"description": "We're scaling our engineering team in Madrid and presence in Spain. If you’re a master Python programmer and are a great community ambassador who can drive hard technical conversations towards a good solution we’d love to hear from you!",
"location": "Hybrid (Madrid, Paris, Lisbon)",
"skills": [
"Python",
"Go",
"C++",
"Numpy",
"Redis",
"Cassandra",
"Kafka",
"Data Pipelines Architecture",
"Backend Programming",
"Distributed Systems",
"English",
],
"salary": "55.000€ - 90.000€",
"url": "https://grnh.se/bbaa59ae1us",
},
{
"company_avatar": "/theme/images/jobs/datadog.png",
"company_name": "Datadog",
"position": "Senior Software Engineer - Network Edge",
"description": "We're scaling our engineering team in Madrid and presence in Spain. If you’re a master Python programmer and are a great community ambassador who can drive hard technical conversations towards a good solution we’d love to hear from you!",
"location": "Hybrid (Madrid, Paris, Lisbon)",
"skills": [
"Python",
"Go",
"AWS",
"GCP",
"AZURE",
"Networking, Service discovery",
"Service Mesh",
"English",
],
"salary": "90.000€ - 110.000€",
"url": "https://grnh.se/947d3f931us",
},
###
{
"company_avatar": "/theme/images/jobs/twilio.jpeg",
"company_name": "Twilio",
"position": "Software Engineer - Data Engineer",
"description": "We are looking for someone who is passionate about solving problems using engineering and data, thrives in an evolving environment, brings an enthusiastic and collaborative attitude, and delights in making a difference.",
"location": "Remote Spain",
"skills": [
"Python",
"Scala",
"Java",
"other language",
"SQL",
"Kafka",
"Spark",
"Hive",
"Presto",
"Hadoop",
],
"salary": "40400 EUR - 50500 EUR",
"url": "https://boards.greenhouse.io/twilio/jobs/4555806",
},
{
"company_avatar": "/theme/images/jobs/twilio.jpeg",
"company_name": "Twilio",
"position": "Staff, Data Engineer",
"description": "We are looking for Senior Data Engineer who is passionate about solving problems using engineering and data, thrives in an evolving environment, brings an enthusiastic and collaborative attitude, and delights in making a difference.",
"location": "Remote Spain",
"skills": [