openai/tiktoken
Publicmirrored fromhttps://github.com/openai/tiktokenAvailable
.gitignore
43lines · modecode
| 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 | # Environments |
| 30 | .env |
| 31 | .venv |
| 32 | |
| 33 | # Tools |
| 34 | .mypy_cache |
| 35 | .coverage |
| 36 | .hypothesis |
| 37 | htmlcov |
| 38 | |
| 39 | # General |
| 40 | .DS_Store |
| 41 | |
| 42 | Cargo.lock |
| 43 | target/ |
| 44 | |