Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chriseborowski/celsius-to-fahrenheit
An interactive Celsius to Fahrenheit temperature converter in Python
https://github.com/chriseborowski/celsius-to-fahrenheit
celsius celsius-to-fahrenheit converter python temperature temperature-converter
Last synced: about 2 months ago
JSON representation
An interactive Celsius to Fahrenheit temperature converter in Python
- Host: GitHub
- URL: https://github.com/chriseborowski/celsius-to-fahrenheit
- Owner: chriseborowski
- License: mit
- Created: 2023-06-06T22:37:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-23T20:48:49.000Z (over 1 year ago)
- Last Synced: 2024-01-28T02:04:32.694Z (12 months ago)
- Topics: celsius, celsius-to-fahrenheit, converter, python, temperature, temperature-converter
- Language: JavaScript
- Homepage: https://github.com/chriseborowski/celsius-to-fahrenheit
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# Celsius to Fahrenheit temperature converter in Python
[View demo](https://replit.com/@chriseborowski/Celsius-to-Fahrenheit-temperature-converter) • [Report bug](https://github.com/chriseborowski/celsius-to-fahrenheit/issues) • [Request feature](https://github.com/chriseborowski/celsius-to-fahrenheit/issues) • [DM author](https://twitter.com/chriseborowski)
![Live demo](https://github.com/chriseborowski/celsius-to-fahrenheit/blob/main/live-demo.png)
## About
An interactive Celsius to Fahrenheit temperature converter in Python. Enter the desired temperature in Celsius and convert it into Fahrenheit in a second!
For a live demo of the project on Replit, click [here](https://replit.com/@chriseborowski/Celsius-to-Fahrenheit-temperature-converter).
## Getting started
### JavaScript instructions
1. Clone the repository to your machine
`git clone https://github.com/chriseborowski/celsius-to-fahrenheit`
2. Make sure you have [Node.js](https://nodejs.org/en), [npm](https://www.npmjs.com/), and the [readline-sync](https://github.com/anseki/readline-sync) package (see below) installed
`npm install readline-sync`
3. Run the code in your preferred code editor (e.g., VSCode) or Terminal/Bash window (sample code below)
`node celsius_to_fahrenheit.js`
4. Enter the temperature in Celsius to be converted to Fahrenheit
5. The converted temperature in Fahrenheit will be displayed.
### Python instructions
1. Clone the repository to your machine
`git clone https://github.com/chriseborowski/celsius-to-fahrenheit`
2. Run the code in your preferred code editor (e.g., VSCode) or Terminal/Bash window (sample code below)
`python3 celsius_to_fahrenheit.py`
3. Enter the temperature in Celsius to be converted to Fahrenheit
4. The converted temperature in Fahrenheit will be displayed.
## Roadmap
The development has been completed.
- [x] Initial version released
- [x] Live demo on Replit created
- [x] README.md description created
- [x] Added support for float inputs## License
Distributed under the MIT License. See `license.txt` for more information.
## Contact
Chris Borowski
Follow me **@chriseborowski** on [GitHub](https://github.com/chriseborowski) • [Twitter](https://twitter.com/chriseborowski) • [T2](https://t2.social/chriseborowski) • [LinkedIn](https://www.linkedin.com/in/chriseborowski) • [Linktree](https://linktr.ee/chriseborowski) (all links)
Project repository link: [Celsius to Fahrenheit temperature converter in Python](https://github.com/chriseborowski/celsius-to-fahrenheit)
* versions: [JavaScript](https://github.com/chriseborowski/celsius-to-fahrenheit/blob/main/celsius_to_fahrenheit.js) • [Python](https://github.com/chriseborowski/celsius-to-fahrenheit/blob/main/celsius_to_fahrenheit.py)