generated from Templates/Python
24 lines
298 B
Markdown
24 lines
298 B
Markdown
|
# project_name
|
||
|
|
||
|
project_description
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```py
|
||
|
from project_name import BaseClass
|
||
|
from project_name import base_function
|
||
|
|
||
|
BaseClass().base_method()
|
||
|
base_function()
|
||
|
```
|
||
|
|
||
|
```bash
|
||
|
$ python -m project_name
|
||
|
#or
|
||
|
$ project_name
|
||
|
```
|
||
|
|
||
|
## Development
|
||
|
|
||
|
Read the [CONTRIBUTING.md](CONTRIBUTING.md) file.
|