Bulding Address: | 8-10 W 37th St |
Building Alternate address: | 8-10 W 37th St |
Postleitzahl : | 10018 |
Neighborhood: | Penn Plaza/Garment |
Borough: | Manhattan |
Stories: | 10 |
Year Built: | 1900 |
Building Class: | C |
Block & lot: | 00838-0056 |
8-10 West 37th Street, located in the Garment District of Manhattan, New York City, has a rich history dating back to its construction in 1924. The building is classified as an Office with Commercial 7-19 Stories (O6) and stands 10 stories tall, with a total building area of 36,083 square feet.
The property's current tax assessor's market value is approximately $10,450,000, with an assessed value of $4,702,500. The estimated property tax for the 2024-2025 year is $450,312.
Historically, the Garment District has been a hub for textile and fashion industries, and buildings like 8-10 West 37th Street have played significant roles in supporting these sectors. Despite its commercial use, the building's architectural style reflects the era in which it was built, contributing to the area's unique urban landscape.
Today, the building continues to serve as a commercial space, offering office and retail opportunities in one of Manhattan's most vibrant business districts.
To convert an address like "8-10 W 37th St, Manhattan, NYC" into HTML and save it in a Django model field, you can use a simple HTML formatting approach. Here's how you can do it:
### Step 1: Define the Model Field
First, define a model field in your Django model to store the address. You can use a `TextField` for this purpose:
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField()
### Step 2: Convert Address to HTML
You can convert the address into HTML by wrapping it in HTML tags. For example, you might want to display it as a paragraph:
python
address = "8-10 W 37th St, Manhattan, NYC"
html_address = f"
{address}
"
### Step 3: Save HTML Address in the Model
Now, save the HTML-formatted address in your model:
python
address_obj = AddressModel(address=html_address)
address_obj.save()
### Step 4: Display in Template
When displaying this in a Django template, ensure you use the `safe` filter to prevent Django from escaping the HTML:
{{ address_obj.address|safe }}
### Full Example
Here's a full example of how you might implement this:
#### models.py
python
from django.db import models
class AddressModel(models.Model):
address = models.TextField()
#### views.py
python
from django.shortcuts import render
from .models import AddressModel
def display_address(request):
address = "8-10 W 37th St, Manhattan, NYC"
html_address = f"
{address}
"
# Create or update the address object
address_obj, created = AddressModel.objects.get_or_create(id=1, defaults={'address': html_address})
if not created:
address_obj.address = html_address
address_obj.save()
context = {'address_obj': address_obj}
return render(request, 'display_address.html', context)
#### templates/display_address.html
Address Display
{{ address_obj.address|safe }}
#### urls.py
python
from django.urls import path
from .views import display_address
urlpatterns = [
path('address/', display_address, name='display_address'),
]
This setup will display the address as HTML in your Django template.
8-10 W 37th St, Manhattan, NYC offers the following building amenities:
- Brand New Lobby
- New Elevator Cabs
- Updated Mechanicals
- Tenant-Exclusive Rooftop Deck
- High-End Finishes
- Abundant Natural Light
- Open Floor Plan Layout
- Private Restrooms
- On-Site Management
8-10 W 37th St, Manhattan, NYC
This well-appointed office building in Midtown South is located just three blocks from Bryant Park. It features a brand new lobby, elevator cabs, and mechanicals. Neighbors include the consulate general of several countries, The Morgan Library & Museum, Core Power Yoga, The Empire State Building, CUNY Graduate Center, Mercy College, and more.
Current Tenants
Unfortunately, a complete list of current office and retail tenants by type of business is not available. However, the building is suitable for various types of businesses, including:
- Office Space: Available for lease with options for customization.
- Medical Offices: Also available for lease with high-end finishes.
Building Features
- Brand New Lobby and Elevator Cabs
- Modern Mechanicals
- Tenant Amenity Rooftop
- High-End Finishes
- Abundant Natural Light
- Customizable Spaces
Internet Providers at 8-10 W 37th St, Manhattan, NYC:
- Spectrum: Cable internet with speeds up to 1 Gbps, available to 82.7% of NYC.
- Optimum: Offers both cable and fiber internet, with cable speeds up to 940 Mbps and fiber speeds up to 8 Gbps, available to 42.5% and 37% of NYC respectively.
- Verizon: Provides fiber internet with speeds up to 2.3 Gbps, available to 85.3% of NYC.
- Xfinity: Cable internet with speeds up to 2 Gbps, available to 21% of NYC.
- T-Mobile Home Internet: 5G internet with typical speeds between 133 Mbps and 415 Mbps, available to 80.7% of NYC.
- HughesNet and Viasat: Satellite internet options available to 100% of NYC.
- Starlink: Satellite internet with speeds up to 220 Mbps, available to 100% of NYC.
Availability may vary based on specific building infrastructure and provider coverage.
Location: 8-10 W 37th St, Manhattan, NYC
Transportation Options:
- Subway: Nearest stations are 42 St-Bryant Pk (3 min walk) and Times Sq-42 St (5 min walk). Lines include 2, 4, 7, B, R.
- Bus: Nearby bus stops include 37th St & 6th Ave Westsider and 6 Av/W 37 St. Bus lines include 160, BXM4, M1, M101, M55.
- Train: Nearest train station is 33rd Street (9 min walk). Train lines include HARLEM and PATH.
Cross Streets:
- 6th Avenue
- Broadway
- 5th Avenue
None
None