Skip to content

Commit 20a0a2f

Browse files
committedSep 15, 2017
Update read me with new package name.
1 parent 9410781 commit 20a0a2f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# security_id
2-
security_id identifies and validates financial security ids. Currently the following identifiers are supported:
1+
# cymbology
2+
cymbology identifies and validates financial security ids. Currently the following identifiers are supported:
33

44
1. Sedol
55
2. Cusip
@@ -12,7 +12,7 @@ This package can be used to validate these identifiers, discover the validation
1212

1313
### ISIN number
1414
```python
15-
from security_id import Isin, cusip_from_isin
15+
from cymbology import Isin, cusip_from_isin
1616
isin = Isin()
1717

1818
# validate ISIN number 'US0378331005', throwing error IdError if invalid
@@ -31,7 +31,6 @@ check_digit = isin.calculate_checksum('US037833100')
3131
# convert ISIN to CUSIP number.
3232
>>> cusip_from_isin('US0378331005')
3333
'037833100'
34-
3534
```
3635

3736
# Dependancies and Installation Notes

0 commit comments

Comments
 (0)
Please sign in to comment.