Xtracto is a lightweight web development framework designed to simplify the process of creating dynamic web pages using Python and pypx.
Project description
Xtracto Web Development Framework
eXtensible, Configurable, and Reusable Automation Component Tool and Organizer for html through pypx
Xtracto is a lightweight web development framework designed to simplify the process of creating dynamic web pages using Python.
This module is a parser for pypx (custom markup language) to html
read pypx.md to understand the custom markup language
Features
- Parser Class: Easily parse and transform content using the
Parser
class. - Automatic Server Setup: Use the
App
class for hassle-free server setup with FastAPI and Uvicorn. - Testing Support: Conduct tests on your content or files using the
Tests
class.
It is recommended that you use python 3.9 (as of 3rd january 2024) for best compatibility
Installation
pip install xtracto
Sample project
you can view a sample project at shashstormer/xtracto_website And its deployed version at xtracto.shashstom.in
Usage
1. Parser Class
Initialize the Parser
class with the content or file path:
Example with content
from xtracto import Parser
content = "Your content here"
parser = Parser(content=content)
Example with a file path
from xtracto import Parser
file_path = "path/to/your/file.pypx"
parser = Parser(path=file_path)
2. Automatic Server Setup
Use the App
class for automatic server setup:
from xtracto import App
app = App()
3. Compilation
Compile non-dynamic pages to HTML:
Example
from xtracto import Parser
parser = Parser()
parser.compile(start_path_for_map="/")
Configuration
project root is determined using the presence of xtracto.config.py
it must be present otherwise will raise error.
Paths in the pypx files are relative to the project root.
Paths in the config file are relative to the project root.
The config file can be empty.
Customize project-specific configurations in the xtracto.config.py
file. Update the following parameters:
modules_dir
: Directory for modules (default: "xtractocomponents").pages_dir
: Directory for pages (default: "xtractopages").strip_imports
: Whether to strip imports (default: True).raise_value_errors_while_importing
: Whether to raise value errors during imports (default: True).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file xtracto-0.0.7.tar.gz
.
File metadata
- Download URL: xtracto-0.0.7.tar.gz
- Upload date:
- Size: 730.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad646ef34fdb6540c847b28356d22e4c89ac057d1fa4ff64e1401700443eef6e |
|
MD5 | 1e730e97cbcfc505f03972ad9347fcc0 |
|
BLAKE2b-256 | 1b5bc724f0487a764bd9e20cb0764e3789cc5be77bbe87dd93d9e2b08fc461b0 |
File details
Details for the file xtracto-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: xtracto-0.0.7-py3-none-any.whl
- Upload date:
- Size: 757.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dd8fb0b6b3f4a3250111d0476e4ec682dd1dc4b516b722d244bc07cd90c3816 |
|
MD5 | f6361283ae727aa16b305aba13674995 |
|
BLAKE2b-256 | 1affc2c279af3cc2af0795038feaab92b2a0a737abf2034bdbeb1ae8324fb51a |