Skip to content

Commit

Permalink
update package name to fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
muyouming committed Dec 21, 2018
1 parent 7e598f8 commit 51db3f3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# G Photos Uploader - Beta
[![Build Status](https://travis-ci.org/simonedegiacomi/gphotosuploader.svg?branch=master)](https://travis-ci.org/simonedegiacomi/gphotosuploader)
[![Build Status](https://travis-ci.org/muyouming/gphotosuploader.svg?branch=master)](https://travis-ci.org/muyouming/gphotosuploader)

<blockquote background-color="red">
<p>
Expand Down Expand Up @@ -29,7 +29,7 @@ To use the tool you need to install [Go](https://golang.org/) and Git (used by `
## Install

```sh
go get github.com/simonedegiacomi/gphotosuploader
go get github.com/muyouming/gphotosuploader
```

## How can I use it?
Expand Down Expand Up @@ -83,7 +83,7 @@ Then you can login with your account just like you always do. When you're logged
You can now stop the web driver server.

##### Authentication using a Chrome extension
You can also get the authentication file using a Chrome extension. You can read more about it [here](https://github.com/simonedegiacomi/gphotosuploader/tree/master/crx-auth).
You can also get the authentication file using a Chrome extension. You can read more about it [here](https://github.com/muyouming/gphotosuploader/tree/master/crx-auth).


#### Upload a photo or watch a directory
Expand Down Expand Up @@ -119,7 +119,7 @@ re-uploaded. You can specify your own file using the uploadedList argument.
To see all the available arguments, use --help.

### Library
You can read a simple example [here](documentation/examples/simple.go) or get the documentation [here](http://godoc.org/github.com/simonedegiacomi/gphotosuploader).
You can read a simple example [here](documentation/examples/simple.go) or get the documentation [here](http://godoc.org/github.com/muyouming/gphotosuploader).

## Development
if you want to continue the development of this tool/library, execute first the following script:
Expand All @@ -134,5 +134,5 @@ This will links the hooks used to handle the version of the tool.


## Creators:
* [simonedegiacomi](https://github.com/simonedegiacomi)
* [muyouming](https://github.com/muyouming)
* [alessiofaieta](https://github.com/alessiofaieta)
2 changes: 1 addition & 1 deletion api/tokenscraper.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/http"
"strings"

"github.com/simonedegiacomi/gphotosuploader/auth"
"github.com/muyouming/gphotosuploader/auth"
"golang.org/x/net/html"
)

Expand Down
2 changes: 1 addition & 1 deletion api/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

"log"

"github.com/simonedegiacomi/gphotosuploader/auth"
"github.com/muyouming/gphotosuploader/auth"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion crx-auth/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ gphotosuploader_.
This extension is released in public domain, see UNLICENSE_.

.. _Google Photos: https://photos.google.com/
.. _gphotosuploader: https://github.com/simonedegiacomi/gphotosuploader
.. _gphotosuploader: https://github.com/muyouming/gphotosuploader
.. _Developer mode: https://developer.chrome.com/extensions/getstarted#manifest
.. _UNLICENSE: https://unlicense.org/
4 changes: 2 additions & 2 deletions documentation/examples/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/simonedegiacomi/gphotosuploader/api"
"github.com/simonedegiacomi/gphotosuploader/auth"
"github.com/muyouming/gphotosuploader/api"
"github.com/muyouming/gphotosuploader/auth"
)

// Simple example which consist in the upload of a single image
Expand Down
4 changes: 2 additions & 2 deletions utils/uploader.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"path/filepath"
"sync"

"github.com/simonedegiacomi/gphotosuploader/api"
"github.com/simonedegiacomi/gphotosuploader/auth"
"github.com/muyouming/gphotosuploader/api"
"github.com/muyouming/gphotosuploader/auth"
)

// Simple client used to implement the tool that can upload multiple photos or videos at once
Expand Down
2 changes: 1 addition & 1 deletion utils/webdriverlogin.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"time"

"github.com/simonedegiacomi/gphotosuploader/auth"
"github.com/muyouming/gphotosuploader/auth"
"github.com/tebeka/selenium"
)

Expand Down

0 comments on commit 51db3f3

Please sign in to comment.