added copyright and author infos
This commit is contained in:
parent
bef9d3ea3d
commit
5fb1934cc5
24
bot.py
24
bot.py
|
@ -1,3 +1,27 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import threading
|
import threading
|
||||||
import inspect
|
import inspect
|
||||||
import re
|
import re
|
||||||
|
|
24
buddy.py
24
buddy.py
|
@ -1,3 +1,27 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
from Spectrum2 import protocol_pb2
|
from Spectrum2 import protocol_pb2
|
||||||
from Yowsup.Contacts.contacts import WAContactsSyncRequest
|
from Yowsup.Contacts.contacts import WAContactsSyncRequest
|
||||||
|
|
||||||
|
|
24
cgi/auth.py
24
cgi/auth.py
|
@ -1,5 +1,29 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import cgi
|
import cgi
|
||||||
|
|
24
cgi/sniff.py
24
cgi/sniff.py
|
@ -1,5 +1,29 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import cgi
|
import cgi
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import gdata.gauth
|
import gdata.gauth
|
||||||
|
|
23
group.py
23
group.py
|
@ -1,3 +1,26 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
class Group():
|
class Group():
|
||||||
|
|
||||||
|
|
25
reader.py
25
reader.py
|
@ -1,5 +1,28 @@
|
||||||
import time
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import time
|
||||||
|
|
||||||
def get_token(number, timeout = 30):
|
def get_token(number, timeout = 30):
|
||||||
file = open('tokens')
|
file = open('tokens')
|
||||||
|
|
24
session.py
24
session.py
|
@ -1,3 +1,27 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import utils
|
import utils
|
||||||
import logging
|
import logging
|
||||||
import urllib
|
import urllib
|
||||||
|
|
24
transwhat.py
24
transwhat.py
|
@ -1,5 +1,29 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import logging
|
import logging
|
||||||
import asyncore
|
import asyncore
|
||||||
|
|
24
utils.py
24
utils.py
|
@ -1,3 +1,27 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
import urllib
|
import urllib
|
||||||
import json
|
import json
|
||||||
import e4u
|
import e4u
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
__author__ = "Steffen Vogel"
|
||||||
|
__copyright__ = "Copyright 2013, Steffen Vogel"
|
||||||
|
__license__ = "GPLv3"
|
||||||
|
__maintainer__ = "Steffen Vogel"
|
||||||
|
__email__ = "post@steffenvogel.de"
|
||||||
|
__status__ = "Prototype"
|
||||||
|
|
||||||
|
"""
|
||||||
|
This file is part of transWhat
|
||||||
|
|
||||||
|
transWhat 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
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
transwhat 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 transWhat. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
"""
|
||||||
|
|
||||||
from Spectrum2.backend import SpectrumBackend
|
from Spectrum2.backend import SpectrumBackend
|
||||||
from Spectrum2 import protocol_pb2
|
from Spectrum2 import protocol_pb2
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue