-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Python Bytecode | ||
*.pyc | ||
*.pyo | ||
*.pyd | ||
__pycache__/ | ||
*.so | ||
*.dylib | ||
|
||
# Distribution / Packaging | ||
.Python | ||
env/ | ||
venv/ | ||
*.egg-info/ | ||
dist/ | ||
build/ | ||
*.tar.gz | ||
*.whl | ||
*.zip | ||
|
||
# PyInstaller | ||
*.spec | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox/ | ||
.nox/ | ||
.coverage.* | ||
*.log | ||
|
||
# IDE and Editor files | ||
.vscode/ | ||
.idea/ | ||
*.swp | ||
*~ | ||
*.bak | ||
|
||
# Jupyter Notebook checkpoints | ||
.ipynb_checkpoints/ | ||
|
||
# PyCharm | ||
.idea/ | ||
|
||
# macOS Finder attributes | ||
.DS_Store | ||
|
||
# Windows installer files | ||
Thumbs.db | ||
|
||
# VSCode | ||
.vscode/ | ||
/node_modules/ | ||
/package.json/frontend/dist/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# pywebflow | ||
|
||
pywebflow is a Python-based web framework to create node-based workflows. It allows users to easily build and manage node-based projects using Python. | ||
|
||
> Note: This project is still in development and is not yet ready for production use. | ||
## Contributing | ||
|
||
Contributions are welcome! Please feel free to submit a Pull Request or open an issue if you have any suggestions or improvements. | ||
|
||
## License | ||
|
||
This project is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file for details. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import webflow | ||
webflow.launch() |