Tagged Questions
0
votes
1answer
21 views
Posting user's ssh keys to github using python
I'm trying to automatically setup git system and I'm stuck in a process where I want to add user's key using the github api. This is what I've so far.
...
2
votes
2answers
23 views
What's the difference between direct pip install and the requirements.txt?
I'm confused. I've got a working pip install command (meaning: it installs a version of a library from Github which works for me), and I have a non-working (meaning: it installs a version of a ...
1
vote
1answer
26 views
How to state in requirements.txt a direct github source
I've installed a library using the command
pip install git+git://github.com/mozilla/elasticutils.git
which installs it directly from a Github repository. This works fine and I want to have that ...
0
votes
1answer
55 views
Git Pull failure
I have a Github repository and I'm trying to pull the repository (it's already cloned) to my home machine but for some reason it does not pull all the folders from the Github repository.
I tried both ...
-1
votes
0answers
33 views
Creating a site with Hyde and hosting it on github pages [closed]
I just found out about the Python library Hyde and was wondering if there was an easy way to create a site with Hyde and host it on github pages. So far I simply tried pushing the website files to ...
0
votes
2answers
79 views
How to setup django application for production and open source, with one repository
I have a python/django project that I've set up for development and production using git revision control. I have three settings.py files:
-settings.py (which has dummy variables for potential open ...
0
votes
1answer
52 views
Github: What does it mean when the Travis build has failed for a pull request?
I forked an existing repository and then cloned it. I, then made the changes to the code and then pushed the changes to my forked repository. I then created a pull request to the base repo.
After ...
0
votes
2answers
54 views
Github api v3 access via python oauth2 library - Redirect issue
Environment - Python 2.7.3, webpy.
I'm trying a simple oauth 3 way authentication for github using Python web.py. Per the basic oauth guide on github I'm doing something like this:
import ...
-1
votes
1answer
46 views
Suggestions on most efficient way to run python script and use output to generate a JS GUI on a webpage? [closed]
So I have a python script that takes in some input and spits out some resulting output. I have it on GitHub already, in addition to an in-progress GitHub site that, hopefully, will eventually have ...
5
votes
4answers
193 views
How can I call 'git pull' from within Python?
Using the github webhooks, I would like to be able to pull any changes to a remote development server. At the moment, when in the appropriate directory, git pull gets any changes that need to be made. ...
-2
votes
3answers
61 views
how to use app from github
I have an app from Github.
I'm about to include that app and use it for practice
this is my installed apps, I have run it from comand prompt. I have added
app "shop_simplevariations"
...
0
votes
1answer
73 views
Flask, Heroku and Github Dependencies/File Structure
Quite a beginner at the whole flask/heroku/github business, but been using python for several years now and had experience with tortoise SVN. I have been following the tutorial on how to push code to ...
1
vote
1answer
46 views
Randomly sample Github repositories
I'm looking for a solution to randomly sample repos from Github. The final result is to perform some data analysis on the sample.
What I would like to do is sample by the repository's id: sample an ...
2
votes
1answer
55 views
Deploying Code to Heroku (Issues?)
https://devcenter.heroku.com/articles/python
When i'm trying to deploy my code through $ git push heroku master i get an error:
Warning: Permanently added the RSA host key for IP address ...
1
vote
1answer
98 views
Github API for Python : PyGithub
I am developing a script which requires me to get a list of all commits for a particular repository, as well as the date and time of commit. The Commit Class in the PyGithub API:
...
0
votes
0answers
31 views
How to navigate a github project [closed]
I'm really new to programming (primarily in Python) and in order to help myself gain some experience programming I've looked to github to find Python projects to contribute to. I've got my github ...
2
votes
2answers
202 views
Get pip to work with git and github repository
I'm writting a python app that depends on another one that is hosted on a github repository (never in pypi) for development reasons.
Lets call them:
App being written: AppA
App in github: AppB
In ...
0
votes
4answers
111 views
git merge conflicts with our database file (multiple developers)
A buddy and I are developing a Django app, and are using git (GitHub).
As we work, we make fake accounts on our site, login, and upload content to the database, etc..for testing purposes. Here's the ...
7
votes
1answer
424 views
Work with GitHub Wiki repository using Python
Is there any way to programmatically (using libraries like PyGithub, GitPython or dulwich) load any file right into MyRepo.wiki.git repository? Using Python, of course.
I can easily upload a file ...
0
votes
0answers
31 views
How to use pygithub3 to create new git repo
How do I create a new git repo with pygithub3?
I looked at the docs and tried several variations but the examples involve using an object instance and the create repo seems like it uses a singleton.
...
0
votes
2answers
199 views
How do I receive GIthub Webhooks in Python
Github offers to send Post-receive hooks to an URL of your choice when there's activity on your repo.
I want to write a small Python command-line/background (i.e. no GUI or webapp) application running ...
-3
votes
2answers
58 views
Escaping double-quotes vs. single-quotes
I noticed this code:
os.system("'{0}'".format(path))
and saw that some one had change it to this:
os.system("\"{0}\"".format(path))
I was wondering by changing it from single to double quotes ...
0
votes
1answer
89 views
Github API Post Not Found 404
For some reason, when I try to post githubs api to create a repository, I keep getting a 404 not found. Here's my code, has anyone else experienced this?
url = "https://api.github.com/users/repo"
...
1
vote
1answer
47 views
django-templated-email doen't works on heroku
I've installed succesfully https://github.com/bradwhittington/django-templated-email.git, and it works smoothly on my local server, but, when I upload my app to a heroku repo that I have, when it ...
1
vote
1answer
63 views
installing django-templated-email
I'm learning how to develop in Django, so there are a lot of things I've still have to learn, so, if I have any concept error, please notify me.
My problem is that I'm trying to install ...
0
votes
2answers
121 views
github api - fetch all commits of all repos of an organisation based on date
Assembla provides a simple way to fetch all commits of an organisation using api.assembla.com/v1/activity.json and it takes to and from parameters allowing to get commits of selected date(from all ...
1
vote
1answer
170 views
How to store OAuth token for Github in a Python script?
I am working on a Python script that access Github using basic authentication. I want to use OAuth so that user doesn't have to enter credentials every time he uses the script. Most importantly, ...
3
votes
2answers
211 views
How to download and write a file from Github using Requests
Lets say there's a file that lives at the github repo:
https://github.com/someguy/brilliant/blob/master/somefile.txt
I'm trying to use requests to request this file, write the content of it to disk ...
0
votes
0answers
41 views
Getting gerrits based on uploaded time
I am using the following ssh command to get all the gerrits on project "platform/vendor/company-proprietary/code" and branch "master" that are in open status,this gives a large volume of gerrit data ...
1
vote
2answers
263 views
Adding Data to urllib2.Request
friends.
I'm writing a short script that will take a person's Github login and use it to query the Github API for an authorization token. Here's the code:
def getGithubAuth():
"Get a Github auth ...
0
votes
1answer
137 views
“'function' object is not subscriptable”
Code:
def user(repo, language, page):
# import pdb;pdb.set_trace()
dictionary = {'language_search': language, 'page': page, 'followers': repo['followers'], 'github_repo': ...
1
vote
1answer
78 views
Getting Github individual file contributors
I am planning to build a plug-in for Sphinx documentation system plug-in which shows the names and Github profile links of the persons who have contributed to the documentation page.
Github has this ...
0
votes
1answer
126 views
Installing CLD libary on windows and bind to Python
I have a need to make use of Chromium's Compact Language Detector library within a Python script.
AFAIK, there are two projects that leverage this library, but I have been having troubles with ...
0
votes
1answer
144 views
Use pip and requirements.txt to install non-Python repositories
So I'm making a Flask app, and I am managing Flask and some of the necessary plugins using pip and requirements.txt. However, my app also uses a couple of jQuery and JS projects from Github as well.
...
0
votes
1answer
160 views
Utilizing a third party application for GitHub in a django project
I'm trying to use a third party application located here:
git://github.com/Star2Billing/django-audiofield.git
I'm using Aptana Studio as my IDE. I created my project and then I clicked on the ...
0
votes
1answer
370 views
Migrating Mercurial to GitHub
I want to move from Google Code and Mercurial to Git and GitHub while keeping all branches and version history.
So far it seems like the Hg-Git mercurial plugin (http://hg-git.github.com/) is my ...
0
votes
1answer
86 views
login via github on appengine
I want to implement login/signup via github, for a python application that i plan to build on appengine. I have went through the docs, it is easy to authenticate the user and based upon the callback ...
1
vote
1answer
117 views
How to integrate any Python lint with GitHub commit status API?
Is there already a way to integrate one of Python lint programs (PyLint, PyChecker, PyFlakes, etc.) with GitHub commit status API? In this way Python lint could be automatically called on pull ...
3
votes
4answers
322 views
Migrating virtualenv and Github between computers
I primarily work these days with Python 2.7 and Django 1.3.3 (hosted on Heroku) and I have multiple projects that I maintain. I've been working on a Desktop with Ubuntu running inside of a ...
0
votes
1answer
401 views
Django social auth GitHub authentication
I'm new to Python and Django and am trying to get social auth (https://github.com/omab/django-social-auth) to work. I'd like to connect using Github, but am not having much success and the example ...
0
votes
1answer
195 views
How can I check out a github repo from Heroku?
I would like to be able to log the number of words in certain files in a Github repo whenever there is a new push to the repo. I have set up a hook on Github to hit a Django Heroku app url after each ...
0
votes
1answer
77 views
Error packaging a python application to make it pip-installable
I am new to git, and deployed my first python-django app via github:
https://github.com/staticdev/django-crud-utils
The problem is that, when I try to install it, I get the error:
$ pip install -e ...
4
votes
3answers
732 views
Github-Flavored-Markdown in Python
Does anyone knows of a working Python GFM implementation?
Currently I'm using a javascript renderer.
It works, but an actual Python renderer would be the right tool for the job. (FS is a Django app)
...
1
vote
1answer
63 views
SciPy source code - cannot find an imported module
I am playing with scipy source code, there.
I am looking to method watershed in ndimage.measurements. Method is calling a mysterious _nd_image.watershed_ift(...) and module measurements.py does ...
1
vote
2answers
116 views
Why does pip install -e git-repo change HEAD to master when called a second time
If I do this:
pip install -e git://github.com/nimbis/django.git#egg=Django-dev
Then pip will grab the default branch from that repository (1.4.1-patched) and install it, as you can see in the src ...
3
votes
2answers
199 views
How to create a commit and push into repo with GitHub API v3?
I want to create a repository and Commit a few files to it via any Python package. How do I do?
I do not understand how to add files for commit.
0
votes
1answer
60 views
What is the best strategy to extract information from a Github issue?
This is the same question as this one, but for Github instead of JIRA
Hi,
I'm developing FreedomSponsors - a crowdfunding platform for open source projects.
I want to improve the "Sponsor new ...
0
votes
2answers
80 views
As part of development, I am committing to github and pulling down and executing elsewhere. It feels wrong
I have a standard-ish setup. Call it three servers - www, app and db, all fed from fabric scripts, and the whole on github.
I have a local laptop with the repo clone. I change a file locally, and ...
1
vote
0answers
67 views
Using Python/Django to update GitHub
This is the broken code I wrote to update a GitHub repo from my Django powered web-based code-editor, see https://github.com/DjangoCoder/DjangoGUI/blob/master/projects/views.py line 763. How do I ...
2
votes
2answers
500 views
How can I get/apply for a GPL licence for my github project?
I want to start an open-source project on github, and want to contribute a Python/ Django app.
I don't know much about the licensing, but if I have to apply for the
GPLv3 or GPLv2, then how do I do ...



