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

https://github.com/mwksolution/python-cheat_sheet


https://github.com/mwksolution/python-cheat_sheet

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

          

# Python cheat-sheet

---

## Standard Library
1. [Data types](Standard_Library/types.md)

2. [Collections](Standard_Library/collections.md)

3. [Iterator](Standard_Library/iterator.md)
4. [Context manager](Standard_Library/context_manager.md)
5. [Built-in functions](Standard_Library/built_ins.md)

6. [Itertools](Standard_Library/itertools.md)
7. [Functools](Standard_Library/functools.md)
8. [Operator](Standard_Library/operator.md)
9. [Math and Numbers](Standard_Library/math.md)
10. [Strings](Standard_Library/string.md)
11. [Paths and Files](Standard_Library/files.md)

## Standard library - advanced
1. [Exceptions](Standard_Library/exeptions.md)
2. [Decorator](Standard_Library/decorator.md)
2. [typing](Standard_Library/typing.md)
3. [regex](Standard_Library/regex.md)
4. [dataclasses](Standard_Library/dataclasses.md)
5. [Abstract Base Classes](Standard_Library/abc.md)
6. [Metaclasses](Standard_Library/metaclasses.md)
7. [Concurrency](Standard_Library/Concurrency/concurrency.md)
8. [Descriptors](Standard_Library/descriptor.md)

## Standard library - OS tricks
1. [Signals in Windows 10](Standard_Library/win_signal.md)
---

## Pytest
1. [Pytest](Pytest/pytest.md)

---

## Data Science
1. [Numpy](Numpy/numpy.md)
2. [Pandas](Pandas/pandas.md)
3. [SciPy](Scipy/scipy.md)

---

# Links

Markdown
[Markdown Guide](https://www.markdownguide.org/)

Documentation:
[Python](https://docs.python.org/3/)
[The Python Standard Library](https://docs.python.org/3/library/)