Django based video asset review system [closed] - python

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I've been asked to develop a video review system.
it would need multiple levels of permissions e.g. internal review, client review.
notes(comments) on all the submissions.
revisions of the video assets.
searching of video assets.
publishing these video assets will need to be done from the commandline. because it would be as a final step in a long chain of task being handed to our render-farm.
initially we don't need to video's to play in the browser directly just have a link to the source file and to a generated mov.
Is Django the right thing to use for something like this? is it difficult to create "content" revision control? how is django with commandline input? or is there something better to do this?
any thoughts would be appreciated.
Lars

Django will do this just fine. There are a coulpe revision control apps out there, a quick google search turned up this: Django-Revision as far as command-line usage you can write your own management commands.

Related

Should I create Apps for each Model in my django app? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 10 months ago.
Improve this question
I have just learned python, and am beginning to make a web application using Django / DRF in the back end.
The back end would be similar to a CRUD, or just a CRUD actually, I'm not planning on doing too much processing on requests, but would be queuing jobs for another python script on the server to pick up when needed.
The API I'm building would need to manage a few different entities like Users, Packages, Transactions, Jobs etc, and I plan to manage all of these entities... no ... models... via a rest API.
Do I create an app for each model ? e.g. user_app, package_app, and transaction_app ? or should I create a single app to manage them all?
I'm torn between thinking of Django Apps as actual applications, or Bundles like in PHP/Symfony
There is no obligation to create a new app for every feature that depends on another part of the project logic.
But overall the more you divide into, the easier it will be in the future.
when the project updated and new features added it will be easy to manage it.
Also take a look at some open source projects.

Need help on program that uses facebook/instagram info [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
A client wants to have information about public instagram/facebook profiles (photos/videos published, total likes/comments) from a period of time. How do I go about doing this?
I found out that some of that information is available in the website source code, but how do I use that information? Also is there any sites/services that does that already? The only ones I found only go as back as a few weeks, or only procress future posts.
I thought about automatizing the process with python, is it a good idea?
I'm new in programming, so any help is aprecciated.
As far as I know Instagram is trying to limit as much as possible bot activities, I'm not sure about Facebook though.
You can definitely try to webscrape (using python or other tools) the information you need but if things don't work, it may not be your fault.

Learning path for web development using Python [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
No background in programming. I have been managing a development team (Website and Android) for past 2-3 years and I found it very interesting and got a hang of it, the problem solving and analytical thinking stuff. I have even suggested logics to the sr. developers and from that experience, I strongly believe that I can do programming.
interested in Python based web-development. So how to go about it? How to start? Should I only learn front end tools now or go simultaneously? Expecting a detailed learning path. Pls help and guide!!
Thanks in advance.
Lots of python web development courses available on Udemy. With python you can go with Flask, light weight, or Django, full featured. Just look for and pick one that fits with your level of experience.

Django 1.10.6 - MP3 Upload and player [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
For a job interview I need to code a website consisting of at least 3 pages for a fictional band's website using Django.
My idea is to:
have a front page with blog posts from the band, the most recent one on top.
have an admin page where I can upload the band's songs.
have a page with a list of songs that can be played by clicking on the song.
I know very basic html and css (did some one codecademy).
I did the Django tutorial up until part 6 https://docs.djangoproject.com/en/1.10/intro/tutorial06/
I'm just not very sure how to go about doing this. (Would I use "static files" for the mp3's? How does one set up a blog format page?)
So I'm just hoping for a nudge in the right direction. Any links to tutorials or books or anything that might be useful would be much appreciated.
I believe this tutorial would be helpful for this project https://www.youtube.com/watch?v=qgGIqRFvFFk&list=PL6gx4Cwl9DGBlmzzFcLgDhKTTfNLfX1IK

Airbnb Airflow vs Apache Nifi [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
Are Airflow and Nifi perform the same job on workflows? What are the pro/con for each one?
I need to read some json files, add more custom metadata to it and put it in a Kafka queue to be processed. I was able to do it in Nifi. I am still working on Airflow. I am trying to choose the best workflow engine for my project
Thank you!
For a great overview of Airflow and Apache NiFi checkout this reddit post: https://www.reddit.com/r/bigdata/comments/51mgk6/comparing_airbnb_airflow_and_apache_nifi/
For your specific use-case of ingesting Json files, enriching them and routing them to Kafka I believe NiFi is the right tool for the job. A couple of processors you could potentially use, as well as documentation for each, are below:
GetFile: https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-standard-nar/1.9.2/org.apache.nifi.processors.standard.GetFile/index.html
JoltTransformJSON: https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-standard-nar/1.9.2/org.apache.nifi.processors.standard.JoltTransformJSON/index.html
PublishKafka (or PublishKafka_0_10 depending on your version): https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-kafka-0-9-nar/1.9.2/org.apache.nifi.processors.kafka.pubsub.PublishKafka/index.html

Categories