https://github.com/sainipray/django_po
Export PO file data into files(xlsx etc) using simple commands
https://github.com/sainipray/django_po
django django-commands po-files
Last synced: 2 months ago
JSON representation
Export PO file data into files(xlsx etc) using simple commands
- Host: GitHub
- URL: https://github.com/sainipray/django_po
- Owner: sainipray
- License: mit
- Created: 2017-09-16T17:50:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-16T17:52:13.000Z (over 7 years ago)
- Last Synced: 2025-01-30T00:29:51.689Z (4 months ago)
- Topics: django, django-commands, po-files
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
===============
django po
===============.. image:: https://img.shields.io/pypi/v/django_po.svg
:target: https://pypi.python.org/pypi/django_po.. image:: https://img.shields.io/pypi/pyversions/django_po.svg
:target: https://pypi.python.org/pypi/django_poOverview
========- This is useful for export PO files data inot files using simple commands
- Currently it's support xlsx, xls, csv file format in export
Documentation
=============- Installation -
* Run ::pip install django_po
* Add 'django_po' to your INSTALLED_APPS ::
'django_po',
- Export -
* Run django management commands like below ::python manage.py export_po --format= (Optional) # default format: 'xlsx'
1) python manage.py export_po en #It will create 'django_en.xlsx'
2) python manage.py export_po en --format=xlsx,xls,csv #It will create 'django_en.xlsx', 'django_en.xls', 'django_en.csv'
3) python manage.py export_po en,ar,hi #It will create 'django_en.xlsx', 'django_ar.xlsx', 'django_hi.xlsx'
4) python manage.py export_po en,hi --format=xlsx,csv # 'django_en.xlsx', 'django_en.csv', 'django_hi.xlsx', 'django_hi.csv'
License
=======django_po is an Open Source project licensed under the terms of the `MIT license `_