https://github.com/dotcs/py-linked-lists
Having fun with linked lists in Python using type hints and mypy
https://github.com/dotcs/py-linked-lists
linked-list mypy python static-code-analysis
Last synced: 9 months ago
JSON representation
Having fun with linked lists in Python using type hints and mypy
- Host: GitHub
- URL: https://github.com/dotcs/py-linked-lists
- Owner: dotcs
- Created: 2021-03-31T20:00:11.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-19T20:10:44.000Z (almost 5 years ago)
- Last Synced: 2024-04-14T23:10:11.452Z (almost 2 years ago)
- Topics: linked-list, mypy, python, static-code-analysis
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# LinkedList in Python
This repository is for fun and learning about a bunch of things:
- Implement a custom `LinkedList` class in Python
- Use Python generics to add (strong) typing to the `LinkedList` implementation
- Use `mypy` for static code analysis
Please note that this code is not production ready.
## Getting started
This repository uses [Taskfile].
Clone the repository and then install and lint/test the package with
```console
$ task install
$ task lint test
```
[taskfile]: https://taskfile.dev