## New update
* added tutorial about create unlimited users automatically.
* fixed some bug in cloudflare api
* Working in to cloudflare
* fixed some bugs
# How to get Bigsansar
Bigsansar is available open-source under the [MIT](https://en.wikipedia.org/wiki/MIT_License) license. We recommend using the latest version of Python 3.
Bigsansar is Fully based on django and linux ubuntu. You can use [bigsansar](https://bigsansar.com) for install packaged.
You can use
[bigsansar](https://bigsansar.com)
for install packaged.
view our tutorials in
[youtube](https://youtube.com/bigsansar)
for playlist:
[bigsansar for django](https://www.youtube.com/playlist?list=PLbGzLu1WXrFUXw7qr6AMz5_iEkEAPV_Vs)
# Get the latest development version
The latest and greatest Bigsasnar version is the one that’s in our Git repository (our revision-control system). This is only for experienced users who want to try incoming changes and help identify bugs before an official release. Get it using this shell command, which requires [Git](https://https://git-scm.com/):
`git clone https://github.com/pokhrelb9/bigsansar.git`
You can also download a [gzipped tarball](https://https://pypi.org/project/Bigsansar/#files) of the development version. This archive is updated every time we commit code.
# After you install bigsansar
1) Type `bigsansar init` command for **automatically** setup server for internal configurations.
** this command valid into vertualenv for developer
# for full setup in to server
this is work only on ubuntu os
2) type ` python manage.py setup_server` commend for fully setup into server .
[How to Setup a Full Server with BigSansar, Django, and Ubuntu
](https://youtu.be/j8YN6x9XdR4)
# some usefull link
[sitemap.xml](http://localhost/sitemap.xml)
[script.js](http://localhost/script.js)
[styles.css](http://localhost/styles.css)
# how to edit sitemap , js and css from pages
create a page **slug** name with sitemap,script , styles
# How to change admin URL in server side with domain
go to **VirtualHost.py** file and change **localhost** with your subdomain
## Some usefull commands:
`python manage.py createuser` - get unlimited users.
[Get UNLIMITED Django Users Automatically with BigSansar
](https://youtu.be/UW0ytkPAMxw)
## templatetags for extends and include
{% extends '<domain_name>/<page_slug>.html' %}
{% include '<domain_name>/<page_slug>.html' %}
## load blog list in templates
`{% load blogs %}
{% get_blog as bloglist %}
{% for list in bloglist %}
<div class="card my-4">
<h5 class="card-header">{{list.title}} - {{ list.domain }}</h5>
<div class="card-body">
<p class="card-text"> {{list.body|slice:":100"}} - {{ list.publish_date }}</p>
<a href="/blog/{{list.slug}}"
class="btn btn-danger">Read More</a>
</div>
</div>
{% endfor %}`
## get single blog objects
`{% load blogs %}
{% get_blog_object as get_blog %}
{{ get_blog.title }}
{{ get_blog.thumbnails }}
{{ get_blog.publish_date }}
{{ get_blog.domain }}
{{ get_blog.id }}
{{ get_blog.slug }}
{{ get_blog.body | safe }}
{{ get_blog.visitor }}
`
## Count visitor in your blogs
`{% load blogs %}
{% update_blog_visitor %}`
# get path slug
{{ slug }}
## Load page list in templates
`{% load pages %}
{% get_pages as listpage %}
{% for page in listpage %}
<div>
< a href="{{ page.slug }}">{{ page.title }}</a>
</div>
{% endfor %}`
#### More variable for **page** list
* page.id
* page.domain
* page.title
* page.slug
* page.body
* page.visitor
* page.publish_date
## for single page title
* getpage.id
* getpage.domain
* getpage.title
* getpage.slug
* getpage.body
* getpage.visitor
* getpage.publish_date
## how to access domain system
* gethost.id
* gethost.user
* gethost.domain
* gethost.Description
* gethost.publish_date
* gethost.visitor
## How to access codesnippet in to bigsansar pages
**add this script in to html head **
{% load static %}
<script type="text/javascript" src="{% static 'ckeditor/ckeditor-init.js' %}"></script>
<script type="text/javascript" src="{% static 'ckeditor/ckeditor/ckeditor.js' %}"></script>
<link rel="stylesheet" href="{% static 'ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css' %}"/>
<script src="{% static 'ckeditor/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js' %}"></script>
<script>hljs.initHighlightingOnLoad();</script>
Raw data
{
"_id": null,
"home_page": "https://github.com/pokhrelb9/bigsansar",
"name": "Bigsansar",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "python, django host, bigsansar, django, django sites framework, django flatpages",
"author": "Bikash Pokhrel",
"author_email": "bigsansaroffice@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/3b/62/b2da4385a4e913e2293a339f82394cd3935996949900ff00a08c5531e94c/bigsansar-2.6.6.tar.gz",
"platform": null,
"description": "## New update\n* added tutorial about create unlimited users automatically.\n* fixed some bug in cloudflare api\n* Working in to cloudflare \n* fixed some bugs\n\n\n\n# How to get Bigsansar\n\nBigsansar is available open-source under the [MIT](https://en.wikipedia.org/wiki/MIT_License) license. We recommend using the latest version of Python 3.\nBigsansar is Fully based on django and linux ubuntu. You can use [bigsansar](https://bigsansar.com) for install packaged.\nYou can use\n[bigsansar](https://bigsansar.com)\nfor install packaged.\n\nview our tutorials in\n[youtube](https://youtube.com/bigsansar)\n\nfor playlist:\n[bigsansar for django](https://www.youtube.com/playlist?list=PLbGzLu1WXrFUXw7qr6AMz5_iEkEAPV_Vs)\n\n\n\n\n# Get the latest development version\n\n\n\nThe latest and greatest Bigsasnar version is the one that\u2019s in our Git repository (our revision-control system). This is only for experienced users who want to try incoming changes and help identify bugs before an official release. Get it using this shell command, which requires [Git](https://https://git-scm.com/):\n\n`git clone https://github.com/pokhrelb9/bigsansar.git`\n\nYou can also download a [gzipped tarball](https://https://pypi.org/project/Bigsansar/#files) of the development version. This archive is updated every time we commit code.\n\n\n# After you install bigsansar\n1) Type `bigsansar init` command for **automatically** setup server for internal configurations.\n\n** this command valid into vertualenv for developer \n\n# for full setup in to server \n\nthis is work only on ubuntu os \n\n2) type ` python manage.py setup_server` commend for fully setup into server .\n\n[How to Setup a Full Server with BigSansar, Django, and Ubuntu\n](https://youtu.be/j8YN6x9XdR4)\n\n# some usefull link \n[sitemap.xml](http://localhost/sitemap.xml)\n[script.js](http://localhost/script.js)\n[styles.css](http://localhost/styles.css)\n\n# how to edit sitemap , js and css from pages\n\ncreate a page **slug** name with sitemap,script , styles\n\n\n# How to change admin URL in server side with domain \ngo to **VirtualHost.py** file and change **localhost** with your subdomain \n## Some usefull commands:\n\n`python manage.py createuser` - get unlimited users.\n\n[Get UNLIMITED Django Users Automatically with BigSansar\n](https://youtu.be/UW0ytkPAMxw)\n\n## templatetags for extends and include \n\n{% extends '<domain_name>/<page_slug>.html' %}\n{% include '<domain_name>/<page_slug>.html' %}\n\n\n\n## load blog list in templates\n\n`{% load blogs %}\n{% get_blog as bloglist %}\n {% for list in bloglist %}\n <div class=\"card my-4\">\n <h5 class=\"card-header\">{{list.title}} - {{ list.domain }}</h5>\n <div class=\"card-body\">\n <p class=\"card-text\"> {{list.body|slice:\":100\"}} - {{ list.publish_date }}</p>\n <a href=\"/blog/{{list.slug}}\"\n class=\"btn btn-danger\">Read More</a>\n </div>\n </div>\n {% endfor %}`\n\n\n## get single blog objects\n\n`{% load blogs %}\n{% get_blog_object as get_blog %}\n{{ get_blog.title }}\n{{ get_blog.thumbnails }}\n{{ get_blog.publish_date }}\n{{ get_blog.domain }}\n{{ get_blog.id }}\n{{ get_blog.slug }}\n{{ get_blog.body | safe }}\n{{ get_blog.visitor }}\n`\n\n## Count visitor in your blogs\n`{% load blogs %}\n{% update_blog_visitor %}`\n\n# get path slug \n{{ slug }}\n\n## Load page list in templates\n\n`{% load pages %}\n\n{% get_pages as listpage %}\n{% for page in listpage %}\n<div>\n < a href=\"{{ page.slug }}\">{{ page.title }}</a>\n</div>\n{% endfor %}`\n\n\n#### More variable for **page** list\n* page.id\n* page.domain\n* page.title\n* page.slug\n* page.body\n* page.visitor\n* page.publish_date\n\n\n## for single page title\n* getpage.id\n* getpage.domain\n* getpage.title\n* getpage.slug\n* getpage.body\n* getpage.visitor\n* getpage.publish_date\n\n\n## how to access domain system\n\n* gethost.id\n* gethost.user\n* gethost.domain\n* gethost.Description\n* gethost.publish_date\n* gethost.visitor\n\n\n## How to access codesnippet in to bigsansar pages\n\n**add this script in to html head **\n\n{% load static %}\n<script type=\"text/javascript\" src=\"{% static 'ckeditor/ckeditor-init.js' %}\"></script>\n<script type=\"text/javascript\" src=\"{% static 'ckeditor/ckeditor/ckeditor.js' %}\"></script>\n<link rel=\"stylesheet\" href=\"{% static 'ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css' %}\"/>\n<script src=\"{% static 'ckeditor/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js' %}\"></script>\n<script>hljs.initHighlightingOnLoad();</script>\n",
"bugtrack_url": null,
"license": null,
"summary": "Build one in minutes with bigsansar - a visual site building tool!",
"version": "2.6.6",
"project_urls": {
"Bug Tracker": "https://github.com/pokhrelb9/bigsansar/issues",
"Documentations": "https://docs.bigsansar.com/",
"Homepage": "https://github.com/pokhrelb9/bigsansar"
},
"split_keywords": [
"python",
" django host",
" bigsansar",
" django",
" django sites framework",
" django flatpages"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8ba5a79d68be87af559b4c6821113acb45866e6a14691d4fefb88da88707c8f8",
"md5": "28d0f31feaf4e11802370e55169adb2c",
"sha256": "5b642865517adcf318c0a41443dea64b32c8bedeee2d7ec3f5911f762b55854c"
},
"downloads": -1,
"filename": "Bigsansar-2.6.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "28d0f31feaf4e11802370e55169adb2c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 122569,
"upload_time": "2024-05-29T13:40:12",
"upload_time_iso_8601": "2024-05-29T13:40:12.562895Z",
"url": "https://files.pythonhosted.org/packages/8b/a5/a79d68be87af559b4c6821113acb45866e6a14691d4fefb88da88707c8f8/Bigsansar-2.6.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b62b2da4385a4e913e2293a339f82394cd3935996949900ff00a08c5531e94c",
"md5": "2db99985f71c24dacdcf223307c18e68",
"sha256": "9186c81e8da903f7aef810bea14aeea6ae61b22e67897e576c646494cedff9c3"
},
"downloads": -1,
"filename": "bigsansar-2.6.6.tar.gz",
"has_sig": false,
"md5_digest": "2db99985f71c24dacdcf223307c18e68",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 76768,
"upload_time": "2024-05-29T13:40:23",
"upload_time_iso_8601": "2024-05-29T13:40:23.735461Z",
"url": "https://files.pythonhosted.org/packages/3b/62/b2da4385a4e913e2293a339f82394cd3935996949900ff00a08c5531e94c/bigsansar-2.6.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-29 13:40:23",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pokhrelb9",
"github_project": "bigsansar",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "bigsansar"
}