2014-09-02 20:30:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
|
|
|
Copyright (C) 2014 Micah Lee <micah@micahflee.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
2014-08-18 17:23:32 -04:00
|
|
|
from __future__ import division
|
2014-08-26 18:44:44 -04:00
|
|
|
import os, sys, subprocess, time, hashlib, platform, json, locale, socket, argparse, Queue, inspect, base64, random, functools, logging, ctypes, hmac, shutil
|
2014-08-20 17:29:45 -04:00
|
|
|
from itertools import izip
|
|
|
|
import stem, stem.control, flask
|
2014-08-18 15:14:58 -04:00
|
|
|
from PyQt4 import QtCore, QtGui
|
|
|
|
|
2014-06-24 17:23:10 -04:00
|
|
|
import onionshare, onionshare_gui
|
|
|
|
|
2014-06-10 13:31:19 -04:00
|
|
|
onionshare_gui.main()
|