File size: 1,242 Bytes
504b397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Contributing

Thanks for contributing to OhMyCaptcha.

## Development setup

```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
playwright install --with-deps chromium
```

## Run the project locally

```bash
python main.py
```

## Validate changes

Run tests:

```bash
pytest tests/
```

Run type checks:

```bash
npx pyright
```

Build docs:

```bash
mkdocs build --strict
```

## Contribution guidelines

- Keep changes aligned with the implemented task types and documented behavior.
- Do not add secret values, personal endpoints, or account-specific configuration to the repository.
- Prefer small, reviewable pull requests.
- Update docs when behavior changes.
- Keep examples copy-pasteable and placeholder-based.
- Avoid overstating compatibility or production guarantees.

## Pull requests

A good pull request usually includes:

- a concise summary of the change
- why the change is needed
- tests or validation notes
- documentation updates if relevant

## Documentation style

This repository aims for documentation that is:

- clear
- practical
- implementation-aware
- safe for public distribution

If you add deployment examples, use placeholders instead of real secrets or private URLs.