Skip to content

tuaplicacionpropia/text2img

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

text2img License MIT

http://python-packaging.readthedocs.io/en/latest/index.html

PyPI version

Python library for generate images from text

Getting started with the library

To use the library, you first need to install it.
pip install text2img
#python -c "import sys; import svgmanager; svgmanager.SvgManager.generate(sys.argv)"
#python -c "import sys; from text2img import svgmanager; svgmanager.SvgManager.generate(sys.argv)"
python -c "import sys; from text2img import SvgManager; SvgManager.generate(sys.argv)"
python -c "import sys; from text2img import SvgManager; SvgManager.generate(sys.argv)" /home/jmramoss/almacen/ORLAS/text2img/text2img/base2.svd
python -c "import sys; import svgmanager; svgmanager.SvgManager.generate(sys.argv)" /home/jmramoss/almacen/ORLAS/text2img/text2img/base.svd /home/jmramoss/almacen/ORLAS/text2img/text2img/themes.svd /home/jmramoss/text2img_output/clips
sudo pip install --upgrade text2img

Every resource exposes the following methods:

  • list()
  • search()
  • get()
  • create()
  • update()
  • delete()

To use each resource you will need to create an instance of them, passing the client as parameter in the constructor.

Note: at the moment not all the methods and not all the resources have been implemented.

Here you can find a couple of examples, but for the complete documentation you can have a look at the official website https://developer.toshl.com/docs/

For me

git status
git add .
git rm file2delete
git commit -m "commit message"
git push origin master
python setup.py register sdist upload

Accounts

from toshl.client import ToshlClient, Account

client = ToshlClient('xxx-xxxxx-xxx-xxxxxx-xxxxxx-xxx-xxxxxx')
account = Account(client)

# list all accounts
account.list()

# search for a specific account
account.search('Test Account')

Categories

from toshl.client import ToshlClient, Category

client = ToshlClient('xxx-xxxxx-xxx-xxxxxx-xxxxxx-xxx-xxxxxx')
category = Category(client)

# list all categories
category.list()

# search for a specific category
category.search('Test Category')

Entries

from toshl.client import ToshlClient, Entry

client = ToshlClient('xxx-xxxxx-xxx-xxxxxx-xxxxxx-xxx-xxxxxx')
entry = Entry(client)

# create an Entry
json_payload = {
    'amount': -123.68,
    'currency': {
        'code': 'GBP'
    },
    'date': '2016-04-07',
    'account': 'abcd1234',
    'category': 'category-001'
}

response = entry.create(json_payload)
text2img and its logos, design, text, graphics, and other files, and the selection arrangement and organization thereof, are owned by http://tuaplicacionpropia.com.
This is a 3rd party code and I’m not affiliated nor I work for text2img.

About

Python library for generate images from text

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages