Skip to main content

Simple lightweight data-interchange format, written in Python

Project description

# EVE
A lightweight data-interchange format.
# Example use
example.eve
```
[
  @ This is a comment

  @ String variables
  'Name' :: 'Eric'
  'Age' :: '21'
  'Country' :: 'USA'
  'City' :: 'New York'

  @ Boolean variables
  ?hasGirlfriend = False
];
```

example.py
```python
import evepy as eve

result = eve.load('example.eve')
print(result['Name']) # And so on
result['Age'] = '22'
eve.save(result, 'example.eve')
```
# ATOM grammar syntax highlighting
1. Copy the folder: `eve` in the `editors\atom` folder
2. Paste that to the `.atom` folder in `C:\Users\yourusername\.atom\packages`
3. Now restart ATOM and it should work

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

evepy-1.2.tar.gz (4.4 kB view hashes)

Uploaded Source

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