Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tippenein/seent

seer stats
https://github.com/tippenein/seent

Last synced: 22 days ago
JSON representation

seer stats

Awesome Lists containing this project

README

        

# seent

a seer bot history fetching tool

## setup

```
python -m venv venv
. venv/bin/activate
pip install -r requirements.pip
cp .env.example .env
```

Then fill in you api id/hash from [my.telegram.org](my.telegram.org) along with your phone number

```
# this fetches the telegram history
make scrape
```

after you have the db, you can run the app with `python3 application.py`

# DB

An example query you might call on to find the green signals and when they were emitted

```sql
SELECT name || ': ' || strftime('%m-%d %H:%M:%S', date) AS formatted_name_date FROM token_data WHERE ai_degen = 'green' GROUP BY name, date ORDER BY date ASC;
```

get a specific tickers signal data

```sql
SELECT * from token_data where name LIKE '%WADDUP%';
```

get the memeability scores ordered by highest to lowest

```sql
select memeability || ' - ' || name from token_data where memeability is not null order by memeability desc;
```