Bulding Address: | 128 W 36th St |
Building Alternate address: | 128 W 36th St |
Postleitzahl : | 10018 |
Neighborhood: | Penn Plaza/Garment |
Borough: | Manhattan |
Stories: | 4 |
Year Built: | 1927 |
Building Class: | C |
Block & lot: | 00811-0049 |
There is limited specific information available about the history of 128 W 36th St, Manhattan, NYC. However, the area around West 36th Street in Manhattan has a rich history, with many buildings dating back to the late 19th and early 20th centuries.
Manhattan's Garment District, where West 36th Street is located, was once a major hub for textile manufacturing and fashion. The area saw significant development during the late 19th and early 20th centuries, with many buildings constructed for commercial and residential purposes.
For detailed historical information about a specific building like 128 W 36th St, it would be necessary to consult local historical records or the New York City Department of Buildings for more precise data.
To store an address like "128 W 36th St, Manhattan, NYC" in a Django model field and convert it to HTML, you can use a `CharField` or `TextField` to store the address as a string. Here's how you might define the field in your model:
python
from django.db import models
class Location(models.Model):
address = models.CharField(max_length=255)
If you want to convert this address to HTML (for example, to display it in a web page), you can use Django's template system or Python's built-in string formatting methods. However, if you want to store the HTML version in the database, you could do something like this:
python
from django.db import models
class Location(models.Model):
address_html = models.TextField()
# Example of converting address to HTML and saving it
location = Location()
location.address_html = f"
{'128 W 36th St, Manhattan, NYC'}
"
location.save()
However, storing HTML in the database is generally not recommended unless you have a specific reason for doing so. It's usually better to store plain text and convert it to HTML when needed.
If you want to create a custom field that automatically converts the address to HTML, you could create a custom field class:
python
from django.db import models
class AddressField(models.Field):
description = "Address field that converts to HTML"
def __init__(self, *args, **kwargs):
kwargs["max_length"] = 255
super().__init__(*args, **kwargs)
def from_db_value(self, value, expression, connection):
return value
def to_python(self, value):
return value
def get_prep_value(self, value):
return value
def value_to_string(self, obj):
return f"
{obj.address}
"
class Location(models.Model):
address = AddressField()
# However, the above approach doesn't directly store HTML in the database.
# To store HTML, you would need to override the save method or use a signal.
For storing HTML directly, you might need to use signals or override the save method, which is more complex and generally not recommended due to security concerns with storing user-generated HTML.
### HTML Conversion Example
If you just want to convert the address to HTML when displaying it, you can do so in your Django template:
{{ location.address }}
Or if you want to add additional HTML formatting:
{{ location.address|safe }}
Using `|safe` tells Django not to escape the HTML, but be cautious with this approach to avoid XSS vulnerabilities.
### Final HTML for Saving
If you still want to save the HTML version in the database (not recommended), here's the HTML:
128 W 36th St, Manhattan, NYC
Building Amenities at 128 W 36th St, Manhattan, NYC:
- Location: Penn Plaza/Garment District, Manhattan
- Year Built: 1927
- Year Renovated: 2006
- Building Height: 4 Stories
- Building Class: Class C
- Typical Floor Size: Approximately 3,032 SF
- Signage: Available
- Elevator: Yes
- Neighborhood Amenities: Close proximity to public transportation, restaurants, and shops
128 W 36th St, Manhattan, NYC
This commercial building, located in Midtown South, was built in 1927 and features four stories with four units.
Current Tenants by Business Type:
- Beauty and Wellness:
- Manhattan Nails Salon
- Wink Eyelash
- Food and Beverage:
- Marketing and Advertising:
Internet Providers at 128 W 36th St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99. Offers fiber-optic internet with symmetrical upload and download speeds.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with speeds up to 1.5 Gbps. Known for low prices starting at $20 and unlimited data usage.
- Spectrum: Provides cable internet with speeds up to 1 Gbps. Offers bundles with TV and phone starting at $30. Spectrum is widely available in Manhattan.
- T-Mobile 5G Home Internet: Offers wireless internet with speeds between 133 Mbps and 415 Mbps. Pricing starts at $60 per month, with a plug-and-play setup.
- Optimum: Offers cable and fiber internet with speeds up to 8 Gbps. Pricing starts at $40 per month.
These providers offer a mix of wired and wireless options, with Verizon Fios and Astound Broadband being top choices for fiber-optic connections.
128 W 36th St, Manhattan, NYC is located in the Garment District. The cross streets are 7th Avenue and 6th Avenue.
Transportation Options:
- Bus: Nearby bus stops include W 34 St/7 Av, 7 Av/W 36 St, and 6 Av/W 36 St. Bus lines such as 119, 158, M55, Q32, and QM10 are available.
- Subway: The nearest subway stations are 34 St-Herald Sq and 34 St-Penn Station, both within a 4-minute walk. Subway lines include B, M, Q, R, and others.
- Train: The nearest train station is 33rd Street, a 3-minute walk away. Train lines include HUDSON and PATH.
Neighborhood Information:
- Neighborhood: Garment District
- Zip Code: 10018
- Borough: Manhattan
None
None