Skip to main content

Autumn Framework - Build front-end in the back-end

What are we?

Autumn framework, a framework built to make front-end work as close as possible to back-end work. Our goal is not to provide a server or back-end, but a tool that makes front-end look like back-end. By making an ORM(Object Relational Mapping), we add an object-oriented way to write HTML documents and CSS styles directly from Python.

Why us?

You are not limited to us, there are Jinja2 and so many other libraries. What makes us unique is making you to look at a Python class rather than a div tag.

While our top priority is Developer Experience (DX), type safety, and over-the-top composition, we might as well note the speed and caching mechanisms:

Tests proven Autumn's speed is less than one millisecond(For simple pages), and removing the IO for visible test outputs increases the speed even more, pushing it towards/below 0.5ms. Speed is improved even further by caching tags/styles, making the load time for a static HTML page identical to a simple O(1) for a simple list lookup.

Installing

The project is available in PyPI as autumn-core, so installing it is as simple as a:

cd /path/to/new/project
python3 -m venv .venv
.venv/bin/pip install autumn-core # or .venv/Scripts/pip for windows

Then you can start using Autumn in any way you would like.

How?

The process is straight. But there are important things to consider:

  • Thread safety: While we try our best to promise thread safety, such as features like before_build, we cannot lock every read/write for classes defined outside of Autumn's hands. All classes that do not inherit from AbstractBase are NOT made to be automatically thread-safe. Your classes are up to you, so, for reads/writes, it's best to access self._lock.
  • Dynamicity: When elements are dynamic, their dynamic must be set to True. However, if any of the tags owned are dynamic, the parent will be inferred as dynamic, therefore no need to set dynamic to True. All dynamic tags completely bypass caching.
  • Building: At before_build, you can either just change the class and let the process continue, or return a string. The returned string is the final output of the build.

here is an example with HTML, another with CSS.

HTML

Instead of writing:

<div id="hello-world">Hello World!</div>

You write:

from Autumn import new

Base = new()

tag = Base.tag

class MyDiv(tag.Tag):
    def __init__(self):
        self.name = "div"
        self.closable = True
        self.identifier = "hello-world"
        self.tags = ["Hello World!"]
        # How we recommend it.
        # However, you can place spaces, tabs, and newlines, but be aware that they will be
        # Replaced with -.
        
        super().__init__()

While this seems like writing too much, it's core benefit will be seen when writing dynamic tags or when you don't know about HTML too much. Let's see an example for a dynamic tag.

import time
from Autumn import new

Base = new()


class MyText(Base.tag.Tag):
    def __init__(self, classes: list[str]):
        self.name = "p"
        self.closable = True
        self.classes = classes
        self.dynamic = True
        
        super().__init__()

    def before_build(self, **_kwargs): # Recommended.
        self.tags.append(time.time())

This will produce a well behaving Paragraph with dynamic elements.

CSS

Well, this is straight forward.

div.any-div#my-div-used-for-footer {color: #000000;}

will simply turn into:

from typing import Any
from Autumn import new

Base = new()

class MyStyle(Base.style.Style):
    
    def __init__(self):
        self.name = Base.name.Name("div", Base.name.Identifier("my-div-used-for-footer"),
                                   [Base.name.Class("any-div")])
        self.styles = [
            "color: #000000;"
        ]
        
        super().__init__()

This will also become valuable when writing dynamic CSS or when you simply don't know CSS. Let's see an example for that too.

from typing import Any
from Autumn import new

Base = new()

class MyStyle(Base.style.Style):
    
    def __init__(self):
        self.name = Base.name.Name("div", Base.name.Identifier("my-div-used-for-footer"),
                                   [Base.name.Class("any-div")])
        self.styles = [
            "color: #000000;"
        ]
        
        self.dynamic = True
        
        super().__init__()

    def before_build(self, **kwargs):
        if "style" in kwargs:
            self.styles.append(kwargs["style"])
    

A note on Thread safety

Thread safety is one of the most important parts to remember, every public and private method is automatically thread-safe if it inherits from AbstractBase. Well, excluding getattribute, setattr, every public/private method is thread-safe, unless it's a protected method. We do not lock protected methods, as they are (mostly, by convenience) used by the public/private methods themselves.

When to prefer Autumn

