Bulding Address: | 428 E 89th St |
Building Alternate address: | 428 E 89th St |
Zip Code: | 10128 |
Neighborhood: | Upper East Side |
Borough: | Manhattan |
Stories: | 5 |
Year Built: | 1920 |
Building Class: | C |
428 E 89th St, Manhattan, NYC
This apartment building is located in the Upper East Side neighborhood of Manhattan, New York City. It offers a mix of studio and one-bedroom apartments, many of which feature renovated stainless-steel kitchens, classic exposed brick, and private outdoor terraces or gardens.
The building was constructed in 1920 and consists of 21 units across five stories. It is situated near Carl Schurz Park and the East River Esplanade, providing residents with easy access to scenic outdoor spaces.
Residents also benefit from proximity to the Q train at 86th Street, making it a convenient location for commuters. The area is known for its high walkability and excellent public transportation options, with a Walk Score of 98 and a Transit Score of 100.
The building includes amenities such as a fitness center, laundry facilities, and recycling services. It is part of the New York City Geographic District #2 attendance zone, with nearby schools including Yorkville Community School and Jhs 167 Robert F Wagner.
To convert the address "428 E 89th St, Manhattan, NYC" into HTML and save it in a Django model field, you can simply wrap the text in HTML tags if needed. However, since the address itself doesn't require HTML formatting, you can save it as plain text. Here's how you might represent it in HTML if you want to emphasize certain parts:
428 E 89th St, Manhattan, NYC
This HTML code can be saved directly into a Django model field, such as a `TextField`, without needing additional conversion.
If you want to ensure that the HTML is rendered properly in your Django templates, you can use the `safe` filter to prevent Django from escaping the HTML:
django
{{ address | safe }}
This assumes that `address` is the field in your model containing the HTML text.
Here's an example of how you might define this field in your Django model:
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField()
And then save the HTML string to it:
python
address_obj = AddressModel(address="
428 E 89th St, Manhattan, NYC
")
address_obj.save()
Building Amenities at 428 E 89th St, Manhattan, NYC:
- Fitness Center
- Laundry Facilities
- Recycling
- Online Services
428 E 89th St, Manhattan, NYC
This building is primarily residential, featuring a mix of studio and one-bedroom apartments. Many units include renovated stainless-steel kitchens, classic exposed brick, and private outdoor terraces or gardens.
Current Office and Retail Tenants
As of the latest information, there are no listed office or retail tenants in this building. It is primarily a residential building.
To create an HTML snippet for internet providers available at 428 E 89th St, Manhattan, NYC, and save it in a Django model field, you can use the following HTML structure. Note that the specific providers available at this exact address might vary, so this example is based on common providers in Manhattan:
Internet Providers at 428 E 89th St, Manhattan, NYC
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with unlimited data, starting at $20/month.
- Spectrum: Provides cable internet with speeds up to 1 Gbps, widely available across Manhattan, starting at $30/month.
- Optimum: Offers high-speed internet with speeds up to 8 Gbps, though availability may vary.
This HTML can be saved directly into a Django model field as a string. Ensure that your Django model field is defined to handle HTML content, typically using a `TextField` or `CharField` with sufficient length to accommodate the HTML string.
To convert this into a Django model field, you would define a model like so:
python
from django.db import models
class BuildingDetails(models.Model):
address = models.CharField(max_length=255)
internet_providers = models.TextField()
# Example usage
building = BuildingDetails(
address='428 E 89th St, Manhattan, NYC',
internet_providers='''
Internet Providers at 428 E 89th St, Manhattan, NYC
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with unlimited data, starting at $20/month.
- Spectrum: Provides cable internet with speeds up to 1 Gbps, widely available across Manhattan, starting at $30/month.
- Optimum: Offers high-speed internet with speeds up to 8 Gbps, though availability may vary.
'''
)
building.save()
This example assumes you have a `BuildingDetails` model with fields for the address and internet providers. The `internet_providers` field is a `TextField` that can hold the HTML string.
428 E 89th St, Manhattan, NYC offers excellent transportation options:
- Subway: The Q train is located four blocks away at 86th Street. Additionally, the #4, #5, and #6 trains are accessible on East 86th Street.
- Airports:
- Laguardia Airport is approximately 7.5 miles away, a 17-minute drive.
- John F. Kennedy International Airport is about 18.8 miles away, a 30-minute drive.
- Cross Streets: First Avenue and York Avenue.