Skip to content

Commit 1b323cd

Browse files
Code examples for the first pacakge version
0 parents  commit 1b323cd

96 files changed

Lines changed: 2158 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.git
2+
*.whl
3+
*.lic
4+
Dockerfile.test
5+
__pycache__
6+
*.py[cod]

.github/workflows/run-examples.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Run Examples
2+
3+
on:
4+
push:
5+
branches: [ main, master ]
6+
pull_request:
7+
branches: [ main, master ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
run-examples:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
python-version: ['3.13']
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v5
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
25+
- name: Install .NET runtime system deps (ICU + GDI+)
26+
run: sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libicu-dev libgdiplus libfontconfig1
27+
28+
# TEMPORARY: groupdocs-editor-net 26.5 is not yet on PyPI. Install the
29+
# manylinux wheel from S3 first; `requirements.txt` then resolves it as
30+
# already satisfied. Remove this step once the package is released.
31+
- name: Install groupdocs-editor-net (pre-release wheel)
32+
run: pip install "https://s3.us-west-2.amazonaws.com/groupdocs.files/2026/05/28/groupdocs_editor_net-26.5.0-py3-none-manylinux1_x86_64.whl"
33+
34+
- name: Install package
35+
run: pip install -r Examples/requirements.txt
36+
37+
- name: Run all examples
38+
run: python Examples/run_all_examples.py

.gitignore

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.nox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
*.py,cover
48+
.hypothesis/
49+
.pytest_cache/
50+
cover/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Environments
57+
.env
58+
.venv
59+
env/
60+
venv/
61+
ENV/
62+
env.bak/
63+
venv.bak/
64+
65+
# IDE
66+
.idea/
67+
.vscode/
68+
*.swp
69+
*.swo
70+
*~
71+
72+
# mypy
73+
.mypy_cache/
74+
.dmypy.json
75+
dmypy.json
76+
77+
# pytype
78+
.pytype/
79+
80+
# Cython debug symbols
81+
cython_debug/
82+
83+
# License files
84+
*.lic
85+
86+
# Python package files
87+
*.whl
88+
89+
# Example output files and folders (generated by running examples)
90+
Examples/**/*.md
91+
Examples/**/*.txt
92+
Examples/**/output/
93+
Examples/**/content/
94+
Examples/**/images/

0 commit comments

Comments
 (0)