Hey 👋! I’m @dunamix (Chidebele Dunamis), a passionate software engineer from Nigeria.
I created Nexios, Nexios Generics, Voltar, Formaby, and asgi_statik and some other project you can find here.
Started coding at 8
-
Nexios
Nexios is a lightweight, high-performance ASGI web framework for Python—built for speed, simplicity, and flexibility. Inspired by Express.js, Nexios lets you build APIs fast, with first-class async support, custom auth backends, and zero boilerplate. Perfect for devs who want full control without the Django overhead. -
Nexios Generics
NexiosGeneric is a class-based CRUD wrapper for Nexios, combining the power of Pydantic and Tortoise ORM. It simplifies building async APIs with automatic serialization, validation, and database operations—ideal for fast, scalable RESTful endpoints. -
Voltar
Voltar is a Python library designed for data validation with simplicity and transparency in mind. Inspired by Zod, Voltar allows developers to define schema-driven data validation without relying on hidden magic or complex patterns. It combines Python's type hints with explicit validation logic, ensuring clear, maintainable, and highly customizable validation rules. -
Formaby
Formaby is a platform inspired by Google Forms, designed for creating surveys and collecting feedback with ease. Built with modern web technologies, it allows users to build forms, share links, and analyze responses—perfect for educators, researchers, and teams needing quick feedback solutions. -
asgi_statik
asgi_statik is a minimal ASGI-compatible static file server. It makes it easy to serve static assets like HTML, CSS, JS, and images in any ASGI app with zero setup. Ideal for microservices, SPAs, or Nexios-based apps needing simple static file delivery.
Since we are here why not talk about nexios
from nexios import NexiosApp
app = NexiosApp()
@app.route('/')
def home(req, res):
return res.json({'message': 'Welcome to Nexios!'})
📝 Latest from Medium
- OSI Model & Understanding Networking — The Full Guide
- Why Trying Too Hard to Write Perfectly Clean Code Can Make Your Project More Complex
- Real-Time WebSockets with Nexios (Building a Gossip Chat App in Python)
- Setting up PostgreSQL with Tortoise ORM in Nexios
- Structuring a Nexios Application for Production: A Comprehensive Guide