Dirección: | 4-6 E 93rd St |
Otras Direcciones: | 4-6 E 93rd St |
Código postal: | 10128 |
Neighborhood: | Upper East Side |
Borough: | Manhattan |
# de Pisos: | 4 |
Year Built: | 1910 |
Building Class: | C |
The George F. Baker Jr. Houses, located at 67, 69, and 75 East 93rd Street on the Upper East Side of Manhattan, NYC, have a rich history. The oldest building in the complex is the Francis F. Palmer House at 75 East 93rd Street, designed by Delano & Aldrich and completed in 1918. Initially, it was built for stockbroker Francis Fletcher Palmer on a site previously occupied by a Roman Catholic school.
George F. Baker Jr. acquired the Palmer House in 1926 and later expanded the property by constructing Nos. 67 and 69 East 93rd Street. No. 67 was completed in 1931 as a residence for George F. Baker Sr., though he passed away before moving in. The entire ensemble was added to the National Register of Historic Places in 1982 and is designated as a New York City landmark.
Over the years, the properties have changed hands several times. Notably, No. 75 was sold in 1958 to the Russian Orthodox Church Outside of Russia, which converted it into administrative offices and a cathedral. The buildings have undergone restorations, including a significant restoration of No. 75 in 1997.
Today, these historic homes continue to reflect the architectural elegance of their time, with their neoclassical and neo-Federal styles standing as testaments to Manhattan's architectural heritage.
To convert the address "4-6 E 93rd St, Manhattan, NYC" into HTML and save it in a Django model field, you can simply wrap the address in HTML tags. Here's how you might do it:
4-6 E 93rd St, Manhattan, NYC
However, if you want to use this in a Django model, you would typically store it as a string and then convert it to HTML in your template if necessary. Here's how you might define a model field for this:
python
from django.db import models
class Address(models.Model):
address = models.TextField() # Store the address as plain text
def __str__(self):
return self.address
Then, in your template, you can display it as HTML:
{{ address.address|safe }}
The `|safe` filter is used to prevent Django from escaping the HTML, but be cautious with this if you're dealing with user-input data to avoid XSS vulnerabilities.
If you want to convert the address to HTML programmatically (for example, if you want to add specific HTML tags around parts of the address), you could do something like this in your view or model method:
python
from django.utils.html import escape
def convert_to_html(address):
# Example of adding HTML tags around parts of the address
street, city, state = address.split(", ")
html_address = f"
{escape(street)},
{escape(city)},
{escape(state)}"
return html_address
# Usage
address = "4-6 E 93rd St, Manhattan, NYC"
html_address = convert_to_html(address)
However, for most cases, storing the address as plain text and converting it to HTML in the template is sufficient and safer.
Building Amenities at 4-6 East 93rd Street
- Private Storage
- Exercise Room
4-6 East 93rd Street, Manhattan, NYC
This building is located in the heart of Carnegie Hill, a charming neighborhood on the Upper East Side of Manhattan. It offers a mix of residential and commercial spaces.
Current Office and Retail Tenants
As of the latest available data, the following tenants are located at 4-6 East 93rd Street:
Tenant Name |
Type of Business |
Example Tenant |
Example Business Type |
For the most accurate and up-to-date tenant list, please contact the building management or a local real estate agent.
**Note:** The actual list of tenants for 4-6 East 93rd Street is not provided in the search results. You should replace the placeholder information with the correct tenant details.
Internet Providers at 4-6 E 93rd St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps and reliable service. Coverage is extensive in Manhattan, but availability may vary by specific location.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with speeds up to 1.5 Gbps. Coverage is widespread but may have gaps in certain areas like Washington Heights and Inwood.
- Spectrum: Provides cable internet with speeds up to 1 Gbps and is available almost everywhere in Manhattan.
- STARRY Internet: Offers fixed wireless internet with high customer satisfaction ratings, though speeds may vary.
- Earthlink Fiber: Offers fiber service with speeds up to 2,209 Mbps, covering a significant portion of Manhattan.
For precise availability, it's recommended to check with each provider using your specific address.
4-6 East 93rd Street, Manhattan, NYC is located near several public transportation options:
- Subway: The nearest subway lines are the 4 and Q trains. The closest station is 96th Street, which is a 4-minute walk away.
- Bus: Bus lines BXM4, M103, M15, M15-SBS, M96, and M98 stop nearby. The closest bus stop is at 3rd Avenue and East 93rd Street.
- Cross Streets: The cross streets for this location are 3rd Avenue and 2nd Avenue.
None
None