You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Removing argparse / command line option. Adding first tests and docs to new functions.
* Adding defaults confignamespace methods, adding change_logger_level, fixes
* [skip ci] Adding cross version run command
* Adding tests, docstrings and updates for run.
* Fixing nix tests
* Fixing timeout version discrepancies.
* PY2 vs PY3 testing
* Python 2.6 is dumb
* [ci skip] Fix import error in wrappers
* Fix setup.py error
* [skip ci] Adding new tasker ability
* [skip ci] Adding new download function
* Making logger safer, expanding run_in_pool
* Pythox 2.x fixes
* [skip ci] Adding pushd and popd as well as timed example of find fines compared to find
* [skip ci] Command line helpers
* [skip ci] Adding match specifications and readme updates
* [skip ci] Expanding readme
* [skip ci] Better command for running stuff from interpreter, expansion of readme
* Overhauled tasker, should be working
* Rename tasker to something meaningful. Adding ability to stop when tasklist finished
* Adding basic file server
* Making clear that it is a file server
* Testing a bit more of download
* Adding reusable tests
* Fixing called process errors for non 3.5 pythons
* maybe 2.6 will work this time
* Windows and pypy fixes.
* python 2.6 subprocess fix
* Adding new documentation. Improving testing.
* Adding bad size documentation
* Threaded instead of MP FileServer
* Increase test coverage
* Preparations for Version 0.6.0
* Updating documentation for Version 0.6.0
* Trying out new documentation
* [ci skip] hopefully last doc fixes
**How can I help? / Why doesn't it do what I want it too?**
307
+
308
+
Please feel free to make suggestions in the 'issues' section of github, or to be super duper helpful go ahead and submit a PR for the
309
+
functionality you want to see! Only requirements are that it's well thought out and is more in place here rather than it's own project
310
+
(to be merged will need documentation and basic unittests as well, but not a requirement for opening the PR).
311
+
Please don't hesitate if you're new to python! Even the smallest PR contributions will earn a mention in a brand new Contributors section.
312
+
313
+
314
+
**Why all the underscored imports?**
253
315
254
-
Common Issues
255
-
-------------
316
+
The rational behind this is just like the standard library, so that the user is sure anything they have access to is solely from this library
317
+
and not one of it's imports. Several variables are also hidden like this, as they are only to be used by the library itself. For example, loggers
318
+
should not have their objects modified by direct reference, but rather obtained through 'logging.getLogger('reusables')', as it helps sort out those who
319
+
know what they are doing.
256
320
257
-
**UnRAR path issues**
258
321
322
+
**Unrar not installed?**
259
323
260
324
A common error to see, especially on Windows based systems, is: "rarfile.RarCannotExec: Unrar not installed? (rarfile.UNRAR_TOOL='unrar')"
261
325
@@ -318,5 +382,7 @@ improve existing code is warmly welcomed!
0 commit comments