Skip to content

Commit baacc11

Browse files
authored
Update README.md (#131)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed - [ ] I have read and agree to the [Contributor License Agreement](../CLA.md)
1 parent 4e0f0e5 commit baacc11

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Codegen
22

3-
[![Documentation](https://img.shields.io/badge/docs-docs.codegen.com-blue)](https://docs.codegen.com)
4-
[![Slack Community](https://img.shields.io/badge/slack-community-4A154B?logo=slack)](https://community.codegen.com)
5-
[![Twitter Follow](https://img.shields.io/twitter/follow/codegen)](https://twitter.com/codegen)
3+
![PyPI](https://img.shields.io/pypi/v/codegen?color=blue) [![Documentation](https://img.shields.io/badge/docs-docs.codegen.com-purple)](https://docs.codegen.com) [![Slack Community](https://img.shields.io/badge/slack-community-4A154B?logo=slack)](https://community.codegen.com) [![Follow on X](https://img.shields.io/twitter/follow/codegen)](https://x.com/codegen)
64

75
[Codegen](https://docs.codegen.com) is a python library for manipulating codebases.
86

@@ -11,7 +9,7 @@
119
from codegen import Codebase
1210

1311
# Codegen builds a complete graph connecting
14-
# functions, classes, imports and their relationships
12+
# functions, classes, imports and their relationships
1513
codebase = Codebase("./")
1614

1715
# Work with code without dealing with syntax trees or parsing
@@ -21,7 +19,6 @@ for function in codebase.functions:
2119
# Auto-handles references and imports to maintain correctness
2220
function.move_to_file('deprecated.py')
2321
```
24-
2522
Write code that transforms code. Codegen combines the parsing power of [Tree-sitter](https://tree-sitter.github.io/tree-sitter/) with the graph algorithms of [rustworkx](https://github.com/Qiskit/rustworkx) to enable scriptable, multi-language code manipulation at scale.
2623

2724
## Installation and Usage

0 commit comments

Comments
 (0)