Skip to main content

Pythonic Vue.js

Project description




RE:Newal!

  • changed project style more silimar to vuejs 2.x template
  • use vue file by vbuild

Install

using pip

pip install pyvuejs



Usage

start server by main.py file in project directory

python ./main.py



view/component editing guide

same as vue.js, can support by linting

  • for now, template, style, script blocks are supported
  • more information from vbuild
<!-- template block -->
<template>
    <div>
        <label>{{ count }}</label>
        <div>
            <button style="margin-right:10px;" v-on:click="up_count">up</button>
            <button v-on:click="down_count">down</button>
        </div>
    </div>
</template>
<!-- style block -->
<style scoped>
button {
    width: 80px;
}
</style>
<!-- script block -->
<script lang="python">
class Component:
    def __init__(self):
        self.count = 0

    def up_count(self):
        self.count += 1

    def down_count(self):
        if self.count > 0:
            self.count -= 1
</script>



use view/component

just call name in other view

<template>
    <div id="app">
        <div id="nav">
            <label v-on:click="show_home">Home</label> |
            <label v-on:click="show_about">About</label> | 
            <label v-on:click="show_counter">Counter</label>
        </div>
        <Home v-if="page == 'Home'" />
        <About v-else-if="page == 'About'" />
        <Counter v-else-if="page == 'Counter'" />
        <div v-else></div>
    </div>
</template>



function mapping

call map on main.py

  • parameters
    • callback[required]: callback to map
    • method[optional(default="GET")]: method of map
    • group[optional(default="fn")]: url group of map
def some_callback():
    """
    callback job
    """

Vue().map(
    some_callback, method = "GET", group = "fn"
).serve()

Todo

  • routes


License

pyvuejs is MIT license



Release History

2.0.0

  • renewal version1

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

pyvuejs-2.0.2.tar.gz (75.9 kB view details)

Uploaded Source

Built Distribution

pyvuejs-2.0.2-py3-none-any.whl (77.2 kB view details)

Uploaded Python 3

File details

Details for the file pyvuejs-2.0.2.tar.gz.

File metadata

  • Download URL: pyvuejs-2.0.2.tar.gz
  • Upload date:
  • Size: 75.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9

File hashes

Hashes for pyvuejs-2.0.2.tar.gz
Algorithm Hash digest
SHA256 7c4d079ed7abd28a0557162bff07dd61d596154d6915abea85aa5f5b6251d0d0
MD5 c53c5fa3d4bb6759a77916f96de0696a
BLAKE2b-256 d2be04ce65638f2c7cd0498c775ae07a76997c278a0479813b139e38c3935cc9

See more details on using hashes here.

File details

Details for the file pyvuejs-2.0.2-py3-none-any.whl.

File metadata

  • Download URL: pyvuejs-2.0.2-py3-none-any.whl
  • Upload date:
  • Size: 77.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9

File hashes

Hashes for pyvuejs-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4dfd61b65543fc6793be3e054b31018391d3a4625524668bcf26a538d44bbe12
MD5 ea6bad8a4d3d24769cf8415c13071a01
BLAKE2b-256 1aa2b8060eb115fd994fe774d4ddefe0f21132c6e84b001c7f703ccbe8cc26e6

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