This repository has been archived by the owner. It is now read-only.
4 code results in TheTorProject/gettor or view all results on GitHub
| 18 | except ImportError: |
| 19 | pass |
| 20 | |
| 21 | import os |
| 22 | import sys |
| 23 | import argparse |
| 24 | import ConfigParser |
| 25 | import gnupg |
| 26 | |
| 27 | import github3 |
| 28 | |
| 29 | import gettor.core |
| … | |
| 98 | target_repo = gh.repository(github_user, github_repo) |
| 99 | |
| 100 | # import key fingerprint |
| 101 | gpg = gnupg.GPG() |
| 102 | key_data = open(tb_key).read() |
Python
Showing the top two matches
Last indexed | 11 | # :license: This is Free Software. See LICENSE for license information. |
| 12 | |
| 13 | import re |
| 14 | import os |
| 15 | import gnupg |
| 16 | import hashlib |
| 17 | import ConfigParser |
| … | |
| 97 | client = dropbox.client.DropboxClient(access_token) |
| 98 | |
| 99 | # import key fingerprint |
| 100 | gpg = gnupg.GPG() |
| 101 | key_data = open(tbb_key).read() |
Python
Showing the top two matches
Last indexed | 13 | # :license: This is Free Software. See LICENSE for license information. |
| 14 | |
| 15 | import re |
| 16 | import os |
| 17 | import gnupg |
| 18 | import hashlib |
| 19 | import logging |
| 20 | import argparse |
| 21 | import ConfigParser |
| … | |
| 252 | gpg = gnupg.GPG() |
| 253 | key_data = open(tbb_key).read() |
| 254 | import_result = gpg.import_keys(key_data) |
| 255 | fp = import_result.results[0]['fingerprint'] |
Python
Showing the top two matches
Last indexed