Metadata-Version: 2.1
Name: talk-in-code
Version: 0.0.4
Summary: Transform natural language strings on Python runnable code
Home-page: UNKNOWN
Author: Itanú Romero
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# talk-in-code
Transform __natural language__ strings on __Python runnable code__

## Usage:
### install with pip:
```shell
pip install talk-in-code
```
### Import on your code:
```python
from talk_in_code import translate
```
### Run it
```python
translate.run('print Hello world!', language='pt-BR')
```

## Collaborate
#### Create issues, PR's and share the project, it's open-source!!

___
# How to...
## Print something
Use the key-word print on your string
```python
"print('Hello World')" == translate.run('print Hello World!')
```
## Declare a variable
Use the key-word variÃ¡vel on your string
```python
"idade = int('20')" == translate.run('variÃ¡vel idade recebe inteiro 20')
```

# Help us to improve the pt-BR features and create an english translator!