As said, there are many other great options, but Autumn's unique philosophy and traits are one of the reasons people use Autumn instead of Jinja2 or React.

Tools Autumn Jinja2 React etc(e.g., Dominate)...
Paradigm Frontend Framework Server Side Templating Language Client-Side UI Library Python HTML Generator
Core Philosophy A framework that treats HTML tags and CSS Styles as Python Objects, Making frontend works as intuitive as ORM work. A text-based templating engine that mixes HTML with special placeholders and logic. A declarative, component-based JavaScript library for building interactive user interfaces. A Python library that uses a DOM API to create HTML documents in pure Python, eliminating the need for a separate template language.
Core Abstraction Python Classes/Objects Templates Components DOM API
Environment Server Server Client Server
Primary Use case Generating HTML on the server-side, commonly used with frameworks like Flask and Django. Building complex, interactive single-page applications (SPAs) with dynamic user interfaces. Creating and manipulating HTML documents programmatically in Python scripts, often for tasks like report generation. Building front-end interfaces directly from Python, with a focus on developer experience and type safety.
Strengths Object-Oriented DX: Provides a unique, class-based approach that may feel natural to back-end developers.
Type Safety: Type safe, a benefit over traditional templating. Performance: High speed (less than one millisecond for simple pages) with effective caching mechanisms.
Mature & Widely Adopted: The standard for Python web frameworks.
Powerful Features: Template inheritance, auto-escaping for security, sandboxed execution, and fast just-in-time compilation.
Interactive & Dynamic: Unmatched for building highly responsive user interfaces.
Ecosystem: Massive community, rich ecosystem of libraries, and strong corporate backing (Meta).
Reusability: Components are highly composable and reusable.
Pythonic & Simple: No need to learn a new templating language; uses pure Python.
Concise: Allows for very concise HTML generation.
Great for Scripts: Perfect for generating HTML in scripts or automated tasks.
Weaknesses New & Unproven: A very new framework with a small community and limited real-world usage.
Immature Ecosystem: Lacks the extensive ecosystem and tooling of Jinja2 or React.
Context Switching: Requires mixing Python logic with HTML in a separate syntax.
Server-Side Only: Cannot handle client-side interactivity on its own; requires JavaScript.
Complexity: Steeper learning curve, requires understanding of JSX, state, and props.
Client-Side Heavy: Relies heavily on client-side rendering, which can impact SEO and initial load time without frameworks like Next.js.
Less Interactive: Not a framework for building web apps; purely for generating HTML structures.
Niche Use: Best for specific tasks like report generation, not full-scale web development.

Autumn Essential Extensions

Autumn has a few extensions to offer. While not many, the ones currently available are:

New extensions will be added eventually, as this is not all we have to offer. Among the few extensions, these are the only ones public for now.

Our future goals

Our future goals (currently) can be listed as:

  1. Out of the box experience.
  2. A stable and mature ecosystem.
  3. Complete support for HTML/CSS, etc...

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autumn_core-1.1.2.tar.gz (25.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autumn_core-1.1.2-py3-none-any.whl (47.1 kB view details)

Uploaded Python 3

File details

Details for the file autumn_core-1.1.2.tar.gz.

File metadata

  • Download URL: autumn_core-1.1.2.tar.gz
  • Upload date:
  • Size: 25.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for autumn_core-1.1.2.tar.gz
Algorithm Hash digest
SHA256 3f8c08270e024bea5ff8a6b480a173831a6548149359cf57096f81fa1a7b69b9
MD5 e53aacad3f9a3120708577f99c3f108f
BLAKE2b-256 67b8dd1fedebfc402801a3447cfa9e825f27dd0d62697547d6edf06a077b7bf5

See more details on using hashes here.

File details

Details for the file autumn_core-1.1.2-py3-none-any.whl.

File metadata

  • Download URL: autumn_core-1.1.2-py3-none-any.whl
  • Upload date:
  • Size: 47.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for autumn_core-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a2c81964ead898bdc4d8ef5193d0859977b2e88c8901c0892fcafbab94fcad37
MD5 df1a0ea27bb5af4a1f227db1fd273126
BLAKE2b-256 d06cd6a281fe912d09ee66d5c0a33da891eacc01e498989f0f8eb77c9109c44e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.1.2 This release

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page