xvcl 2.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xvcl might be problematic. Click here for more details.
- xvcl/__init__.py +15 -0
- xvcl/compiler.py +1381 -0
- xvcl/py.typed +0 -0
- xvcl-2.5.0.dist-info/METADATA +1534 -0
- xvcl-2.5.0.dist-info/RECORD +8 -0
- xvcl-2.5.0.dist-info/WHEEL +4 -0
- xvcl-2.5.0.dist-info/entry_points.txt +2 -0
- xvcl-2.5.0.dist-info/licenses/LICENSE +21 -0
xvcl/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""XVCL - Extended VCL Compiler.
|
|
2
|
+
|
|
3
|
+
A preprocessor and compiler for Fastly VCL with metaprogramming features including:
|
|
4
|
+
- For loops and conditionals
|
|
5
|
+
- Template expressions
|
|
6
|
+
- Constants and variables
|
|
7
|
+
- Inline macros
|
|
8
|
+
- Functions with single/tuple returns
|
|
9
|
+
- File includes
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "2.5.0"
|
|
13
|
+
__all__ = ["XVCLCompiler", "__version__"]
|
|
14
|
+
|
|
15
|
+
from xvcl.compiler import XVCLCompiler
|