An open API service indexing awesome lists of open source software.

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

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