Metadata-Version: 2.1
Name: eve-tools
Version: 0.1.1
Summary: Tools collection for EVE game plays.
Home-page: UNKNOWN
Author: Hanbo
Author-email: ghbhanbo@gmail.com
License: BSD 3-Clause License
Keywords: python,esi,eveonline
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown
License-File: LICENSE

# EVE Tools for trading

> A collection of trading tools that are helpful for EVE game plays.

_Author: Hanbo Guo_

_EVE character: Hanbie Serine_

_Contact: hbopublic@163.com_


## What is EVE Tools

EVE Tools is a Python package that simplifies EVE ESI. The goal is to write easier and faster Python scripts that analyze EVE data for ISK making. 

## Installations

### 0. Have a working Python environment. 
### 1. Install using PyPI
```sh
pip3 install eve_tools
```
-----
or
### 1. Install manually

#### 1.1 Download everything under this repo

#### 1.2 Run `requirements.txt` file with pip install.
```sh
cd path/to/your/download/EVE_tools-master

pip3 install -r requirements.txt
```

#### 1.3 Setup
```sh
python setup.py install
```
-----
### 2. Try with `example.py`

Download `examples.py`, run it by:
* double clicking it (in Windows)
* or go to a Python IDE to launch it 
* or
```sh
python examples.py
```
You will see the result `hauling.csv` generated in the same directory as `examples.py`.

