Skip to main content

The bucket of python shell helpers, no dependencies, simple API.

Project description

The bucket of python shell wrappers around os library, no dependencies, simple API.

  • Python2.6

  • Python2.7

  • Python3.3

  • PyPy1.9

  • osome: (python os module wrappers)

    • path - path wraper around all methods related to path manipulation

    • run - subprocess wrapper

Documentation

https://osome.readthedocs.org/

Code

https://github.com/xando/osome

Install

pip install osome

osome.path

>>> from osome import path

>>> path('/var/log')
/var/log

>>> path('/var', 'log')
/var/log

>>> path('/var/log').own
'766'

>>> path('/var/log').is_dir()
True

>>> for e in path('/var/log'):
...     print e
/var/log/boot.log
/var/log/dmesg
/var/log/faillog
/var/log/kern.log
/var/log/gdm

>>> path('/var/log/').ls('*log')
[/var/log/boot.log, /var/log/faillog, /var/log/kern.log]

>>> path('/var/log') / 'syslog'
/var/log/syslog

>>> (path('/var/log') / 'syslog').exists

>>> path('/var/log','syslog').open('r')
<open file '/var/log/syslog', mode 'r' at 0x294c5d0>

>>> path('/var/log').cp('copy', r=True)
copy

>>> path('/home/user/test_tmp_directory').replace('_', '-')
'/home/user/test-tmp-directory'

>>> location = path('/home/user/test_tmp_directory')
>>> location.mv( location.replace('_', '-') )

osome.run

>>> from osome import run

>>> print run('uname -r').stdout
3.7.0-7-generic

>>> run('uname -a').status
0

>>> print run('rm not_existing_directory').stderr
rm: cannot remove `not_existing_directory': No such file or directory

>>> print run('ls -la', 'wc -l', 'wc -c')
3

>>> print run('ls -la').stdout.lines
['total 20',
 'drwxrwxr-x 3 user user 4096 Dec 20 22:55 .',
 'drwxrwxr-x 5 user user 4096 Dec 20 22:57 ..',
 'drwxrwxr-x 2 user user 4096 Dec 20 22:37 dir',
 '-rw-rw-r-- 1 user user    0 Dec 20 22:52 file']
from osome import run

run('grep something', data=run.stdin)
$ ps aux | python script.py

tests

https://api.travis-ci.org/xando/osome.png?branch=master

Travis CI, https://travis-ci.org/xando/osome

Tests are implemented with py.tests, to run:

python runtests.py

based on/inspired by

author

contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

osome-0.1.0.tar.gz (9.9 kB view details)

Uploaded Source

File details

Details for the file osome-0.1.0.tar.gz.

File metadata

  • Download URL: osome-0.1.0.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for osome-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f336be10f651eb6d70a4f9ca84750d4ad8d424162abf0eda615948653613a244
MD5 6b2c416df5a0c4637b55b4378814eb07
BLAKE2b-256 9efe9a1d70c98d783bc80e8b1741d6efd1031181f2709474ff46c297d1e82204

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page