Metadata-Version: 2.1
Name: ultiplayground
Version: 0.1.5
Summary: My Personal Playground
Home-page: https://github.com/UltiRequiem/python
License: MIT
Keywords: ultirequiem,utilities,playground
Author: Eliaz Bobadilla
Author-email: eliaz.bobadilladev@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.26.0,<3.0.0)
Project-URL: Repository, https://github.com/UltiRequiem/python
Description-Content-Type: text/markdown

# Python Playground

![CodeQL](https://github.com/UltiRequiem/python/workflows/CodeQL/badge.svg)
![PyTest](https://github.com/UltiRequiem/python/workflows/PyTest/badge.svg)
![Pylint](https://github.com/UltiRequiem/python/workflows/Pylint/badge.svg)
[![Code Style](https://img.shields.io/badge/Code%20Style-Black-000000.svg)](https://github.com/psf/black)
[![PyPi Version](https://img.shields.io/pypi/v/ultiplayground)](https://pypi.org/project/ultiplayground)
![Repo Size](https://img.shields.io/github/repo-size/ultirequiem/python?style=flat-square&label=Repo)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![Lines of Code](https://img.shields.io/tokei/lines/github.com/UltiRequiem/python?color=blue&label=Total%20Lines)
[![GitMoji](https://img.shields.io/badge/Gitmoji-%F0%9F%8E%A8%20-FFDD67.svg)](https://gitmoji.dev)
![Pylint Score](https://img.shields.io/badge/Pylint%20Score-10.00-green.svg)


![Cover](https://i.imgur.com/h9R7o2k.png)

Python is an interpreted high-level general-purpose programming language.
It is the first programming language I learned,
so I have quite a bit of experience with it.

To manage dependencies and build this package
I'm using [Poetry](https://python-poetry.org),
and to test my functions [Pytest](https://pytest.org).
And if you are curious my code
editor is [Neovim](https://github.com/UltiRequiem/UltiVim).

Using [GitHub Actions](https://github.com/UltiRequiem/python/tree/main/.github/workflows)
every time that I push a commit, the project is analyzed using
[CodeQL](https://github.com/UltiRequiem/python/blob/main/.github/workflows/codeql-analysis.yml)
and tested with
[PyTest](https://github.com/UltiRequiem/python/blob/main/.github/workflows/pytest.yml).
Furthermore, every time I release a new version,
the package is automatically published to [PyPI](https://pypi.org/project/ultiplayground).

I do some exercises and challenges every day in:
[UltiRequiem/daily-python-practice](https://github.com/UltiRequiem/daily-python-practice)

## Interesting Articles

- [Python Type Checking](https://realpython.com/python-type-checking)
- [Python's Instance, Class, and Static Methods Demystified](https://realpython.com/instance-class-and-static-methods-demystified)
- [Object-Oriented Programming (OOP) in Python 3](https://realpython.com/python3-object-oriented-programming)
- [Python Objects and Classes](https://www.programiz.com/python-programming/class)

## Interesting Questions

- [How can I access a classmethod from inside a class in Python](https://stackoverflow.com/questions/13900515)
- [Should Python class filenames also be camelCased?](https://stackoverflow.com/questions/42127593)

### Readed Articles

- [Python Closures](https://www.programiz.com/python-programming/closure)
- [You should know this when developing python package](https://medium.com/@udiyosovzon/things-you-should-know-when-developing-python-package-5fefc1ea3606)

### Readed Questions

- [How to call a function within class?](https://stackoverflow.com/questions/5615648)
- [What is the file type of .pylintrc](https://stackoverflow.com/questions/47936144)
- [How do I disable "missing docstring" warnings at a file-level in Pylint?](https://stackoverflow.com/questions/7877522)
- [What's the meaning of the percentages displayed for each test on PyTest?](https://stackoverflow.com/questions/49738081)
- [Python coverage badges](https://stackoverflow.com/questions/29295965)

