Bulding Address: | 337 E 90th St |
Building Alternate address: | 337 E 90th St |
Zip Code: | 10128 |
Neighborhood: | Upper East Side |
Borough: | Manhattan |
Stories: | 5 |
Year Built: | 1920 |
Building Class: | C |
337 East 90th Street, located in the Yorkville neighborhood of Manhattan, NYC, is a pre-war rental building constructed in 1920. It features 20 residences across five stories. The building reflects the architectural style typical of the early 20th century in New York City.
The Upper East Side, where this building is situated, has a rich history dating back to the 19th century when vast farmland was subdivided by the city's street grid. This area became renowned for its iconic apartments and townhouses, many of which were built during the same period as 337 East 90th Street.
Over time, the neighborhood has evolved, with significant changes such as the removal of elevated train lines in the 1950s, which opened up more space for development and enhanced the area's appeal. Today, the Upper East Side is known for its elegant pre-war buildings, stunning Central Park vistas, and iconic cultural institutions.
To convert the address "337 E 90th St, Manhattan, NYC" into HTML and save it in a Django model field, you can simply wrap the address in HTML tags if needed. However, since the address itself doesn't require conversion to HTML, you can store it as plain text in a Django model field. If you want to format it with HTML tags for display purposes, you can do so like this:
337 E 90th St, Manhattan, NYC
If you want to ensure that the address is displayed in a specific format, you can use HTML tags to style it:
Address: 337 E 90th St, Manhattan, NYC
In Django, you would typically store this in a `CharField` or `TextField` depending on your needs:
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField()
Then, you can save the HTML-formatted address in the `address` field:
python
address_obj = AddressModel(address="
Address: 337 E 90th St, Manhattan, NYC
")
address_obj.save()
When displaying this in a Django template, ensure you use the `safe` filter to prevent Django from escaping the HTML:
{{ address_obj.address | safe }}
Building Amenities at 337 E 90th St, Manhattan, NYC
- Hardwood Floors
- Refrigerator
- Tub/Shower
- Heating
- Kitchen
- Oven
Utilities Included
Lease Options
337 East 90th Street, Manhattan, NYC
This building is a well-maintained low-rise walk-up built in 1920, featuring 5 stories and 20 apartments. It is located in the Yorkville neighborhood of the Upper East Side.
Current Tenants
As of the latest information, there are no specific details available on current office or retail tenants in this building. The building primarily consists of residential units.
Residential Features
- Studio and one-bedroom apartments available
- Average unit size varies, with some studios around 300 sqft
- Features include large living spaces and separate windowed kitchens
To convert the text about internet providers at 337 E 90th St, Manhattan, NYC into HTML and save it in a Django model field, you can use a rich text editor like CKEditor in Django. However, for simplicity, let's manually convert the text into HTML. Here's an example of how you might format it:
Internet Providers at 337 E 90th St, Manhattan, NYC:
- Verizon: Known for its high-speed Fios service, offering speeds up to 2 Gbps.
- Spectrum: Provides cable internet with speeds up to 1 Gbps and widespread coverage.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with competitive pricing.
This HTML can be saved directly into a Django model field that supports rich text or HTML content. Ensure that your Django model uses a field type like `TextField` or `RichTextField` to store HTML content.
Here's a simple Django model example using `TextField`:
python
from django.db import models
class InternetInfo(models.Model):
location = models.CharField(max_length=255)
providers_info = models.TextField() # Store HTML here
# Example of saving the HTML
info = InternetInfo(location='337 E 90th St, Manhattan, NYC')
info.providers_info = """
Internet Providers at 337 E 90th St, Manhattan, NYC:
- Verizon: Known for its high-speed Fios service, offering speeds up to 2 Gbps.
- Spectrum: Provides cable internet with speeds up to 1 Gbps and widespread coverage.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with competitive pricing.
"""
info.save()
Make sure your Django template is configured to render HTML content safely using `{{ info.providers_info|safe }}`.
337 E 90th St, Manhattan, NYC is conveniently located near several transportation options:
- Subway: The nearest subway station is 86 St, which is a 6-minute walk away. Other nearby stations include 96 St, accessible within a 7-minute walk.
- Commuter Rail: The Harlem-125th Street Station is a 6-minute drive away.
- Bus: Several bus lines pass through nearby streets, including Madison Avenue and Lexington Avenue.
Cross Streets: The property is situated near the intersection of East 90th Street and Lexington Avenue.
Nearest Airports: LaGuardia Airport is approximately a 17-minute drive, while John F. Kennedy International Airport is about a 30-minute drive.