Skip to content

Commit 3347981

Browse files
committed
Bump version for new release.
1 parent 17b433f commit 3347981

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
# My.Jdownloader-API-Python-Library
2+
23
This a module for Python 2/3 to interact with My.Jdownloader. This is in a WIP project.You're free to use it following the MIT license and any collaboration is appreciated.
34

45
## Is this dead?
6+
57
No, it's true that I don't actively develop it, as in there are still functions not implemented. But if you find something missing, feel free to open an issue and I will take a look asap or even better, if you know how to add it feel free to do it and do a PR and I will merge it asap once I have test it.
68

79
Basically I develop it as in on demand kind of thing, if something is broken or something new is needed I take a look at it and try to fix it or add it.
810

911
## Common Issues
12+
1013
:warning: **Are you having problems adding links? Are your links not getting their correct download folder or similar?**
1114

12-
99,99% of the times is not an issue of the library, it is due the JDownloader Packagizer check this closed issue to understand why it happens and how you can make it work: [#36](https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/issues/36)
15+
99,99% of the times is not an issue of the library, it is due the JDownloader Packagizer check this closed issue to understand why it happens and how you can make it work: [#36](https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/issues/36)
1316

1417
## How to use the api?
18+
1519
**NEW:** Now you can install it using pip from the pypi repo.
20+
1621
> pip install myjdapi
1722
1823
Example:
@@ -28,20 +33,20 @@ jd.set_app_key("EXAMPLE")
2833
After that you can connect.
2934
Now you can only connect using username and password.
3035
This is a problem because you can't remember the session between executions
31-
for this reason i will add a way to "connect" which is actually not connecting,
36+
for this reason i will add a way to "connect" which is actually not connecting,
3237
but adding the old tokens you saved. This way you can use this between executions
3338
as long as your tokens are still valid without saving the username and password.
3439
"""
3540

3641
jd.connect("email","password")
3742

38-
# When connecting it gets the devices also, so you can use them but if you want to
43+
# When connecting it gets the devices also, so you can use them but if you want to
3944
# gather the devices available in my.jdownloader later you can do it like this
4045

4146
jd.update_devices()
4247

4348
# Now you are ready to do actions with devices. To use a device you get it like this:
44-
device=jd.get_device("TEST")
49+
device=jd.get_device("TEST")
4550
# The parameter by default is the device name, but you can also use the device_id.
4651
device=jd.get_device(device_id="43434")
4752

@@ -66,24 +71,23 @@ device.downloads.query_packages([{
6671
"startAt" : 0,
6772
}])
6873
```
74+
6975
# DOCUMENTATION
7076

7177
Sadly currently broken. In any case the documentation was generated with the pydoc comments inside the code itself so checking the code should be enough for now.
7278

7379
http://myjdownloader-api-python-library.readthedocs.org/en/latest/myjdapi.html#module-myjdapi
7480

75-
76-
7781
# PROJECTS USING THE LIBRARY
82+
7883
Here are example of projects currently using the library. If you want to add your project feel free to open a PR so it gets added.
7984

8085
:warning: **WARNING**: I am not endorsing or curating these projects and neither I am responsible nor liable for any problems, losses or damages caused by any of those libraries. Take your own precautions.
8186

82-
* **PyYoutube2JD** - Allows JDownloader users to get all video links from a Youtube account (or playlist). - https://github.com/MarianoDesivo/PyYoutube2JD
83-
84-
87+
- **PyYoutube2JD** - Allows JDownloader users to get all video links from a Youtube account (or playlist). - https://github.com/MarianoDesivo/PyYoutube2JD
8588

8689
# LICENSE
90+
8791
The MIT License (MIT)
8892

8993
Copyright (c) 2015 Marc Marquez Santamaria

myjdapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
MYJDUnknownException,
3535
)
3636

37-
__version__ = "1.1.3"
37+
__version__ = "1.1.4"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
long_description = f.read()
1212
setup(
1313
name='myjdapi',
14-
version='1.1.3',
14+
version='1.1.4',
1515
description='Library to use My.Jdownloader API in an easy way.',
1616
long_description=long_description,
1717
url='https://github.com/mmarquezs/My.Jdownloader-API-Python-Library/',

0 commit comments

Comments
 (0)