Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/usernotfoundever/ai_encrypter_crypto_technical_analysis
Check price encrypted via ai
https://github.com/usernotfoundever/ai_encrypter_crypto_technical_analysis
Last synced: about 24 hours ago
JSON representation
Check price encrypted via ai
- Host: GitHub
- URL: https://github.com/usernotfoundever/ai_encrypter_crypto_technical_analysis
- Owner: UserNotFoundEver
- License: apache-2.0
- Created: 2024-06-21T21:35:00.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-21T21:42:09.000Z (5 months ago)
- Last Synced: 2024-07-07T21:02:04.991Z (4 months ago)
- Language: HTML
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AI Encrypter & Crypto Analysis App
## Overview
AI Encrypter & Crypto Analysis App is a web application that provides encryption and decryption of messages using the cryptography library and basic cryptocurrency analysis using data from the CoinGecko API. The backend is built with Flask, and the frontend is created using HTML, CSS, and JavaScript.## Features
- **Message Encryption**: Encrypts plain text messages to keep them secure.
- **Message Decryption**: Decrypts encrypted messages back to their original form.
- **Crypto Price Analysis**: Retrieves the current price of specified cryptocurrencies.## Technologies Used
- **Backend**: Flask, Python
- **Frontend**: HTML, CSS, JavaScript
- **Encryption**: Cryptography Library
- **Crypto Data API**: CoinGecko API only as an example but make our own.## Installation
### Prerequisites
- Python 3.x
- Virtual environment tool (optional but recommended)### Steps
1. **Clone the repository**
```sh
git clone https://github.com/yourusername/ai-encrypter-crypto-analysis.git
cd ai-encrypter-crypto-analysis
```2. **Create and activate a virtual environment** (optional but recommended)
```sh
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```3. **Install the required packages**
```sh
pip install -r requirements.txt
```4. **Run the Flask application**
```sh
python app.py
```5. **Open the application in your browser**
```
http://127.0.0.1:5000/
```## Usage
### Encrypt a Message
- **Endpoint**: `/encrypt`
- **Method**: `POST`
- **Body**: `{ "data": "your_message" }`**Example Request**:
```sh
curl -X POST http://127.0.0.1:5000/encrypt -H "Content-Type: application/json" -d '{"data": "Hello, World!"}'