Skip to content

Commit 4ce22d0

Browse files
committed
little update
1 parent d6620a8 commit 4ce22d0

File tree

5 files changed

+26
-15
lines changed

5 files changed

+26
-15
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const pythonCode = translateJSToPython(jsCode);
4343
// Print the generated Python code
4444
console.log(pythonCode);
4545
```
46+
You can see the translated Python code in the terminal .
4647

4748
## CLI Command
4849

@@ -54,6 +55,7 @@ npm i convert-js2py
5455
# Convert a JavaScript file to Python
5556
js-to-python test.js output
5657
```
58+
here `test.js` is your input JavaScript file and `output` is the folder name where the `output.py` file will be written.
5759

5860
## Project Structure
5961

@@ -78,23 +80,23 @@ This can't convert a complex JavaScript code into a Python code now , but we'll
7880

7981
## License
8082

81-
This project is licensed under the [License Name] - see the [LICENSE](LICENSE) file for details.
83+
This project is licensed under the [License Name] - see the [LICENSE](https://github.com/PB2204/Convert-JavaScript-To-Python/LICENSE) file for details.
8284

8385
## Contributing
8486

85-
Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this project.
87+
Contributions are welcome! Please read [CONTRIBUTING.md](https://github.com/PB2204/Convert-JavaScript-To-Python/CONTRIBUTING.md) for details on how to contribute to this project.
8688

8789
## Code of Conduct
8890

89-
Please read [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for our code of conduct.
91+
Please read [CODE_OF_CONDUCT.md](https://github.com/PB2204/Convert-JavaScript-To-Python/CODE_OF_CONDUCT.md) for our code of conduct.
9092

9193
## Learn More
9294

93-
Visit [LEARN.md](LEARN.md) for additional resources, tutorials, and documentation related to this project.
95+
Visit [LEARN.md](https://github.com/PB2204/Convert-JavaScript-To-Python/LEARN.md) for additional resources, tutorials, and documentation related to this project.
9496

9597
## Issues
9698

97-
If you encounter any issues, bugs, or have questions, please open an issue on the [Issues](link-to-issues) page.
99+
If you encounter any issues, bugs, or have questions, please open an issue on the [Issues](https://github.com/PB2204/Convert-JavaScript-To-Python/issues) page.
98100

99101
## Contact
100102

js-to-python-converter/README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const pythonCode = translateJSToPython(jsCode);
4343
// Print the generated Python code
4444
console.log(pythonCode);
4545
```
46+
You can see the translated Python code in the terminal .
4647

4748
## CLI Command
4849

@@ -54,6 +55,7 @@ npm i convert-js2py
5455
# Convert a JavaScript file to Python
5556
js-to-python test.js output
5657
```
58+
here `test.js` is your input JavaScript file and `output` is the folder name where the `output.py` file will be written.
5759

5860
## Project Structure
5961

@@ -78,23 +80,23 @@ This can't convert a complex JavaScript code into a Python code now , but we'll
7880

7981
## License
8082

81-
This project is licensed under the [License Name] - see the [LICENSE](LICENSE) file for details.
83+
This project is licensed under the [License Name] - see the [LICENSE](https://github.com/PB2204/Convert-JavaScript-To-Python/LICENSE) file for details.
8284

8385
## Contributing
8486

85-
Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this project.
87+
Contributions are welcome! Please read [CONTRIBUTING.md](https://github.com/PB2204/Convert-JavaScript-To-Python/CONTRIBUTING.md) for details on how to contribute to this project.
8688

8789
## Code of Conduct
8890

89-
Please read [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for our code of conduct.
91+
Please read [CODE_OF_CONDUCT.md](https://github.com/PB2204/Convert-JavaScript-To-Python/CODE_OF_CONDUCT.md) for our code of conduct.
9092

9193
## Learn More
9294

93-
Visit [LEARN.md](LEARN.md) for additional resources, tutorials, and documentation related to this project.
95+
Visit [LEARN.md](https://github.com/PB2204/Convert-JavaScript-To-Python/LEARN.md) for additional resources, tutorials, and documentation related to this project.
9496

9597
## Issues
9698

97-
If you encounter any issues, bugs, or have questions, please open an issue on the [Issues](link-to-issues) page.
99+
If you encounter any issues, bugs, or have questions, please open an issue on the [Issues](https://github.com/PB2204/Convert-JavaScript-To-Python/issues) page.
98100

99101
## Contact
100102

js-to-python-converter/node_modules/.package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js-to-python-converter/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js-to-python-converter/package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "convert-js2py",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "Convert JavaScript code to Python code",
55
"main": "lib/index.js",
66
"bin": {
@@ -14,5 +14,12 @@
1414
"test": "echo \"Error: no test specified\" && exit 1"
1515
},
1616
"author": "Pabitra Banerjee",
17-
"license": "MIT"
17+
"license": "MIT",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/PB2204/Convert-JavaScript-To-Python.git"
21+
},
22+
"bugs": {
23+
"url": "https://github.com/PB2204/Convert-JavaScript-To-Python/issues"
24+
}
1825
}

0 commit comments

Comments
 (0)