Skip to content

Commit 74afce2

Browse files
committed
update
1 parent 1d48c89 commit 74afce2

File tree

2 files changed

+183
-0
lines changed

2 files changed

+183
-0
lines changed

Diff for: Reference Notes/test.csv

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
Reem Al Qamzi, R.qitects
2+
Marwan AlBalushi, Abdulrahim AlKendi and Najd AlBalushi, Altqadum
3+
Jassim AlSaddah, Founding Partner and Creative Director at Babnimnim Design Studio
4+
Marco Mangili, Dorotea De Simone, and Alessandro Vaghi, MMA Projects
5+
Kate Instone, Founder of Blush International
6+
Waleed Arafa, Founder of Dar Arafa Architecture
7+
Claire Craig, Design Director WA International
8+
Charlie Wu, Founder of Ecru Elements
9+
David Lessard, Design Director and Stas Louca, Managing Director at H+A 
10+
Fady Chams, Owner of Prospect Design International
11+
Olga Melnikova, Founder of OL Interior
12+
Abdulla Al-Shamsi, Founder of Shape Architecture Practice + Research
13+
Ghida Chehab, Founder of Studio Baab
14+
Tariq Khayyat and Xiaosheng Li, Co-founders of tkdp
15+
Noora Al Awar, Fatima Al Zaabi and Afnan Amin, Studio d04
16+
Aedas, Insights by Ignacio Gomez, Global Design Principal
17+
Dewan Architects + Engineers , Insights by Ammar Al Assam, CEO
18+
Arquitectonica, Insights by Philip Gillard, Managing Director
19+
Godwin Austen Johnson (GAJ), Insights by Jason Burnside, Managing Director – Partner
20+
Gensler Middle East
21+
International Design Associates (IDA), Insights by Shahzad Azam, Founder 
22+
LWK + PARTNERS, Insights by Kerem Cengiz, Managing Director – MENA 
23+
RSP, Insights by Michael Magill, Managing Director – RSP Dubai & Global Design Lead
24+
Zaha Hadid Architects (ZHA), Insights by Melodie Leung, Director 
25+
Agata Kurzela
26+
Jonathan Ashmore, Founding Principal and Militza Ashmore, Executive Director, ANARCHITECT
27+
Paul Bishop, Founder of Bishop Design
28+
Michael Melnick, Managing Director of BW Interiors
29+
Carl Gerges, Carl Gerges Architects
30+
Shaun Killa, Founder of Killa Design
31+
Kristina Zanic, Founder of Kristina Zanic Consultants
32+
Thomas Castagnet and Rim Guirari, Co-founders of Mustard & Linen
33+
Pooja Shah-Mulani, Andrew Harms and Rachel Kidd, LW Design Group
34+
Niko Kapa
35+
Omar Nakkash, Founder and Design Director at Nakkash Design Studio
36+
Pallavi Dean, Founder and Creative Director at ROAR
37+
Joakim de Rham, CEO and Co-founder at Swiss Bureau Interior Design (SBID)
38+
Laila Al-Yousuf, Design Director and Partner at SAY Studio
39+
Abboud Malak, Founder of Studio M 
40+
Studio Meshary Al Nassar 
41+
Paul Nulty, Founder of Nulty
42+
Rabah Saied, Founder of Styled Habitat
43+
Rania Hamed, Founder of VSHD Design
44+
Mohamadreza Ghodousi, Founder of ZAV Architects
45+
Firas Alsahin, Founder of 4SPACE
46+
Karim+Elias
47+
Omar Al Gurg, Founder of Modu Method
48+
KAMEH
49+
Aljoud Lootah
50+
Nada Debs
51+
1508 London
52+
Ignacio Gómez, Global Design Principal, Aedas
53+
Agata Kurzela
54+
Allen Architecture Interiors Design (AAID)
55+
ANARCHITECT
56+
Asif Khan
57+
BLINK Design
58+
Carla Conte
59+
CD+M Lighting
60+
Chris Barnes
61+
Desert INK
62+
Dewan Architects and Engineers
63+
DLR
64+
DWP
65+
DZ Design
66+
Etereo
67+
FINCH
68+
Firas from 4SPACE Dubai
69+
Foster and Partners
70+
Kristina Zanic Consultants
71+
Lina Ghotmeh
72+
Lulie Fischer Design Studio
73+
LW
74+
LWK+Partners
75+
MMAC Design
76+
Mustard and Linen
77+
Nada Debbs
78+
Nakkash Design Studio
79+
OMA
80+
Pallavi Dean
81+
Paul Nulty
82+
Roberto Palomba
83+
RSP
84+
Say Studio
85+
Shaun Killa
86+
Styled Habitat
87+
Sumaya Dabbagh
88+
Tadao Ando
89+
Tam Studio
90+
XO Atelier
91+
BW Interiors
92+
Emkay Interiors
93+
Finasi
94+
Havelock One
95+
ISG
96+
Pinnacle Interiors
97+
Smart Renovation
98+
Swiss Bureau Interior Design

Diff for: Reference Notes/webscraping.ipynb

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 6,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": [
9+
"import requests\n",
10+
"from bs4 import BeautifulSoup"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": 23,
16+
"metadata": {},
17+
"outputs": [],
18+
"source": [
19+
"URL = 'https://identity.ae/id50-2025/'\n",
20+
"page = requests.get(URL)\n",
21+
"\n",
22+
"ID502025_soup = BeautifulSoup(page.content, \"html.parser\")\n",
23+
"ID_50_2025 = ID502025_soup.find_all('h3')"
24+
]
25+
},
26+
{
27+
"cell_type": "code",
28+
"execution_count": 24,
29+
"metadata": {},
30+
"outputs": [],
31+
"source": [
32+
"URL = 'https://identity.ae/id50-2024-celebrating-all-50-regional-talents-from-designers-and-architects-to-fit-out-firms-and-art-galleries/'\n",
33+
"page = requests.get(URL)\n",
34+
"\n",
35+
"ID502024_soup = BeautifulSoup(page.content, \"html.parser\")\n",
36+
"ID_50_2024 = ID502024_soup.find_all('h3')"
37+
]
38+
},
39+
{
40+
"cell_type": "code",
41+
"execution_count": 28,
42+
"metadata": {},
43+
"outputs": [],
44+
"source": [
45+
"with open('test.csv', 'a') as file:\n",
46+
" for result in ID_50_2025:\n",
47+
" line = result.text + '\\n'\n",
48+
" file.write(line)"
49+
]
50+
},
51+
{
52+
"cell_type": "code",
53+
"execution_count": 29,
54+
"metadata": {},
55+
"outputs": [],
56+
"source": [
57+
"with open('test.csv', 'a') as file:\n",
58+
" for result in ID_50_2024:\n",
59+
" line = result.text + '\\n'\n",
60+
" file.write(line)"
61+
]
62+
}
63+
],
64+
"metadata": {
65+
"kernelspec": {
66+
"display_name": "main",
67+
"language": "python",
68+
"name": "main"
69+
},
70+
"language_info": {
71+
"codemirror_mode": {
72+
"name": "ipython",
73+
"version": 3
74+
},
75+
"file_extension": ".py",
76+
"mimetype": "text/x-python",
77+
"name": "python",
78+
"nbconvert_exporter": "python",
79+
"pygments_lexer": "ipython3",
80+
"version": "3.13.2"
81+
}
82+
},
83+
"nbformat": 4,
84+
"nbformat_minor": 2
85+
}

0 commit comments

Comments
 (0)