Skip to content

Commit

Permalink
made import easier
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianDietz committed Nov 19, 2019
1 parent 3d50f2c commit 1e9f5b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ This works for Python 2.7 and 3+.

## Usage

`from loosejson import loosejson`
`import loosejson`

Just run `loosejson.parse_loosely_defined_json(text)` on a string. It returns a standard json object, just like json.loads(text), but with less of a headache.
2 changes: 1 addition & 1 deletion loosejson/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@

from .loosejson import *
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
setup(
name = 'loosejson',
packages = ['loosejson'],
version = '1.0.0',
description = 'A library containing basic code useful when creating Docker Images for elody.com',
long_description = 'A library containing basic code useful when creating Docker Images for elody.com',
version = '1.0.3',
description = '',
long_description = '',
author = 'Florian Dietz',
author_email = '[email protected]',
url = '',
license = 'MIT',
package_data={
'': ['*.txt'],
Expand Down

0 comments on commit 1e9f5b7

Please sign in to comment.