Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chriseborowski/fahrenheit-to-celsius
An interactive Fahrenheit to Celsius temperature converter in Python
https://github.com/chriseborowski/fahrenheit-to-celsius
converter fahrenheit fahrenheit-to-celsius python temperature temperature-converter
Last synced: about 2 months ago
JSON representation
An interactive Fahrenheit to Celsius temperature converter in Python
- Host: GitHub
- URL: https://github.com/chriseborowski/fahrenheit-to-celsius
- Owner: chriseborowski
- License: mit
- Created: 2023-06-06T22:36:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-23T20:48:01.000Z (over 1 year ago)
- Last Synced: 2024-01-28T02:04:07.724Z (12 months ago)
- Topics: converter, fahrenheit, fahrenheit-to-celsius, python, temperature, temperature-converter
- Language: JavaScript
- Homepage: https://github.com/chriseborowski/fahrenheit-to-celsius
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# Fahrenheit to Celsius temperature converter in Python
[View demo](https://replit.com/@chriseborowski/Fahrenheit-to-Celsius-temperature-converter) • [Report bug](https://github.com/chriseborowski/fahrenheit-to-celsius/issues) • [Request feature](https://github.com/chriseborowski/fahrenheit-to-celsius/issues) • [DM author](https://twitter.com/chriseborowski)
![Live demo](https://github.com/chriseborowski/fahrenheit-to-celsius/blob/main/live_demo.png)
## About
An interactive Fahrenheit to Celsius temperature converter in Python. Enter the desired temperature in Fahrenheit and convert it into Celsius in a second!
For a live demo of the project on Replit, click [here](https://replit.com/@chriseborowski/fahrenheit-celsius-temperature-converter).
For a video clip demonstrating the game, click [here](https://twitter.com/chriseborowski/status/1666513865570394131).
## 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/fahrenheit-to-celsius`
2. Run the code in your preferred code editor (e.g., VSCode) or Terminal/Bash window (sample code below)
`python3 fahrenheit_to_celsius.py`
3. Enter the temperature in Fahrenheit to be converted to Celsius
4. The converted temperature in Celsius 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: [Fahrenheit to Celsius temperature converter in Python](https://github.com/chriseborowski/fahrenheit-to-celsius)
* versions: [JavaScript](https://github.com/chriseborowski/fahrenheit-to-celsius/blob/main/fahrenheit_to_celsius.js) • [Python](https://github.com/chriseborowski/fahrenheit-to-celsius/blob/main/fahrenheit_to_celsius.py)