Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -81,7 +81,6 @@ class Me:
|
|
| 81 |
text = page.extract_text()
|
| 82 |
if text:
|
| 83 |
cleaned_text = re.sub(r'[^a-zA-Z0-9@\s.,!?]', '', text) # Keep alphanumeric, spaces, and common punctuation
|
| 84 |
-
linkedin += cleaned_text
|
| 85 |
self.linkedin += cleaned_text
|
| 86 |
with open("me/summary.txt", "r", encoding="utf-8") as f:
|
| 87 |
self.summary = f.read()
|
|
|
|
| 81 |
text = page.extract_text()
|
| 82 |
if text:
|
| 83 |
cleaned_text = re.sub(r'[^a-zA-Z0-9@\s.,!?]', '', text) # Keep alphanumeric, spaces, and common punctuation
|
|
|
|
| 84 |
self.linkedin += cleaned_text
|
| 85 |
with open("me/summary.txt", "r", encoding="utf-8") as f:
|
| 86 |
self.summary = f.read()
|