Bulding Address: | 110 2nd Ave |
Building Alternate address: | 110 Second Ave |
Zip Code: | 10003 |
Neighborhood: | Greenwich Village |
Borough: | Manhattan |
Stories: | 4 |
Year Built: | 1900 |
Building Class: | C |
The building at 110 Second Avenue in Manhattan, NYC, is a historic Greek Revival townhouse constructed between 1837 and 1838. It was one of four houses built for the Mead brothers: Ralph, Staats, and Benjamin. Initially, this section of Second Avenue was a prestigious residential area, but it soon transitioned into a less affluent neighborhood.
The house changed hands several times before being purchased by the Women's Prison Association in 1874. It was renamed the Isaac T. Hopper House in honor of one of the association's founders. The building served as the first halfway house for women released from prison, providing shelter, counseling, and job training.
Today, the Isaac T. Hopper House is a New York City landmark and listed on the National Register of Historic Places. Despite sustaining damage from a nearby fire in December 2020, the building was sold to Self Reliance New York Federal Credit Union in 2024 for $7.4 million. The credit union plans to renovate the property for administrative and community use.
To convert the address "110 2nd Ave, 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:
110 2nd Ave, Manhattan, NYC
If you want to make it more structured, you could use HTML elements like `
` or ``:
110 2nd Ave,
Manhattan,
NYC
In Django, you would save this HTML string in a model field, typically using a `TextField` or `CharField` depending on the length of the content:
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField() # or models.CharField(max_length=255)
Then, when saving the address:
python
address_obj = AddressModel(
address="110 2nd Ave, Manhattan, NYC"
)
address_obj.save()
To display this HTML content in a Django template, you would use the `safe` filter to prevent Django from escaping the HTML:
{{ address_obj.address|safe }}
110 2nd Ave, Manhattan, NYC Building Amenities:
- Hardwood Floors
- Air Conditioning
- Balcony
- Bus Line
- Courtyard
- Skylights
- Kitchen
- Basement
- Central Heating
- High Ceilings
- Natural Light
110 2nd Avenue, Manhattan, NYC
This historic building, constructed in 1838, is located in the East Village neighborhood of Manhattan. It was recently purchased by Self Reliance New York Federal Credit Union for $7.4 million.
Current Tenants
As of the latest information, the building is not currently occupied by multiple office or retail tenants. Instead, it is being renovated by Self Reliance New York Federal Credit Union for administrative and community purposes.
Previous Use
Historically, the building was owned by the Women's Prison Association (WPA) and served as a residential alternative to imprisonment for women.
To save this HTML in a Django model field, you would typically use a `TextField` in your model:
python
from django.db import models
class BuildingDescription(models.Model):
description = models.TextField()
Then, you can create an instance of this model and save the HTML content:
python
description = BuildingDescription(description="...
") # Insert the HTML here
description.save()
Or, if you are using a form to input this data, ensure your form is bound to the model and uses a `CharField` or `TextField` for the description field.
python
from django import forms
from .models import BuildingDescription
class BuildingDescriptionForm(forms.ModelForm):
class Meta:
model = BuildingDescription
fields = ('description',)
Internet Providers at 110 2nd Ave, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps and reliable service. Plans start at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with unlimited data. Plans start at $20.
- Spectrum: Provides cable internet with speeds up to 1 Gbps and no data caps. Plans start at $50.
Availability may vary depending on the specific location within the building.
110 2nd Avenue, Manhattan, NYC is located near several transportation options:
- Subway: The nearest subway station is not directly at 110th Street and 2nd Avenue but will be part of the future Second Avenue Subway expansion. Currently, the closest subway options are along the Lexington Avenue Line.
- Bus: Bus routes M101, M15, M15-SBS, M2, and M102 serve the area.
- Train: Nearby train options include the Metro-North Railroad at Harlem–125th Street station.
Cross Streets: 110th Street intersects with 2nd Avenue.
To save this HTML in a Django model field, ensure the field is defined as a `TextField` in your model, allowing it to store HTML content. Here's a basic example:
python
from django.db import models
class TransportationInfo(models.Model):
location = models.CharField(max_length=100)
description = models.TextField() # Store HTML here
# Example usage
info = TransportationInfo(
location="110 2nd Ave, Manhattan, NYC",
description="...
...
" # Insert HTML here
)
info.save()
None
None