Metadata-Version: 2.1
Name: DigitalRover
Version: 0.0.1
Summary: Tweet archiver for use with doltpy (awaiting conversion to be able to be installed as a module)
Home-page: https://github.com/alexis-evelyn/Rover
Author: Alexis Evelyn
Author-email: alexis.a.evelyn+pypip@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/alexis-evelyn/Rover/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: anonymizeip (==1.0.0)
Requires-Dist: certifi (==2020.12.5)
Requires-Dist: chardet (==4.0.0)
Requires-Dist: click (==7.1.2)
Requires-Dist: cx-Oracle (==8.1.0)
Requires-Dist: decorator (==4.4.2)
Requires-Dist: doltpy (==1.1.10)
Requires-Dist: idna (==2.10)
Requires-Dist: IP2Location (==8.5.1)
Requires-Dist: IP2Proxy (==3.0.0)
Requires-Dist: joblib (==1.0.0)
Requires-Dist: mysql (==0.0.2)
Requires-Dist: mysql-connector-python (==8.0.21)
Requires-Dist: mysqlclient (==2.0.3)
Requires-Dist: nltk (==3.5)
Requires-Dist: numpy (==1.19.5)
Requires-Dist: oauthlib (==3.1.0)
Requires-Dist: pandas (==1.2.1)
Requires-Dist: Pillow (==8.1.0)
Requires-Dist: protobuf (==3.14.0)
Requires-Dist: psutil (==5.8.0)
Requires-Dist: psycopg2-binary (==2.8.6)
Requires-Dist: py (==1.10.0)
Requires-Dist: PyPika (==0.47.4)
Requires-Dist: python-dateutil (==2.8.1)
Requires-Dist: pytz (==2020.5)
Requires-Dist: regex (==2020.11.13)
Requires-Dist: requests (==2.25.1)
Requires-Dist: requests-oauthlib (==1.3.0)
Requires-Dist: retry (==0.9.2)
Requires-Dist: six (==1.15.0)
Requires-Dist: SQLAlchemy (==1.3.22)
Requires-Dist: subresource-integrity (==0.2)
Requires-Dist: textblob (==0.15.3)
Requires-Dist: tqdm (==4.56.0)
Requires-Dist: urllib3 (==1.26.3)
Requires-Dist: youtube-dl (==2021.1.24.1)

### OSX

* Python 3.9+ Is Required

### For MacPorts
```bash
sudo port install python39 py39-pip py39-setuptools py39-setuptools py39-psycopg2 openssl freetype
# sudo port install py39-numpy # (OR) brew install openblas

sudo port select --set python3 python39
sudo port select --set pip3 pip39

# Instructions For Variables
# https://stackoverflow.com/a/65072442/6828099
# https://stackoverflow.com/a/60748789/6828099

export PATH=/opt/local/lib/postgresql13/bin/:$PATH
export LDFLAGS="-L/opt/local/lib"
export CPPFLAGS="-I/opt/local/include"

# You may need to specify --no-cache-dir after install
pip3 install -r requirements.txt
```

### For HomeBrew
```bash
# These instructions assume using a venv
brew install mysql postgresql python3

export PATH=/usr/local/Cellar/postgresql/13.2_1/bin:$PATH

# You may need to specify --no-cache-dir after install
pip3 install -r requirements.txt
```

### RPi

```bash
# Install Python 3.9
cd /usr/src

# Download and Extract Python 3.9
sudo wget https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tgz
sudo tar xvf Python-3.9.1.tgz

# Install Build Tools
sudo apt-get update
sudo apt-get install -y build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev

# Build Python 3.9
cd Python-3.9.1
sudo ./configure --enable-optimizations
sudo make altinstall

# Symlink Python (You May Need To Add /usr/local/bin/ To Your Executable Path)
sudo ln -s /usr/local/bin/python3.9 /usr/local/bin/python
sudo ln -s /usr/local/bin/python3.9 /usr/local/bin/python3

# OPTIONAL (Disable Built In Python)
sudo chmod -x /usr/bin/python
sudo chmod -x /usr/bin/python3

# Install Pip, Wheel, and SetupTools
python3 -m pip install --upgrade pip setuptools wheel

# Install postgres-dev For psycopg2
sudo apt-get install libpq-dev

# You may need to specify --no-cache-dir after install
pip3 install -r requirements.txt
```

### Deprecated RPI Instructions (Due To 3.7 Being The Latest Release and Requirement For 3.9+)

```bash
# Install Missing Libraries
sudo apt-get install libfreetype6-dev libopenjp2-7 libtiff5

# You may need to specify --no-cache-dir after install
pip3 install -r requirements.txt
```

<!-- DeepNote Notebook Tutorial - https://www.dolthub.com/blog/2020-10-14-using-dolt-with-deepnote/ -->
<!-- `apt install libmariadb-dev` For DeepNote Notebook -->
<!-- https://web.archive.org/web/*/twitter.com/realdonaldtrump -->
<!-- https://web.archive.org/web/*/twitter.com/potus -->
<!-- tensorflow>=2.4.0 -->


