Skip to content
Avatar
🎲
🎲

Highlights

  • Arctic Code Vault Contributor
rednafi/README.md

import json
from dataclasses import asdict, dataclass


@dataclass
class Stack:
    languages   : tuple = ("Python", "Bash")
    databases   : tuple = ("PostgreSQL", "Mongo", "Redis")
    misc        : tuple = ("Docker", "Celery")
    ongoing     : tuple = ("Django", "GraphQL", "JavaScript")

    def serialize(self):
        return json.dumps(asdict(self), indent=4)


stack = Stack()
print(stack.serialize())
​

Pinned

  1. 🐍 Simple FastAPI template with factory pattern architecture

    Python 85 7

  2. 🐍 The strangely familiar config parser

    Python 40

  3. Opinionated coding guidelines and best practices in Python

    200 13

  4. Urban sound source tagging from an aggregation of four second noisy audio clips via 1D and 2D CNN (Xception)

    Jupyter Notebook 34 11

  5. 🌿 Contextualizing Python's Asyncio

    Shell 76 5

  6. 🎲 Dotfiles for Debian Linux

    Shell

2,385 contributions in the last year

Nov Dec Jan Feb Mar Apr May Jun Jul Aug Sep Oct Mon Wed Fri

Contribution activity

November 1, 2020

rednafi has no activity yet for this period.

October 2020

Created a pull request in florimondmanca/www that received 1 comment

Created an issue in willmcgugan/rich that received 2 comments

Keyerror while using rich.print

Describe the bug A KeyError saying that key __rich__ is missing occurs while trying to print the instance of a custom dictionary class. To Reproduce

2 comments

Seeing something unexpected? Take a look at the GitHub profile guide.

You can’t perform that action at this time.