Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
gopro
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tony Mai
gopro
Commits
f738737f
Commit
f738737f
authored
Jul 22, 2019
by
Tony Mai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initla check in
parents
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
117 additions
and
0 deletions
+117
-0
CONTRIBUTING.md
fusion/py-api/CONTRIBUTING.md
+18
-0
LICENSE
fusion/py-api/LICENSE
+21
-0
README.md
fusion/py-api/README.md
+63
-0
install_from_source.sh
fusion/py-api/install_from_source.sh
+1
-0
setup.py
fusion/py-api/setup.py
+14
-0
No files found.
fusion/py-api/CONTRIBUTING.md
0 → 100644
View file @
f738737f
## Contributing:
#### Styleguide:
-
run autopep8 before commit
-
use functions that are already defined
-
try to follow the following structure:
-
init functions
-
/gp/ call functions
-
main control functions (record, mode, tag...)
-
media
-
metadata/status everything else
-
always test your changes with a camera
-
python3.6 and newer only!
#### Testing:
#### PR:
fusion/py-api/LICENSE
0 → 100644
View file @
f738737f
MIT License
Copyright (c) 2017 Konrad Iturbe
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
fusion/py-api/README.md
0 → 100644
View file @
f738737f
# GoPro API for Python
[
![GitHub issues
](
https://img.shields.io/github/issues/konradit/gopro-py-api.svg
)
](https://github.com/konradit/gopro-py-api/issues)
[
![Github All Releases
](
https://img.shields.io/badge/download-gh-red.svg
)
](https://github.com/KonradIT/gopro-py-api/releases)
[
![PyPi Version
](
http://img.shields.io/pypi/v/goprocam.svg
)
](https://pypi.python.org/pypi/goprocam)
Unofficial GoPro API Library for Python - connect to GoPro cameras via WiFi.
![](
http://i.imgur.com/kA0Rf1b.png
)
### Compatibility:
-
HERO3
-
HERO3+
-
HERO4 (including HERO Session)
-
HERO+
-
HERO5 (including HERO5 Session)
-
HERO6
-
Fusion 1
-
HERO7 (Black)
### Installation
From PyPi:
```
pip install goprocam
```
Git (unstable):
```
bash
git clone http://github.com/konradit/gopro-py-api
cd
gopro-py-api
python setup.py
install
```
**Tested on Python 3.6.0**
--
**works on Linux and Windows and Mac**
### Quick start:
Connect your camera to your computer via WiFi (WiFi on the camera must be on!)
```
python
from
goprocam
import
GoProCamera
,
constants
goproCamera
=
GoProCamera
.
GoPro
()
goproCamera
.
shoot_video
(
10
)
```
### Examples:
See
[
examples
](
/examples
)
for examples on how to use this API.
### Documentation:
Documentation is available:
[
docs
](
/docs
)
### Video screencap:
*
HERO4 Black: https://vimeo.com/209079783
*
HERO4 Session: https://vimeo.com/209129019
*
HERO3 Black: https://vimeo.com/209181246
*
HERO5 Black: https://vimeo.com/235135652
*
HERO7 Black: https://www.youtube.com/watch?v=i-X4fPVfoW0
\ No newline at end of file
fusion/py-api/install_from_source.sh
0 → 100755
View file @
f738737f
python setup.py
install
fusion/py-api/setup.py
0 → 100644
View file @
f738737f
from
setuptools
import
setup
with
open
(
"README.md"
,
"r"
)
as
fh
:
long_description
=
fh
.
read
()
setup
(
name
=
'goprocam'
,
version
=
'3.0.3'
,
description
=
'GoPro WiFi API Wrapper for Python - Compatible with HERO3, HERO3+, HERO4, HERO5, HERO+, HERO6'
,
url
=
'http://github.com/konradit/gopro-py-api'
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
author
=
'Konrad Iturbe'
,
author_email
=
'mail@chernowii.com'
,
license
=
'MIT'
,
packages
=
[
'goprocam'
],
zip_safe
=
False
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment