Skip to content

Commit ec4232d

Browse files
committed
bump version, update readme
1 parent 471137a commit ec4232d

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,19 @@ $ export LD_LIBRARY_PATH=/var/geosupport/version-17c/lib/
4040

4141
3. Geocode with:
4242

43-
**Street address - single input** - [Function 1B](https://nycplanning.github.io/Geosupport-UPG/appendices/appendix01/#function-1b) (Boro or zip is optional)
44-
```python
45-
result = g.address(address="125 Worth st, NY, NY")
4643

47-
result = g.address(address="125 Worth st", boro=1)
48-
```
4944
**Street address** - [Function 1B](https://nycplanning.github.io/Geosupport-UPG/appendices/appendix01/#function-1b) (Must provide zip code or borough)
5045
```python
5146
result = g.address(house_number="125", street="Worth st", zip=10013)
5247

5348
result = g.address(house_number="125", street="Worth st", boro='MANHATTAN')
5449
```
50+
**Street address (single input)** - [Function 1B](https://nycplanning.github.io/Geosupport-UPG/appendices/appendix01/#function-1b) (Boro or zip is optional)
51+
```python
52+
result = g.address(address="125 Worth st, NY, NY")
53+
54+
result = g.address(address="125 Worth st", boro=1)
55+
```
5556
**Street address point** - [Function AP](https://nycplanning.github.io/Geosupport-UPG/appendices/appendix01/#function-ap) (Must provide zip code or borough)
5657
```python
5758
result = g.address_point(house_number="125", street="Worth st", zip=10013)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='python-geosupport',
16-
version='0.0.9',
16+
version='0.0.11',
1717
url='https://github.com/ishiland/python-geosupport',
1818
description='Python bindings for the NYC Geosupport Desktop application',
1919
long_description="""

0 commit comments

Comments
 (0)