https://github.com/reilleya/properlist
Proper lists for Python
https://github.com/reilleya/properlist
Last synced: 2 months ago
JSON representation
Proper lists for Python
- Host: GitHub
- URL: https://github.com/reilleya/properlist
- Owner: reilleya
- License: gpl-3.0
- Created: 2019-08-04T00:10:10.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-04T00:26:59.000Z (almost 6 years ago)
- Last Synced: 2025-02-12T14:54:48.140Z (4 months ago)
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# properlist

Proper lists for Python
## WhatPython lists that start at 1 instead of 0
## But why
Because it can be done
## Installation
```
pip install properlist
```## Examples
```
from properlist import ProperListproper_list = ProperList()
proper_list.append(5)
proper_list.append(2)print(proper_list[1]) # returns 5
print(proper_list[2]) # returns 2
```## Known Bugs
- [ ] Doesn't support slicing
## License
I know nobody asked for this but GPLv3 so go wild