Found 75 repositories(showing 30)
open-mercato
AI‑supportive CRM / ERP / Business application framework — built to power R&D, operations, and growth. It’s modular, extensible, and designed for teams that want strong defaults with room to customize everything. Better than Django, Retool and other alternatives - and Enterprise Grade!
RamezIssac
A Django based framework to create diverse business solutions, equipped with a reporting engine with charts, widgets system , a custom admin site and other goodies
sanusanth
What is Python? Executive Summary Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed. Often, programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the other hand, often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective. What is Python? Python is a popular programming language. It was created by Guido van Rossum, and released in 1991. It is used for: web development (server-side), software development, mathematics, system scripting. What can Python do? Python can be used on a server to create web applications. Python can be used alongside software to create workflows. Python can connect to database systems. It can also read and modify files. Python can be used to handle big data and perform complex mathematics. Python can be used for rapid prototyping, or for production-ready software development. Why Python? Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc). Python has a simple syntax similar to the English language. Python has syntax that allows developers to write programs with fewer lines than some other programming languages. Python runs on an interpreter system, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick. Python can be treated in a procedural way, an object-oriented way or a functional way. Good to know The most recent major version of Python is Python 3, which we shall be using in this tutorial. However, Python 2, although not being updated with anything other than security updates, is still quite popular. In this tutorial Python will be written in a text editor. It is possible to write Python in an Integrated Development Environment, such as Thonny, Pycharm, Netbeans or Eclipse which are particularly useful when managing larger collections of Python files. Python Syntax compared to other programming languages Python was designed for readability, and has some similarities to the English language with influence from mathematics. Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses. Python relies on indentation, using whitespace, to define scope; such as the scope of loops, functions and classes. Other programming languages often use curly-brackets for this purpose. Applications for Python Python is used in many application domains. Here's a sampling. The Python Package Index lists thousands of third party modules for Python. Web and Internet Development Python offers many choices for web development: Frameworks such as Django and Pyramid. Micro-frameworks such as Flask and Bottle. Advanced content management systems such as Plone and django CMS. Python's standard library supports many Internet protocols: HTML and XML JSON E-mail processing. Support for FTP, IMAP, and other Internet protocols. Easy-to-use socket interface. And the Package Index has yet more libraries: Requests, a powerful HTTP client library. Beautiful Soup, an HTML parser that can handle all sorts of oddball HTML. Feedparser for parsing RSS/Atom feeds. Paramiko, implementing the SSH2 protocol. Twisted Python, a framework for asynchronous network programming. Scientific and Numeric Python is widely used in scientific and numeric computing: SciPy is a collection of packages for mathematics, science, and engineering. Pandas is a data analysis and modeling library. IPython is a powerful interactive shell that features easy editing and recording of a work session, and supports visualizations and parallel computing. The Software Carpentry Course teaches basic skills for scientific computing, running bootcamps and providing open-access teaching materials. Education Python is a superb language for teaching programming, both at the introductory level and in more advanced courses. Books such as How to Think Like a Computer Scientist, Python Programming: An Introduction to Computer Science, and Practical Programming. The Education Special Interest Group is a good place to discuss teaching issues. Desktop GUIs The Tk GUI library is included with most binary distributions of Python. Some toolkits that are usable on several platforms are available separately: wxWidgets Kivy, for writing multitouch applications. Qt via pyqt or pyside Platform-specific toolkits are also available: GTK+ Microsoft Foundation Classes through the win32 extensions Software Development Python is often used as a support language for software developers, for build control and management, testing, and in many other ways. SCons for build control. Buildbot and Apache Gump for automated continuous compilation and testing. Roundup or Trac for bug tracking and project management. Business Applications Python is also used to build ERP and e-commerce systems: Odoo is an all-in-one management software that offers a range of business applications that form a complete suite of enterprise management applications. Try ton is a three-tier high-level general purpose application platform.
domambia
This is an ERP System for GS1Kenya. This involves around CRM, HRM, ESS and many modules. Developed using python Django framework
RamezIssac
A Django ERP framework example project
heimdalerp
Heimdal is an opensource ERP solution based on Django REST Framework.
cornelioroyer
ERP Project is an Enterprise Resource Planning Application, developed using Python Django Framework.
jrvidotti
ERP desenvolvido com Python, Django e REST Framework.
surajit003
A complete set of ERP built with Django Rest Framework and Vue
khilkovetsmykhailo
No description available
shivatejaburle
University ERP system was created using the Django framework, facilitating smooth interactions between students and teachers. Its core features include managing attendance, tracking marks, and organizing a timetable.
bca18
An Enterprise Resource Planning (ERP) implementation for hospital management to initiate paperless processes in hospitals by designing a web app using Python, Django web framework and front-end based tools.
AI Animal Tracking (Pig Farm) -- Machine Learning - Deep learning The main goal of this project is to track pig activity in a farm. 1) Daily weight tracking using AI 2) Animal movement tracking with heat map 3) Body weight estimation using Deep learning algorithms 4) Posture(lateral , sternal , standing) of animal tracking for health decision 5) Analytics dashboard for decision making 6) Pig distribution index Main libraries used in this project are pytorch , tensorflow ,keras , numpy ,pandas , opencv 2nd phase of this project is ERP Web Portal that developed on django framework with mongodb. -- Integrate Skov Animal/Pig tracking Service to this project live data tracking skov.com
akshaykathore
# College-ERP A college management system built using Django framework. It is designed for interactions between students and teachers. Features include attendance, marks and time table. ## Installation Python and Django need to be installed ```bash pip install django ``` ## Usage Go to the College-ERP folder and run ```bash python manage.py runserver ``` Then go to the browser and enter the url **http://127.0.0.1:8000/** ## Login The login page is common for students and teachers. The username is their name and password for everyone is 'project123'. Example usernames: student- 'samarth' teacher- 'trisila' You can access the django admin page at **http://127.0.0.1:8000/admin** and login with username 'admin' and the above password. Also a new admin user can be created using ```bash python manage.py createsuperuser ``` ## Users New students and teachers can be added through the admin page. A new user needs to be created for each. The admin page is used to modify all tables such as Students, Teachers, Departments, Courses, Classes etc. **For more details regarding the system and features please refer the reports included.** ## Update (29/11/2020) Added method to reset attendance time range in Django Admin page.  This is present in Django Admin -> Attendance (http://127.0.0.1:8000/admin/info/attendanceclass/). Start Date: Start Date of Attendance period End Date: End Date of Attendance period This will delete all present attendance data and create new attendance objects for the given time range. ## Screenshots ### Teacher Page        ### Student Page      ### Admin Page   
dmatthes
Business Management Framework with integrated ERP solution written for django
fermincasquero
No description available
volodymyr-yaremko
No description available
marly10
Django ERP system based on Django framework.
sergioMendoza
Django REST framework API ERP
hashirharis
ERP Developed in Django 1.5 Framework
ZainHKazmi
Scalable Full-Stack ERP tool based on a Django/React framework
DevAnseSenior
A modern Enterprise Resource Planning (ERP) system built with Django REST Framework
badalaryal11
This is a ERP software made for Aryal Agro Enterprises that sells veterinary and agro products and services. It is made using django framework.
m-ijaz-hussnain
A modular University ERP system built with Django and Django REST Framework to streamline institutional operations. Manages students, faculty, academics, administration, library, and financial workflows efficiently. Offers secure, scalable RESTful APIs for seamless integration with external systems or frontends.
gtkk98
This project is a backend-focused ERP-style system designed to simulate real-world business workflows used in enterprise applications. It is built using Django and Django REST Framework, following clean architecture principles, secure authentication, and proper business logic separation.
CaioHentz
Industrial ERP based in Django framework for python
naolselemon
No description available
RamezIssac
Django ERP framework Landing Site
AbhishekPatil017
Company ERP system using Django Framework
AwaisQamar355
I developed this Django ERP Solutions Using Python Django Framework.